forked from epidemian/snake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
182 lines (152 loc) · 2.77 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
/* Reset */
html, body, h1, p {
margin: 0;
padding: 0;
}
* {
box-sizing: border-box;
}
html, body {
height: 100%;
}
html {
font-family: Arial, sans-serif;
color: #222;
line-height: 1.5;
}
body {
display: flex;
flex-direction: column;
padding: 5px 10px;
}
a {
color: #3473ee;
}
.controls {
display: flex;
flex-direction: column;
padding: 10px 0;
align-self: center;
width: 80vmin;
height: 60vmin;
}
.controls .row {
flex: 1;
display: flex;
}
.controls button {
flex: 1;
color: #888;
font-size: 10vmin;
background: none;
border: 2px solid;
margin: 2px;
border-radius: 7px;
cursor: pointer;
}
.controls .dummy {
visibility: hidden;
}
#max-score-grid {
background: #8883;
}
#share {
display: inline-block;
}
footer {
margin-top: auto;
font-size: 0.9rem;
}
.invisible {
display: none !important;
}
.touch .no-touch-only,
.no-touch .touch-only {
display: none;
}
/* Expandable "component". Uses the checkbox hack to expand and collapse their
content without JS */
.expandable {
overflow: hidden;
}
.expandable-checkbox {
display: none;
}
.expandable-content,
.expand-toggle,
.collapse-toggle {
transition: all .4s;
}
.expandable-content {
position: relative;
display: inline-block;
}
.expand-toggle {
position: absolute;
right: 0;
top: 0;
transform: translateX(100%);
}
.expand-toggle,
.collapse-toggle {
font-weight: bold;
cursor: pointer;
}
.help-toggle {
color: #0bc3ff;;
}
.high-score-toggle {
color: #ff8c0b;
}
.collapse-toggle {
color: #aaa;
opacity: 0;
}
.expandable-checkbox:not(:checked) ~ .expandable-content {
transform: translateX(-100%);
}
.expandable-checkbox:checked ~ .expandable-content .collapse-toggle {
opacity: 1;
}
.expandable-checkbox:checked ~ .expandable-content .expand-toggle {
opacity: 0;
}
@media (max-width: 30em) {
html {
font-size: 1.3em;
}
}
@media (prefers-color-scheme: dark) {
html {
background: #222;
color: #eee;
}
}
/* Icon font styles copied from Fontello. */
@font-face {
font-family: 'icons';
src: url('icons.woff2?40046441') format('woff2');
font-weight: normal;
font-style: normal;
}
[class^="icon-"]:before, [class*=" icon-"]:before {
font-family: "icons";
font-style: normal;
font-weight: normal;
speak: none;
display: inline-block;
text-decoration: inherit;
width: 1em;
margin-right: .2em;
text-align: center;
/* For safety - reset parent styles, that can break glyph codes*/
font-variant: normal;
text-transform: none;
/* Animation center compensation - margins should be symmetric */
/* remove if not needed */
margin-left: .2em;
/* Font smoothing. That was taken from TWBS */
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-share:before { content: '\e811'; }