aboutsummaryrefslogtreecommitdiff
path: root/static/styles/risotto/logo.css
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-01-28 02:51:24 -0800
committerFuwn <[email protected]>2024-01-28 02:51:24 -0800
commit82d527113c0960b6ec3f8f89892e360b8356e866 (patch)
tree78500c8fee61498b701c4cf7c143ba0a853c767e /static/styles/risotto/logo.css
parentfix(manga): duplicate summary on refresh (diff)
downloaddue.moe-82d527113c0960b6ec3f8f89892e360b8356e866.tar.xz
due.moe-82d527113c0960b6ec3f8f89892e360b8356e866.zip
feat(html): static css
Diffstat (limited to 'static/styles/risotto/logo.css')
-rw-r--r--static/styles/risotto/logo.css38
1 files changed, 38 insertions, 0 deletions
diff --git a/static/styles/risotto/logo.css b/static/styles/risotto/logo.css
new file mode 100644
index 00000000..82dc568e
--- /dev/null
+++ b/static/styles/risotto/logo.css
@@ -0,0 +1,38 @@
+.page__logo {
+ padding: 0;
+ margin: 0;
+ font-weight: inherit;
+ color: var(--bg);
+}
+
+.page__logo:before {
+ content: none;
+}
+
+.page__logo-inner {
+ display: block;
+ background: var(--logo);
+ opacity: 0.9;
+ padding: 0.25rem;
+}
+
+a.page__logo-inner:link,
+a.page__logo-inner:visited {
+ color: inherit;
+ text-decoration: inherit;
+}
+
+a.page__logo-inner:hover,
+a.page__logo-inner:active {
+ opacity: 1;
+}
+
+.page__logo-inner:before {
+ content: '[';
+ color: var(--bg);
+}
+
+.page__logo-inner:after {
+ content: '] $';
+ color: var(--bg);
+}