blob: 8ff6202e2c49b67adb4bc37be6d7329970058168 (
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
|
* {
box-sizing: border-box;
margin: 0;
font-family: sans-serif;
line-height: 1.5;
/* ripping off masto */
--border-color: #313144;
--background: #181821;
--background2: #20202c;
--foreground: #fff;
--foreground2: #c4c4de;
--links: #9494ff;
}
body {
max-width: 80ch;
padding-bottom: 100vh; /* don't jump around when collapsing people near the bottom */
margin: 1em auto;
background: var(--background);
color: var(--foreground);
}
.acct {
margin-top: .75em;
margin-bottom: .75em;
border: 1px solid var(--border-color);
background: var(--background2);
}
.acct__header {
display: flex;
align-items: center;
background: var(--background2);
position: sticky;
top: 0;
border-bottom: 1px solid var(--border-color);
margin-bottom: -1px;
cursor: pointer;
user-select: none;
}
.acct__header .acct__username {
margin-left: 1em;
/* Mimic the default <details> style. */
display: list-item;
list-style: disclosure-closed inside;
}
.acct[open] .acct__header .acct__username {
list-style: disclosure-open inside;
}
.acct__counts {
margin-left: auto;
margin-right: 1ch;
}
.avatar {
width: 3em;
height: 3em;
border: 1px solid var(--border-color);
margin: -1px;
background: var(--background2);
}
.avatar-reblog {
margin-right: 8px;
border-radius: 8px;
}
pre {
white-space: pre-wrap;
}
.toot {
background: var(--background);
border: 1px solid var(--border-color);
/* padding: .2em 1em; */
padding: 0;
overflow: auto;
margin: .75em;
}
.toot__body {
margin: .2em 1em;
}
.toot__spoiler {
cursor: pointer;
display: list-item inline;
list-style: disclosure-closed inside;
margin-left: 1em;
}
.toot__spoiler_open {
list-style: disclosure-open inside;
}
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.flex-grow { flex-grow: 1; }
.flex-basis-0 { flex-basis: 0; }
.flex-column { flex-direction: column; }
.flex-align-center { align-items: center; }
a { color: var(--links); }
.px-1em {
padding-left: 1em;
padding-right: 1em;
}
.pr-1em { padding-right: 1em; }
.py-025em {
padding-top: .25em;
padding-bottom: .25em;
}
.pt-1em { padding-top: 1em; }
.mb-05em { margin-bottom: .5em; }
.border-bottom { border-bottom: 1px solid var(--border-color); }
.border-bottom.border-sunk { margin-bottom: -1px; }
.fg2 { color: var(--foreground2); }
/* This class is already defined by, well, Material Icons.
* I'm just making some small changes. */
.material-icons {
font-size: inherit !important;
line-height: inherit !important;
user-select: none;
vertical-align: bottom;
}
.link-stealth { text-decoration: none; }
.link-stealth:hover { text-decoration: underline; }
hr { border: 1px solid var(--border-color); }
.text-center { text-align: center; }
.text-right { text-align: right; }
.cursor-pointer { cursor: pointer; }
.form-label {
display: block;
font-size: .8rem;
}
.mw-40ch {
max-width: 40ch;
margin: auto;
}
.w-100 { width: 100%; }
img { max-width: 100%; }
|