-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css.bak
73 lines (64 loc) · 1.16 KB
/
style.css.bak
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
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1&family=Work+Sans&display=swap');
p {
font-family: 'Work Sans';
color: #FFFFFF;
font-size: 16px;
}
li {
font-family: 'Work Sans';
color: inherit;
font-size: inherit;
}
h1 {
font-family: 'M PLUS 1';
color: #FFFFFF;
font-size: 48px;
line-height: 0.6;
}
h2 {
font-family: 'M PLUS 1';
color: #FFFFFF;
font-size: 24px;
line-height: 0.6;
}
h3 {
font-family: 'M PLUS 1';
color: #FFFFFF;
font-size: 18px;
line-height: 0.6;
}
/* i wonder where this column and row code must've come from... */
.column {
float: left;
width: calc(250px);
padding: 5px;
}
@media screen and (max-width: 800px) {
.column {
width: 100%;
}
}
.row::after {
content: "";
clear: both;
display: table;
}
/* that's right, stackoverflow! copy and paste ftw */
a {
color: #DDEEFF;
text-decoration: none;
text-decoration: italic;
}
body {
background-color: #363941;
padding-top: 120px;
padding-left: calc(25% - 80px);
padding-right: calc(25% - 80px);
image-rendering: pixelated;
}
hr {
height: 3px;
color: #51545d;
background-color: #51545d;
border-width: 0;
}