-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathmain.css
More file actions
76 lines (60 loc) · 1.22 KB
/
main.css
File metadata and controls
76 lines (60 loc) · 1.22 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
65
66
67
68
69
70
71
72
73
74
75
76
:root {
overflow-x: hidden;
}
body {
max-width: 100%; /* stop horizontal scroll */
font-family: 'Montserrat', sans-serif;
font-style: normal;
/* color: white; */
color: white;
background-color: black;
animation: fadeInAnimation linear 3s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
a {
color: inherit;
text-decoration: none;
}
@keyframes fadeInAnimation {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
h1.title {
font-weight: 700;
font-size: 30px;
line-height: 37px;
}
h1.subtitle {
font-weight: 500;
font-size: 17px;
line-height: 21px;
}
h1.category {
font-weight: 700;
font-size: 14px;
}
h1.status {
font-weight: 400;
font-size: 13px;
}
@media only screen and (max-width: 667px) { /* original / 1.1 */
h1.title {
font-size: 27.2727272727px;
line-height: 33.6363636364px;
}
h1.subtitle {
font-size: 15.4545454545px;
line-height: 19.0909090909px;
}
h1.category {
font-size: 12.7272727273px;
}
h1.status {
font-size: 11.8181818182px;
}
}