blob: a8db46bf4479868f0758b7c1e0781c299d71d526 (
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
|
.timeline-post-header {
display: flex;
align-items: center;
}
.timeline-post-author-avatar {
border-radius: 50%;
width: 2em;
height: 2em;
}
.timeline-post-author-nickname {
margin: 0 1em;
}
.timeline-post-edit-button {
float: right;
}
.timeline-post-options-mask {
position: absolute;
inset: 0;
background-color: hsla(0, 0%, 100%, 0.9);
display: flex;
align-items: center;
justify-content: space-around;
}
@media (prefers-color-scheme: dark) {
.timeline-post-options-mask {
background-color: hsla(0, 0%, 0%, 0.8);
}
}
.timeline-post-content {
margin-top: 0.5em;
}
|