-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
129 lines (129 loc) · 2.07 KB
/
style.css
File metadata and controls
129 lines (129 loc) · 2.07 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
117
118
119
120
121
122
123
124
125
126
127
128
129
@import url('https://rsms.me/inter/inter-display.css');
html { font-family: 'InterDisplay', sans-serif; }
@supports (font-variation-settings: normal) {
html { font-family: 'InterDisplay var', sans-serif; }
}
* {
margin: 0;
padding: 0;
list-style: none;
text-decoration: none;
box-sizing: border-box;
letter-spacing: .005em;
font-variant-ligatures: contextual;
-moz-font-feature-settings: 'calt';
-webkit-font-feature-settings: 'calt';
font-feature-settings: 'calt';
}
body {
background: #f5f5f5;
color: #050505;
-webkit-font-smoothing: antialiased;
}
a {
color: inherit;
}
a:hover {
text-decoration: underline;
}
#content {
max-width: 512px;
margin: 0 auto;
padding: 64px 32px;
}
.section {
margin-bottom: 64px;
}
.section:last-of-type {
border-bottom: 0;
padding-bottom: 0;
margin-bottom: 0;
}
.me {
width: 48px;
height: 48px;
border-radius: 24px;
margin-bottom: 12px;
}
h1 {
font-weight: 600;
font-size: 24px;
margin-bottom: 8px;
}
h2 {
font-weight: 450;
font-size: 20px;
line-height: 24px;
}
.link {
font-size: 18px;
line-height: 20px;
margin-right: 12px;
font-weight: 450;
}
.links .link {
margin-right: 0;
display: block;
margin-bottom: 16px;
}
h7 {
font-weight: 200;
font-size: 14px;
line-height: 2px;
margin-bottom: 2px;
}
h6 {
font-weight: 600;
font-size: 24px;
margin-bottom: 24px;
}
h5 {
font-weight: 400;
font-size: 14px;
margin-top: 4px;
margin-bottom: 1px;
text-transform: uppercase;
color: grey;
}
h4 {
font-weight: 450;
font-size: 12px;
line-height: 14px;
text-transform: uppercase;
}
h3 {
font-weight: 600;
font-size: 18px;
line-height: 24px;
margin-bottom: 2px;
}
p {
font-size: 18px;
font-weight: 450;
color: rgba(0, 0, 0, .64);
}
ul li {
margin-bottom: 32px;
}
ul li:last-of-type {
margin-bottom: 0;
}
@media screen and (max-width:400px) {
p {
line-height: 26px;
}
.long {
line-height: 32px;
margin-top: -4px;
margin-bottom: 12px !important;
}
}
h2.logo {
display: inline-block;
}
svg.logo {
display: inline-block;
position: absolute;
margin-top: .07em;
margin-left: .35em;
}