diff options
author | Mario <mario@mariovavti.com> | 2022-10-31 14:01:00 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-10-31 14:01:00 +0000 |
commit | 3dc552769055d7c6cefd8f4779fff1c9f123bf16 (patch) | |
tree | b5738dc2585275d0c8050844ca1a7d323d15e370 /view/theme/redbasic/css | |
parent | 9554f535199b5fb3a23dd40f9921a15339da3bd7 (diff) | |
download | volse-hubzilla-3dc552769055d7c6cefd8f4779fff1c9f123bf16.tar.gz volse-hubzilla-3dc552769055d7c6cefd8f4779fff1c9f123bf16.tar.bz2 volse-hubzilla-3dc552769055d7c6cefd8f4779fff1c9f123bf16.zip |
css variables
Diffstat (limited to 'view/theme/redbasic/css')
-rw-r--r-- | view/theme/redbasic/css/style.css | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index d408b5d92..20309b709 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -12,6 +12,7 @@ --bs-border-radius: $radius; --bs-link-color: $link_colour; --bs-link-hover-color: $link_hover_colour; + --bs-body-bg: $bgcolour; } .nav-tabs { @@ -39,7 +40,7 @@ html { body { font-size: 0.9rem; - background-color: $bgcolour; + background-color: var(--bs-body-bg); background-image: url('$background_image'); background-attachment: fixed; background-size: cover; @@ -1263,7 +1264,7 @@ img.mail-conv-sender-photo { } .generic-content-wrapper-styled { - background-color: $bgcolour; + background-color: var(--bs-body-bg); padding: 10px; border-radius: var(--bs-border-radius); } |