-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
115 lines (98 loc) · 1.65 KB
/
main.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
html {
background: #111111;
font-family: sans-serif;
font-size: 15px;
}
body {
margin: 0;
}
a {
color: inherit;
}
figure {
margin: 0;
}
#root {
display: flex;
flex-flow: column nowrap;
height: 100%;
overflow-y: auto;
position: fixed;
width: 100%;
}
header {
align-items: center;
align-self: stretch;
background: linear-gradient(#282828 95%, transparent);
color: #dddddd;
display: flex;
flex: 0 0 auto;
flex-flow: column nowrap;
margin-bottom: 2rem;
margin-top: 2rem;
padding: 1rem;
position: sticky;
text-shadow: 0.1rem 0.1rem 0.1rem #444444;
top: 0;
user-select: none;
}
header h1 {
font-size: 1.5rem;
font-weight: bold;
margin-bottom: 0.25rem;
margin-top: 0.25rem;
max-width: 100%;
width: 1000px;
}
header h2 {
font-size: 1.25rem;
font-weight: normal;
margin-bottom: 0.25rem;
margin-top: 0.25rem;
max-width: 100%;
width: 1000px;
}
h1 a {
text-decoration: none;
}
h1 a:hover {
text-decoration: underline;
}
main {
align-self: center;
color: #ffffff;
max-width: 1000px;
padding-left: 0.5rem;
padding-right: 0.5rem;
}
section {
background: #222222;
border: 0.25rem solid #303030;
box-shadow: 0 0.25rem 0.25rem #303030;
margin-bottom: 1rem;
padding: 2%;
}
section h1 {
font-size: 2.5rem;
line-height: 1;
margin: 1rem;
text-shadow: 0.1rem 0.1rem 0.1rem #444444;
}
section p,
section figure,
section ol {
font-family: serif;
font-size: 1.25rem;
font-weight: normal;
line-height: 1.25;
margin: 1rem;
}
section p.published-time,
section figcaption {
font-size: 1rem;
margin-bottom: 2rem;
}
footer {
margin: 1rem;
}
/*# sourceMappingURL=main.css.map*/