blob: 83c865bc46b6c42b1278322b908db90e8343764e (
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
|
#slogan {
position: sticky;
z-index: 1;
top: 0;
}
#title-name {
font-family: monospace;
color: var(--bg-color);
background-color: var(--fg-color);
}
#avatar {
float: right;
}
#recent-posts {
margin-block-end: 1.5em;
}
#friends-container {
display: flex;
gap: 1em;
}
.friend {
flex-grow: 0;
text-align: center;
}
.friend a {
font-family: unset;
}
.friend-avatar {
object-fit: cover;
}
.friend-github {
width: 1em;
vertical-align: middle;
margin-right: -0.5em;
}
.friend-tag {
font-size: 0.8em;
}
.citation {
margin: auto;
}
.citation figcaption {
text-align: right;
}
html[data-theme="dark"] {
& .friend-github {
filter: invert(1);
}
}
|