A mirror of my website's source code.

Important information: Google announced that, from September 2026, Android devices will require ALL apps to be signed by Google, effectively leading to an iOS situation. Value your right to a computer that does what you want; do not tolerate this monopolistic practice! Contact me if you don't understand why it is bad. Click to learn more.

 blog.css

View raw Download
text/plain • 514 B
ASCII text
        
            
1
.toolbar {
2
display: flex;
3
align-items: center;
4
border: 1px solid white;
5
padding: 8px;
6
}
7
8
.toolbar > :any-link {
9
text-decoration: none;
10
font-size: 16px;
11
margin-right: 15px;
12
font-family: monospace;
13
display: inline-flex;
14
}
15
16
.toolbar > strong {
17
display: inline-block;
18
font-family: monospace;
19
font-size: 1rem;
20
padding-right: 14px;
21
margin-right: 14px;
22
border-right: 1px solid white;
23
}
24
25
.time-stamps {
26
margin-top: 5px;
27
border-bottom: 1px solid white;
28
}
29