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.

 nonimp.css

View raw Download
text/plain • 739 B
ASCII text
        
            
1
abbr:has(:any-link) {
2
text-decoration: none;
3
}
4
5
kbd {
6
white-space: pre-wrap;
7
font-family: "mononoki", monospace;
8
display: inline-block;
9
font-size: .85rem;
10
}
11
12
:not(samp) kbd:not(:has(kbd)) {
13
background-color: #222728;
14
color: currentColor;
15
border: currentColor 1px solid;
16
border-radius: 10px;
17
padding: 5px;
18
margin: 1px 0;
19
}
20
21
samp kbd {
22
display: block;
23
}
24
25
samp {
26
background-color: #282722;
27
color: #fff;
28
font-family: "mononoki", monospace;
29
padding: 10px;
30
display: block;
31
font-size: .85rem;
32
white-space: pre-wrap;
33
}
34
35
input[type=checkbox],
36
input[type=radio] {
37
width: 1em;
38
height: 1em;
39
}
40
41
input[type=radio] {
42
border-radius: 100%;
43
}
44
45
input:is([type=radio], [type=checkbox]):checked {
46
background-color: #f00;
47
}
48
49