This commit is contained in:
2026-09-12 06:01:50 +02:00
parent 2913b03d50
commit 4f6223640f
15 changed files with 991 additions and 159 deletions
+4 -4
View File
@@ -1,5 +1,5 @@
<!doctype html>
<html lang="{{ lang || 'en' }}" theme="@if(typeof theme !== 'undefined'){{ theme }}@endif">
<html lang="{{ lang || 'en' }}" theme="@if(typeof theme !== 'undefined' && theme){{ theme }}@elseif(typeof req !== 'undefined' && req.theme){{ req.theme }}@else{{ default_theme || 'f0ck' }}@endif">
<head>
<title>{{ domain }} — doomscroll</title>
<meta charset="utf-8" />
@@ -321,9 +321,9 @@
.scroll-user-link { pointer-events: all; position: relative; z-index: 11; text-decoration: none; color: inherit; }
.scroll-badges { display: flex; gap: 6px; align-items: center; margin-bottom: 4px; pointer-events: all; position: relative; z-index: 11; }
.scroll-rating { display: inline-flex; align-items: center; padding: 2px 8px; border-radius: 4px; font-size: .67rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.scroll-rating.sfw { background: var(--badge-sfw); color: #fff; }
.scroll-rating.nsfw { background: var(--badge-nsfw); color: #fff; }
.scroll-rating.nsfl { background: var(--badge-nsfl); color: #fff; }
.scroll-rating.sfw { background: var(--badge-sfw, #4caf50); color: #fff; }
.scroll-rating.nsfw { background: var(--badge-nsfw, #e10dc3); color: #fff; }
.scroll-rating.nsfl { background: var(--badge-nsfl, #660000); color: #fff; }
.scroll-rating.untagged { background: transparent; color: rgba(255,255,255,.5); border: 1px dashed rgba(255,255,255,.3); }
.scroll-rating.can-cycle { cursor: pointer; pointer-events: all; position: relative; z-index: 11; }
.scroll-rating.can-cycle:hover { filter: brightness(1.2); }