-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
70 lines (60 loc) · 959 Bytes
/
style.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
html, body {
margin: 0;
padding: 0;
}
html {
background-color: #28292e;
color: #eee;
}
h1 {
padding: 5px;
margin: 5px 0 10px;
}
.border-bottom {
border-bottom: #eee 2px solid;
}
h2 {
padding: 5px;
margin: 5px 0 10px;
}
h1.full-page {
font-size: 25vh;
text-align: center;
margin: 0;
padding: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
main.title {
width: 100vw;
height: 100vh
}
main.standard {
width: 100%;
max-width: 1000px;
margin: 0 auto;
font-size: 24pt;
position: relative;
}
main.standard h1 {
position: sticky;
width: 100%;
margin-top: 0;
padding: 0;
top: 0;
left: 0;
right: 0;
z-index: 100;
background-color: #28292e;
}
ul {
margin: 0;
}
section.two-column {
display: -ms-grid;
display: grid;
-ms-grid-columns: 1fr 1fr;
grid-template-columns: 1fr 1fr;
}