From d4aa1cf1a9a4051a8b962f1321e901a8d6a6589b Mon Sep 17 00:00:00 2001 From: Syndamia Date: Sun, 19 Jan 2025 21:35:01 +0200 Subject: feat(views/archive): Better ui for archives But not final --- views/styles.css | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) (limited to 'views/styles.css') diff --git a/views/styles.css b/views/styles.css index 776f97b..d4f61cc 100644 --- a/views/styles.css +++ b/views/styles.css @@ -103,6 +103,12 @@ input[type=submit]:hover { flex: 1; } +iframe { + border: 2px solid var(--foreground-color); + height: 20em; + pointer-events: none; +} + /* Main containers */ header, article { max-width: 60rem; @@ -203,3 +209,31 @@ hr.new-section { .card-blank-afterspace { height: var(--card-expand-with); } + +.item { + border: 2px solid teal; + display: flex; + flex-direction: row; + padding: 0.5em; + border-radius: 0.25em; + font-size: 1.08em; + margin-bottom: 1em; +} + +.item > :first-child { + flex: 1; +} + +.item img { + vertical-align: middle; +} + +.item .favicon { + height: 2em; +} + +.item .details { + font-size: 0.9em; + color: gray; + margin: 0.25em; +} -- cgit v1.2.3