Serverübersicht
diff --git a/Watcher/Views/Shared/_Layout.cshtml b/Watcher/Views/Shared/_Layout.cshtml
index aedb283..9f567c9 100644
--- a/Watcher/Views/Shared/_Layout.cshtml
+++ b/Watcher/Views/Shared/_Layout.cshtml
@@ -14,7 +14,7 @@
@ViewData["Title"] - Watcher
-
+
@@ -24,12 +24,12 @@
}
.sidebar {
- width: 240px;
+ width: 15rem;
height: 100vh;
position: fixed;
+ background-color: #212121;
left: 0;
top: 0;
- background-color: #343a40;
color: white;
display: flex;
flex-direction: column;
@@ -73,6 +73,9 @@
Netzwerk
+
+
Servers
+
Services
diff --git a/Watcher/Views/Shared/_Layout.cshtml.css b/Watcher/Views/Shared/_Layout.cshtml.css
deleted file mode 100644
index 3407be7..0000000
--- a/Watcher/Views/Shared/_Layout.cshtml.css
+++ /dev/null
@@ -1,53 +0,0 @@
-/* Please see documentation at https://learn.microsoft.com/aspnet/core/client-side/bundling-and-minification
-for details on configuring this project to bundle and minify static web assets. */
-
-html, body {
- min-height: 100vh;
- overflow-y: auto;
-}
-
-a.navbar-brand {
- white-space: normal;
- text-align: center;
- word-break: break-all;
-}
-
-a {
- color: #0077cc;
-}
-
-.btn-primary {
- color: #fff;
- background-color: #1b6ec2;
- border-color: #1861ac;
-}
-
-.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
- color: #fff;
- background-color: #1b6ec2;
- border-color: #1861ac;
-}
-
-.border-top {
- border-top: 1px solid #e5e5e5;
-}
-.border-bottom {
- border-bottom: 1px solid #e5e5e5;
-}
-
-.box-shadow {
- box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
-}
-
-button.accept-policy {
- font-size: 1rem;
- line-height: inherit;
-}
-
-.footer {
- position: absolute;
- bottom: 0;
- width: 100%;
- white-space: nowrap;
- line-height: 60px;
-}
diff --git a/Watcher/wwwroot/css/ServerOverview.css b/Watcher/wwwroot/css/ServerOverview.css
deleted file mode 100644
index 8b13789..0000000
--- a/Watcher/wwwroot/css/ServerOverview.css
+++ /dev/null
@@ -1 +0,0 @@
-
diff --git a/Watcher/wwwroot/css/main.css b/Watcher/wwwroot/css/main.css
new file mode 100644
index 0000000..fd40da8
--- /dev/null
+++ b/Watcher/wwwroot/css/main.css
@@ -0,0 +1,66 @@
+:root {
+ --color-bg: #141414;
+ --color-surface: #212121;
+ --color-accent: #415a77;
+ --color-primary: #616161;
+ --color-text: #f9feff;
+ --color-muted: #c0c0c0;
+ --color-success: #14a44d;
+ --color-danger: #ff6b6b;
+}
+
+body {
+ background-color: var(--color-bg);
+ color: var(--color-primary);
+}
+
+a {
+ color: var(--color-primary);
+}
+
+.card, .navbar, .form-control, .dropdown-menu {
+ background-color: var(--color-surface);
+ color: var(--color-text);
+ border: none;
+}
+
+.form-control {
+ background-color: var(--color-accent);
+ color: var(--color-text);
+}
+
+.form-control::placeholder {
+ color: var(--color-muted);
+}
+
+.navbar .nav-link,
+.dropdown-item {
+ color: var(--color-text);
+}
+
+.btn-primary {
+ background-color: var(--color-primary);
+ border: none;
+}
+
+.btn-danger {
+ background-color: var(--color-danger);
+ border: none;
+}
+
+.btn-pocketid {
+ background-color: var(--color-success);
+ color: white;
+}
+
+.btn-pocketid:hover {
+ background-color: #0f8c3c;
+}
+
+.table {
+ color: var(--color-text);
+}
+
+hr {
+ border-top: 1px solid var(--color-accent);
+}
diff --git a/Watcher/wwwroot/css/site.css b/Watcher/wwwroot/css/site.css
index 22fe50b..a7167d7 100644
--- a/Watcher/wwwroot/css/site.css
+++ b/Watcher/wwwroot/css/site.css
@@ -1,9 +1,9 @@
:root {
- --color-bg: #0d1b2a;
- --color-surface: #1b263b;
+ --color-bg: #141414;
+ --color-surface: #212121;
--color-accent: #415a77;
- --color-primary: #0d6efd;
- --color-text: #ffffff;
+ --color-primary: white;
+ --color-text: #f9feff;
--color-muted: #c0c0c0;
--color-success: #14a44d;
--color-danger: #ff6b6b;
@@ -11,7 +11,7 @@
body {
background-color: var(--color-bg);
- color: var(--color-text);
+ color: var(--color-primary);
}
a {