summaryrefslogtreecommitdiffstats
path: root/css/styles.css
diff options
context:
space:
mode:
Diffstat (limited to 'css/styles.css')
-rw-r--r--css/styles.css27
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;
+}