A mirror of my website's source code.

By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 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