-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
116 lines (95 loc) · 1.47 KB
/
styles.css
File metadata and controls
116 lines (95 loc) · 1.47 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
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
:root {
--black: #121212;
--white: #ffffff;
--gray: #1b1b1b;
--font-family: "Roboto", sans-serif;
}
html,
body {
margin: 0;
padding: 0;
background-color: var(--black);
color: var(--white);
font-family: var(--font-family);
}
html {
font-size: 10px;
}
body {
font-size: 2.1rem;
}
a {
color: var(--white);
}
.site-header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 3.2rem;
flex-wrap: wrap;
}
.site-logo {
display: block;
}
.site-logo svg {
display: block;
width: auto;
height: 6rem;
}
.site-nav {
display: flex;
margin: 0;
padding: 0;
flex-wrap: wrap;
}
.site-nav li {
display: block;
}
.site-nav a {
display: block;
text-decoration: none;
font-size: 2rem;
padding: 1.3rem 2rem;
color: var(--white);
font-weight: 300;
}
.site-nav a:hover {
opacity: 0.75;
}
.site-nav svg {
display: block;
height: 2.2rem;
width: auto;
}
.site-nav svg path {
fill: var(--white);
}
.main-content {
min-height: calc(100vh - 12.4rem - 11.2rem);
}
.page-section {
padding: 4rem 0;
font-size: 1em;
line-height: 1.65;
}
.page-section.page-section--gray {
background-color: var(--gray);
}
.page-section__inner {
max-width: 70rem;
margin: 0 auto;
padding: 0 3.2rem;
}
.page-section__inner :first-child {
margin-top: 0;
}
.page-section__inner :last-child {
margin-bottom: 0;
}
.site-footer {
text-align: center;
padding: 3.2rem;
}
.site-footer svg {
display: inline-block;
}