What is this?
@@ -38,30 +38,40 @@
\ No newline at end of file
diff --git a/src/router/routes.js b/src/router/routes.js
index 1e086d7..536bc96 100644
--- a/src/router/routes.js
+++ b/src/router/routes.js
@@ -9,8 +9,8 @@ export const routes = [
component: OverviewInfo,
},
{
- path: "/remcs",
- name: "remcs",
+ path: "/resmcs",
+ name: "resmcs",
component: MinecraftServer,
},
{
diff --git a/src/styles/_variables.scss b/src/styles/_variables.scss
index 9adaf0f..489cbb0 100644
--- a/src/styles/_variables.scss
+++ b/src/styles/_variables.scss
@@ -1,13 +1,13 @@
$themes: (
- "light": (
- "background": #ebf0ef,
- "navbar": #fef6ff,
- "navbar-brand": #8a2be2,
- "navbar-link": #684eff,
- "navbar-active": #3f28c0,
- "main": #8a2be2,
- "footer": #e2762b,
- "text": #1a1a1a,
+ "dark": (
+ "background": #2c093b,
+ "navbar": #623d99,
+ "navbar-brand": #fcfcff,
+ "navbar-link": #fcf0ff,
+ "navbar-active": #00c9a9,
+ "main": #501b69,
+ "footer": #15061d,
+ "text": #cfcfff,
"special": #94e22b,
"muted": #797a7e,
),
diff --git a/src/styles/global.scss b/src/styles/global.scss
index e48b54d..5b9c485 100644
--- a/src/styles/global.scss
+++ b/src/styles/global.scss
@@ -6,15 +6,18 @@
header > nav {
@extend .navbar;
@extend .navbar-expand-lg;
- @extend .border-bottom;
position: fixed !important;
top: 0px;
left: 0px;
right: 0px;
+ border-bottom-style: solid;
+ border-bottom-width: 1px;
+
@include themer.themed {
- background-color: themer.color-of("navbar");
+ border-bottom-color: color.adjust(themer.color-of("navbar"), $lightness: 10%);
+ background-color: color.change($color: themer.color-of("navbar"), $alpha: 0.75);
}
.navbar-brand {
@@ -41,12 +44,12 @@ header > nav {
}
}
-.sections {
+.pages {
display: flex;
flex-grow: 1;
flex-direction: column;
- .section {
+ .page {
min-height: 100%;
display: flex;
flex-direction: column;
@@ -91,5 +94,6 @@ main {
flex-grow: 1;
@include themer.themed {
color: themer.color-of("text");
+ background-color: themer.color-of("background");
}
}