blob: b9201a81caa24f52ffccf9c979a6c6335790ec91 (
plain) (
blame)
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
|
/* This is the CSS in use at <https://rss.aleteoryx.me/index.php>. */
:root {
color: white;
background-color: black;
}
body {
white-space: normal;
font-family: monospace;
padding: 0px;
margin: 8px;
}
* {
font-size: 13px !important;
padding: 0px;
margin: 0px;
}
a {
color: #d93345;
font-weight: bold;
}
a:visited {
color: #eb569e;
}
span.source a {
color: black;
background-color: var(--brand-color);
padding-left: 1ch;
padding-right: 1ch;
border-radius: 2ch;
}
span.source.disabled a {
color: var(--brand-color);
background-color: black;
border: 1px solid var(--brand-color);
}
main {
padding-top: 1em;
}
article {
padding-top: 1em;
}
span[data-source="Dreamwidth"] a {
--brand-color: #a42226;
}
span[data-source="Status.Cafe"] a {
--brand-color: azure;
}
span[data-source="Tumblr"] a {
--brand-color: #00b8ff;
}
|