diff options
author | rstular <rok@stular.eu> | 2020-05-14 13:31:33 +0200 |
---|---|---|
committer | rstular <rok@stular.eu> | 2020-05-14 18:26:52 +0200 |
commit | b86ef6379a2e4b4df90dabefe2b48054035da800 (patch) | |
tree | d7a51a5847b78909f1d43acd1a1f5c5c14d4c93f /css | |
parent | Revert debugging step (diff) | |
download | beziapp-b86ef6379a2e4b4df90dabefe2b48054035da800.tar beziapp-b86ef6379a2e4b4df90dabefe2b48054035da800.tar.gz beziapp-b86ef6379a2e4b4df90dabefe2b48054035da800.tar.bz2 beziapp-b86ef6379a2e4b4df90dabefe2b48054035da800.tar.lz beziapp-b86ef6379a2e4b4df90dabefe2b48054035da800.tar.xz beziapp-b86ef6379a2e4b4df90dabefe2b48054035da800.tar.zst beziapp-b86ef6379a2e4b4df90dabefe2b48054035da800.zip |
Diffstat (limited to 'css')
-rw-r--r-- | css/styles.css | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/css/styles.css b/css/styles.css index a06c906..c728463 100644 --- a/css/styles.css +++ b/css/styles.css @@ -5,6 +5,7 @@ --color-primary-light: rgba(230, 250, 231, 1); --color-invalid: rgba(192, 0, 0, 1); --background-color: rgba(255, 255, 255, 1); + --background-accent: rgba(0, 156, 101, 0.2); } body { @@ -162,3 +163,29 @@ a.collection-item { text-align: center; z-index: 60; } + +/* Tabs */ +.tab a { + color: var(--color-secondary) !important; +} + +.tab a:hover { + color: var(--color-primary) !important; +} + +.tab a.active { + color: var(--color-primary) !important; +} + +.tab a:focus.active { + background-color: var(--background-accent) !important; +} + +.tabs .indicator { + background-color: var(--color-primary) !important; +} + +/* Floating action button */ +.fab-new-message { + background-color: var(--color-secondary) !important; +} |