-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
128 lines (118 loc) · 1.91 KB
/
main.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
html, body, #container {
width:100%;
height:100%;
margin:0;
padding:0;
}
* {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
/* Fallbacks in case browser doesn't support vw/vh units
These are the same measurements used on iPhone */
h1 {
font-size:32px;
}
#moreinfo {
font-size:25px;
}
#answer {
font-size:96px;
}
#answer.y {
font-size:160px;
}
#answer.n {
font-size:256px;
}
body {
font-family: Oswald, sans-serif;
background-color:#0AB0F7;
color:white;
}
#container {
display: table;
}
#info {
display: table-row;
vertical-align: bottom;
height: 1px;
}
h1 {
font-size:5.5vw;
text-align:center;
line-height:1em;
margin-top:0;
margin-bottom:0;
font-weight:400;
}
#answer {
margin:0;
font-size:30vh;
text-align:center;
font-weight:300;
line-height:1em;
text-transform:uppercase;
}
#answer.y, #answer.n {
font-size:50vh;
font-weight:700;
}
#answer.y {
color:green;
font-size:50vh;
font-weight:700;
}
#answer.n {
color:red;
}
#moreinfo {
margin:0;
font-size:8vh;
text-align:center;
}
@media (max-width:700px), (orientation:portrait) {
h1 {
font-size:10vw;
}
#moreinfo {
font-size:8vw;
}
#answer {
font-size:30vw;
}
#answer.y {
font-size:50vw;
}
#answer.n {
font-size:80vw;
}
#moreinfo {
margin-top:10vw;
}
}
/* Fallback since vw/vh is bugged on iPhone */
@media (max-width: 321px) and (min-width:319px){
h1 {
font-size:32px;
}
#moreinfo {
font-size:25px;
}
#answer {
font-size:96px;
}
#answer.y {
font-size:160px;
}
#answer.n {
font-size:256px;
}
#info {
margin-top:32px;
}
}