-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
103 lines (88 loc) · 1.8 KB
/
index.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/* fonts:
font-family: 'Roboto Flex', sans-serif;
*/
body {
background-color: #080001;
font-family: 'Roboto Flex', sans-serif;
font-weight: 400;
}
h1 {
color: aliceblue;
text-align: center;
}
h2 {
text-align: center;
}
button {
background-color: #35A7FF;
color: #fff;
border-style: none;
padding: 15px 30px;
font-family: 'Roboto Flex', sans-serif;
font-size: 16px;
font-weight: 700;
border-radius: 10px;
}
.guess-container {
display: flex;
flex-direction: row;
justify-content: space-between;
color: aliceblue;
}
.btn-container {
display: flex;
justify-content: space-evenly;
margin-top: 0px;
}
.computer-guess {
display: flex;
justify-content: center;
align-items: center;
width: 300px;
height: 300px;
background-color: #080001;
color: white;
font-family: 'Roboto Flex', sans-serif;
font-weight: 700;
font-size: 72px;
padding: 0;
}
.player-guess {
display: flex;
justify-content: center;
align-items: center;
width: 300px;
height: 300px;
background-color: #080001;
color: white;
font-family: 'Roboto Flex', sans-serif;
font-weight: 700;
font-size: 72px;
padding: 0;
}
.playerScore {
display: flex;
justify-content: center;
align-items: center;
width: 100px;
height: 100px;
background-color: #080001;
color: #FF5964;
font-family: 'Roboto Flex', sans-serif;
font-weight: 700;
font-size: 48px;
border-radius: 50%;
}
.computerScore {
display: flex;
justify-content: center;
align-items: center;
width: 100px;
height: 100px;
background-color: #080001;
color: #FF5964;
font-family: 'Roboto Flex', sans-serif;
font-weight: 700;
font-size: 48px;
border-radius: 50%;
}