-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
81 lines (68 loc) · 1.12 KB
/
style.css
File metadata and controls
81 lines (68 loc) · 1.12 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
@media (prefers-color-scheme: dark) {
body {
color: #b0b0b0;
background-color: #101010;
}
}
@media (prefers-color-scheme: light) {
code {
background-color: #f0f0f0;
}
}
html {
text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
@font-face {
font-display: swap;
font-family: 'Libre Baskerville';
font-style: normal;
src: url('file:///Users/rodion/src/site/font/libre-baskerville-v16-latin-regular.woff2') format('woff2');
}
body {
text-decoration: none;
font-family: 'Libre Baskerville', Georgia, serif;
max-width: 1000px;
margin: 3em auto;
padding: 1em 0;
}
a {
color: #5871a2;
}
section {
display: flex;
}
main {
padding: 1em;
}
#name {
font-size: 2em;
font-weight: 800;
}
#bio {
color: darkgrey;
}
#links {
display: flex;
gap: 1em;
margin-top: 1em;
margin-bottom: 1em;
font-size: 1.2em;
}
#posts {
display: flex;
flex-direction: column;
gap: 1em;
margin-top: 2em;
margin-bottom: 1em;
}
#maintext {
margin-top: 3em;
margin-bottom: 3em;
}
.blogentry {
display: flex;
/* justify-content: space-between; */
gap: 1em;
/* align-items: flex-end; */
}