diff options
| author | Raphael <mail@raphaelkabo.com> | 2025-05-28 18:47:59 +0100 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-28 18:47:59 +0100 | 
| commit | 4664b6968fdcaca54268d60f400da02364213f05 (patch) | |
| tree | cfdf17ac54d0201241c9df0a5060bf0012d6de69 /public/css | |
| parent | fd637b405c8784a07dabd54b10fda98ad9f4a4ad (diff) | |
| parent | 403884828a925118c89474c8d98bae04256f1a86 (diff) | |
Merge pull request #211 from lowercasename/clearer-editing-mode
Clearer editing mode
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;  | 
