-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgame.css
119 lines (100 loc) · 1.41 KB
/
game.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
/* page elements */
html, body{
width: 100%;
height: 100%;
margin: 0;
}
body {
display: table;
background-color: #ACE;
}
progress {
-webkit-appearance: none;
width: 300px;
height: 20px;
border: #333 1px solid;
border-radius: 5px;
}
#gameWrap {
width: 100%;
height: 100%;
}
#uiWrap {
display: none;
position: absolute;
top: 0;
left: 0;
width: 100%;
}
#tries {
float: left;
margin-top: 10px;
margin-left: 10px;
}
.tryIcon {
border: 0;
margin-bottom: 10px;
}
#score {
float: right;
margin-top: 10px;
margin-right: 10px;
font-family: roboto, calibri, sans-serif;
font-size: 30px;
line-height: 1.5em;
}
#popupWrap {
position: fixed;
top: 0;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%
}
#popup {
width: 400px;
padding: 20px;
text-align: center;
background-color: #FFF;
border: 5px solid #000;
border-radius: 15px;
transition: opacity 0.2s linear;
}
.popupTitle {
font-family: sans-serif;
font-size: 30px;
}
.popupText {
font-family: sans-serif;
font-size: 18px;
line-height: 1.5em;
}
@media all and (max-width: 600px) {
progress {
width: 200px;
}
#tries {
margin-top: 5px;
margin-left: 5px;
}
.tryIcon {
width: 40px;
height: 40px;
}
#score {
margin-top: 5px;
margin-right: 5px;
font-size: 20px;
}
#popup {
width: 240px;
padding: 16px;
}
.popupTitle {
font-size: 24px;
}
.popupText {
font-size: 14px;
}
}