blob: c1aae118141231c03a6f255d123ba8d106c61b94 (
plain)
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
|
body {
min-height: 100vh;
}
body::-webkit-scrollbar {
display: none;;
}
main {
height: inherit;
display: flex;
flex-direction: column;
justify-content: stretch;
}
.fixed {
position: fixed;
top: 0;
}
#actions {
width: 100%;
padding: .5rem;
}
#actions button:first-of-type {
margin-right: 1rem;
}
#actions button {
background: transparent;
border: none;
width: fit-content;
padding: 0;
}
#actions button:hover {
color:aquamarine !important;
}
.aligned.right {
justify-content: flex-end;
}
.flex {
display: flex;
}
.flex.row {
flex-direction: row;
}
.space-between {
justify-content: space-between;
}
.align-end {
align-items: flex-end;
}
.centered {
align-items: center;
justify-content: center;
}
.flex.col {
flex-direction: column;
}
.footer-info {
width: 100%;
justify-content: center;
}
.flex-end {
justify-content: flex-end;
}
.flex.footer-info {
gap: 1rem;
}
.footer-info .flex.col {
min-width: 250px;
}
footer {
position:relative;
}
.post {
margin-bottom: 1em;
}
.wordmark {
font-size: 2em;
text-transform: uppercase;
font-weight: 600;
}
.icon span {
display: inline-block;
width: fit-content;
height: fit-content;
}
.icon svg {
width: 1em;
height: 1em;
margin-right: .4em;
}
.hide {
display: none;
}
.icon:hover {
color: inherit !important;
}
html[data-theme="dark"] .icon,
html[data-theme="dark"] #actions button {
color: white;
}
html[data-theme="light"] .icon,
html[data-theme="light"] #actions button {
color: #24333e;
}
|