-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (55 loc) · 1.23 KB
/
style.css
File metadata and controls
64 lines (55 loc) · 1.23 KB
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
@font-face {
font-family: 'ostrich_sansmedium';
src: url('ostrich-regular-webfont.eot');
src: url('ostrich-regular-webfont.eot?#iefix') format('embedded-opentype'),
url('ostrich-regular-webfont.woff2') format('woff2'),
url('ostrich-regular-webfont.woff') format('woff'),
url('ostrich-regular-webfont.ttf') format('truetype'),
url('ostrich-regular-webfont.svg#ostrich_sansmedium') format('svg');
font-weight: normal;
font-style: normal;
}
html {
height: 100%;
background-color: #ECD30F;
-webkit-text-size-adjust: 100%;
}
body {
font-family: 'ostrich_sansmedium', Arial, sans-serif;
font-size: 90px;
margin: 0.5em auto;
max-width: 240px;
}
p {
margin: 0;
padding: 0;
color: #1F2CA3;
}
p::selection,
p::-moz-selection{
background: #ffec0e;
}
@media all and (min-width: 320px) {
body {
font-size: 110px;
max-width: 280px;
}
}
@media all and (min-width: 375px) {
body {
font-size: 150px;
max-width: 380px;
}
}
@media all and (min-width: 414px) {
body {
font-size: 200px;
max-width: 505px;
}
}
@media all and (min-width: 676px) {
body {
font-size: 250px;
max-width: 630px;
}
}