-
Notifications
You must be signed in to change notification settings - Fork 3
/
style.css
118 lines (103 loc) · 1.75 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
body {
color: #675647;
padding:20px;
margin:0;
overflow:hidden;
font-family: Helvetica, Arial, 'sans-serif';
background-color: #BDBD9F;
}
.levels {
margin:10px;
display: table;
border-spacing: 2px;
}
.level {
margin:5px;
min-height: 93px;
max-height: 93px;
width: 85px;
background:url(sprites.png) no-repeat;
display: table-cell;
}
.level.done {
background-position:0 -93px;
}
.overlay {
display:none;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 1000;
background-color:#eee;
opacity: 0.7;
}
.overlay.active {
display: block;
}
.overlay div {
margin:20% auto;
width: 40%;
min-width: 300px;
max-width: 500px;
text-align: center;
}
.overlay h1 {
font-size: 3.5em;
}
.overlay button {
font-size: 2.5em;
}
#instructions {
display: table-cell;
margin:0;
padding:0 20px;
height: 93px;
vertical-align: middle;
font-size: 1.8em;
}
#instructions.game-started {
visibility: hidden;
}
#scoreboard {
position: absolute;
top: -300px;
right:10px;
font-size: 4em;
display: table;
border-spacing: 5px 0;
}
#scoreboard.slide-in {
top: 0;
transition: 200ms;
}
#scoreboard div {
background-color: #675647;
color: #EEC05E;
padding:10px 10px 10px;
margin-bottom:5px;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
text-align: center;
min-width: 170px;
display: table-cell;
}
#score-container:before {
content: "Score";
color: #BDBD9F;
display: block;
font-size: 0.5em;
margin-bottom:5px;
text-transform: uppercase;
letter-spacing: 0.05em;
}
#best-container:before {
content: "Best";
color: #BDBD9F;
display: block;
font-size: 0.5em;
margin-bottom:5px;
text-transform: uppercase;
letter-spacing: 0.05em;
}