diff options
Diffstat (limited to 'aleteoryx.css')
-rw-r--r-- | aleteoryx.css | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/aleteoryx.css b/aleteoryx.css new file mode 100644 index 0000000..b9201a8 --- /dev/null +++ b/aleteoryx.css @@ -0,0 +1,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; +} |