-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
72 lines (61 loc) · 1017 Bytes
/
main.css
File metadata and controls
72 lines (61 loc) · 1017 Bytes
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
body {
margin: 0;
color: #c2cedd;
background: #272D2D;
font-family: 'Avenir', sans-serif;
font-size: 16px;
}
a {
color: #ffad33;
font-weight: 500;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
ul {
list-style-type: none;
}
ul {
padding-left: 15px;
}
* {
box-sizing: border-box;
-webkit-box-sizing: border-box;
}
/* small window, probably a phone */
@media only screen and (max-width: 820px) {
div.content {
margin: 0 auto;
padding: 50px 5%;
width: 100%;
}
}
/* regular-sized window */
@media only screen and (min-width: 821px) {
div.content {
width: 780px;
padding: 20px;
padding-top: 120px;
margin: 0 auto;
}
}
h1 {
font-family: 'Franklin Gothic', serif;
color: #EDF5FC;
font-size: 32.4px;
/* font-weight: 700; */
margin: 0;
margin-bottom: 16px;
}
h3 {
color: #ffad33;
/* font-size: 25.2px; */
font-weight: 500;
margin: 0;
margin-bottom: 24px;
}
div.details {
line-height: 1.4;
font-weight: 400;
}