summaryrefslogtreecommitdiff
path: root/css/nopiracy.css
blob: a758d7ec9316815cc3daa617dd3a7eb3df617125 (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
:root {
    --conions: #9c47c7;
    --ci2p: #ffc434;
    --cwarning: rgb(255, 0, 0);
}

li a.tor::before, li a.i2p::before, li a.bad::before {
    content: "[";
}

li a.tor::after, li a.i2p::after, li a.bad::after {
    content: "]"
}

a.tor {
    color: var(--conions);
}

a.i2p {
    color: var(--ci2p);
}

a.bad {
    color: var(--cwarning);
}

blockquote {
    padding: 1vw;
}

li {
    list-style: "- ";
}

#content ul {
    padding-top: 1vw;
    padding-bottom: 1vw;
    padding-left: 2vw;
    padding-right: 2vw;
}

/* This isn't the worst, but it doesn't look that good
p {
    text-indent: 4ch each-line;
}
*/