-
Notifications
You must be signed in to change notification settings - Fork 57
/
index.css
200 lines (174 loc) · 3.11 KB
/
index.css
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
body {
font-family: "DM Sans", "Arial", sans-serif;
margin: max(10vw, 20px);
}
.content_image{
width: 50%;
}
@media(max-width: 1100px){
.container{
padding-top: 1em;
}
.content_image{
width: 70%;
}
}
@media(max-width: 515px){
.container{
padding-top: 6em;
}
.content_image{
width: 70%;
}
}
html {
scroll-behavior: smooth;
}
header {
width: calc(min(80vw, calc(100% - 40px)) + 8px);
display: flex;
align-items: center;
justify-content: space-between;
flex-flow: row wrap;
padding: 20px 4px;
position: fixed;
top: 0;
left: calc(max(10vw, 20px) - 4px);
background: #ffffffff;
box-sizing: border-box;
}
#separator {
width: 100%;
margin-bottom: 10rem;
}
@media (max-width: 400px) {
#separator {
margin-bottom: 15rem;
}
}
@media (max-width: 270px) {
#separator {
margin-bottom: 17rem;
}
}
header div:nth-child(1) {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
header img {
height: 40px;
}
header span {
font-size: 20px;
text-transform: uppercase;
font-family: "DM Mono", monospace;
}
header a {
color: #000000;
margin: 10px;
}
p {
line-height: 1.5;
}
a {
color: #0d78d0;
}
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
margin-bottom: 0;
}
blockquote footer,
blockquote small,
blockquote .small {
display: block;
font-size: 80%;
line-height: 1.42857143;
color: #999;
}
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
content: "— ";
}
.blockquote-reverse,
blockquote.pull-right {
padding-right: 15px;
padding-left: 0;
border-right: 5px solid #eee;
border-left: 0;
text-align: right;
}
.blockquote-reverse footer:before,
blockquote.pull-right footer:before,
.blockquote-reverse small:before,
blockquote.pull-right small:before,
.blockquote-reverse .small:before,
blockquote.pull-right .small:before {
content: "";
}
.blockquote-reverse footer:after,
blockquote.pull-right footer:after,
.blockquote-reverse small:after,
blockquote.pull-right small:after,
.blockquote-reverse .small:after,
blockquote.pull-right .small:after {
content: " —";
}
.highlight-red {
color: #ee0000;
}
#footer {
width: 100%;
background: #fff;
padding: 1.25em 0.7em 3em;
overflow: hidden;
}
#footer-info .logo {
float: left;
}
#footer-info .logo img {
width: 80px;
}
#footer-info #status {
clear: left;
margin: 1em 0;
line-height: 1.2em;
}
#footer-info #status > span {
display: block;
color: black;
font-weight: 300;
margin: 0;
font-size: 0.95em;
/* font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif; */
}
#footer-links {
margin: 20px 0;
padding-left: 0;
}
#footer-links li {
display: inline-block;
width: 100%;
}
#footer-links li a {
font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
color: #5776ad;
font-weight: bold;
font-size: 0.9em;
}
@media (min-width: 1101px) {
#footer #footer-info #status {
clear: none;
}
#footer #footer-links {
float: right;
}
#footer #footer-links li {
padding-left: 30px;
display: inline-block;
width: auto;
}
}