aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/styles
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/styles')
-rw-r--r--frontend/src/styles/helper.css17
-rw-r--r--frontend/src/styles/theme.css17
2 files changed, 32 insertions, 2 deletions
diff --git a/frontend/src/styles/helper.css b/frontend/src/styles/helper.css
index bcd02646..58f00c20 100644
--- a/frontend/src/styles/helper.css
+++ b/frontend/src/styles/helper.css
@@ -24,4 +24,21 @@
margin-top: 50%;
margin-left: auto;
transform: translateX(-50%);
+}
+
+.footer-center {
+ position: relative;
+ height: 1rem;
+}
+
+.footer-center>* {
+ position: fixed;
+ bottom: 8%;
+ left: 50%;
+ transform: translateX(-50%);
+}
+
+.row-height {
+ white-space: nowrap;
+ height: 1rem;
} \ No newline at end of file
diff --git a/frontend/src/styles/theme.css b/frontend/src/styles/theme.css
index 3ef44e54..820f5a5a 100644
--- a/frontend/src/styles/theme.css
+++ b/frontend/src/styles/theme.css
@@ -1,7 +1,10 @@
:root {
--ns-primary: #00a8e8;
--ns-bg: #003459;
- --ns-bg-transparent: rgba(0, 152, 189, 0.3)
+ --ns-bg-light-30: rgba(0, 152, 189, 0.3);
+ --ns-bg-dark-100: rgba(0, 65, 101, 1.0);
+ --ns-bg-dark-50: rgba(0, 65, 101, 0.5);
+ --offwhite: #ebe6e6;
}
body {
@@ -10,9 +13,19 @@ body {
}
.bg-light {
- background-color: var(--ns-bg-transparent) !important;
+ background-color: var(--ns-bg-light-30) !important;
+}
+
+.ns-bg-dark-50 {}
+
+.ns-bg-dark-100 {
+ background-color: var(--ns-bg-dark-100) !important;
}
a {
color: var(--ns-primary) !important;
+}
+
+.text-offwhite {
+ color: var(--offwhite);
} \ No newline at end of file