Initial commit

This commit is contained in:
Thomas Amland
2020-03-01 20:08:02 +01:00
commit b4623926a2
59 changed files with 11280 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
@import '~roboto-fontface/css/roboto/roboto-fontface.css';
@import '~@mdi/font/css/materialdesignicons.css';
$enable-rounded: false;
$enable-print-styles: false;
.breadcrumb {
background: none !important;
padding: 0 !important;
}
@import './theme.scss';
a.active {
color: $primary;
}
h1, h2, h3 {
// color: $primary;
color: #fff;
}
@import '~bootstrap';
@import '~bootstrap-vue';
+31
View File
@@ -0,0 +1,31 @@
// $BASE: #080808;
// $BASE_EVEVATED: #222;
$BASE: #000;
$BASE_EVEVATED: rgb(25, 25, 25);
$primary: #09f;
$danger: #e54b4b;
// $black: #000 !default;
$body-bg: $BASE;
$body-color: #ccc;
$link-color: #ccc;
$text-muted: #999;
// strong { color: #ddd }
// Cards
$card-cap-bg: $BASE_EVEVATED;
$card-bg: $BASE_EVEVATED;
$modal-content-bg: $BASE_EVEVATED;
$input-bg: $BASE_EVEVATED;
$input-color: #ccc !default;
$progress-bg: rgb(35, 35, 35);
$border-color: #444;
.elevated {
background-color: $BASE_EVEVATED;
}