diff options
author | Raphael Kabo <mail@raphaelkabo.com> | 2025-04-28 09:02:43 +0100 |
---|---|---|
committer | Raphael Kabo <mail@raphaelkabo.com> | 2025-04-28 09:02:43 +0100 |
commit | 08fa2f616c90e59066d0308097c65c424b5b4a88 (patch) | |
tree | 129135e3019888a5fd915fba7f4310de5ed0bac7 /public/css | |
parent | ebe7a6182fe84ac0ed49b75e40e60b54d414fe36 (diff) |
Make editing mode and links clearer
Diffstat (limited to 'public/css')
-rwxr-xr-x | public/css/style.css | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/public/css/style.css b/public/css/style.css index 8bc0caa..3060098 100755 --- a/public/css/style.css +++ b/public/css/style.css @@ -53,6 +53,7 @@ h3 { --color-grey-30: hsl(0, 0%, 30%); --color-grey-20: hsl(0, 0%, 20%); --color--black: hsl(0, 0%, 10%); + --color-orange: #ff8c26; --transition: 0.15s ease-in; } @@ -213,6 +214,10 @@ h3 { line-height: 2rem; } +.fediverse-icon img { + width: 70%; +} + /* LAYOUT */ html { @@ -250,7 +255,7 @@ body > #container { padding: 1rem; } -#container > #content > main.event > *:not(.event-header-image) { +#container > #content > main.event > *:not(.event-header-image,.event__editing-banner) { margin: 0 1rem; } @@ -369,6 +374,19 @@ ul#sidebar__nav a { /* EVENTS */ +#container > section#content.content--editing { + border: 6px solid var(--color-orange); +} + +.event__editing-banner { + background-color: var(--color-orange); + color: #fff; + padding: 0.5rem; + text-align: center; + font-weight: bold; + margin: 0; +} + #genericEventImageContainer { height: 150px; border-radius: 5px; |