summaryrefslogtreecommitdiff
path: root/css/navigationBar.scss
diff options
context:
space:
mode:
Diffstat (limited to 'css/navigationBar.scss')
-rw-r--r--css/navigationBar.scss42
1 files changed, 42 insertions, 0 deletions
diff --git a/css/navigationBar.scss b/css/navigationBar.scss
new file mode 100644
index 0000000..521d694
--- /dev/null
+++ b/css/navigationBar.scss
@@ -0,0 +1,42 @@
+div.navigationBar {
+ background-color:none;
+ border-radius: 1rem;
+ font-family: $sansSerifFont;
+ font-weight: bold;
+ padding: 1rem 2rem;
+ text-align: center;
+ width: 100%;
+
+ img.themeToggler {
+ background-color:var(--backgroundColour);
+ border-color: var(--backgroundColour);
+ border-radius: calc(1rem / 3 * 2);
+ border-width: calc(1rem / 3);
+ border-style: solid;
+ cursor: pointer;
+ display: block;
+ height: 2rem;
+ margin: 0 auto;
+ margin-bottom: 1rem;
+ user-select: none;
+ width: 3rem;
+ }
+
+ p {
+ & + p {
+ margin-top:calc(1rem / 2);
+ }
+
+ span.link + span::before {
+ content:"\0020\00B7\0020";
+ }
+
+ p,span.link a,span.link a:hover {
+ color:var(--backgroundColour);
+ }
+
+ span.link a:hover {
+ text-decoration:underline;
+ }
+ }
+}