-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathindex.css
66 lines (60 loc) · 1.08 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
html, body {
font-size: 16px;
}
html {
background-color:#9F1D35;
height: 100%;
}
@media screen and (max-width: 850px) {
html, body {
font-size: 10px;
}
}
@media screen and (max-width: 600px) {
html, body {
font-size: 7px;
}
}
@media screen and (max-width: 600px) {
html, body {
font-size: 5px;
}
}
body {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
position: absolute;
display: table;
top: 0;
bottom: 0;
right: 0;
left: 0;
text-align: center;
margin: 0;
padding: 0;
border: 0;
width: 100%;
height: 100%;
}
#suggestion {
text-decoration: none;
cursor: default;
-webkit-touch-callout: none;
-webkit-tap-highlight-color: rgba(0,0,0,0);
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
margin-bottom: 0.25em;
display: table-cell;
vertical-align: middle;
width: 100%;
font-family: 'Bitter', serif;
font-size: 7.5rem;
color: white;
}