-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
95 lines (80 loc) · 1.18 KB
/
style.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
body {
display: none;
position: relative;
background-color: #f4f3f5;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
text-align: center;
}
h1 {
white-space: nowrap;
font-size: 35px;
font-weight: normal;
}
h3 {
color: #4775d1;
}
#circle {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 550;
height: 550px;
border-radius: 275px;
}
#game {
color: white;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
#hint-popup {
display: none;
color: #666666;
background: #f1f0f2;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 380px;
height: 355px;
border-style: solid;
border-color: #dad5dd;
border-width: 1px;
border-radius: 5px;
}
input {
text-align: center;
font-size: 25px;
width: 275px;
height: 40px;
color: #389482;
}
button {
color: #595959;
}
.begin {
background-color: #7ecebe;
}
.won {
background-color: #4bb234;
}
.lost {
background-color: #535353;
}
.HOT {
background-color: #d22d45;
}
.WARM {
background-color: #f38d3f;
}
.COOL {
background-color: #65b6da;
}
.COLD {
background-color: #3971ac;
}
.screen {
opacity: 0.3;
}