rescue old vm stuff

This commit is contained in:
2022-11-05 17:18:04 +01:00
parent e17cf3eaeb
commit 219f4097ff
17 changed files with 1405 additions and 1617 deletions

@ -18,10 +18,15 @@
$primary: #FF8040;
$jet-black: #0e0e10;
//$body-bg: red;
$body-color: #8f8f8f;
$body-color: #3f3f3f;
$list-group-bg: $body-color;
$list-group-hover-bg: #232323;
$list-group-active-bg: #232323;
$list-group-action-active-bg: #232323;
@import 'bootstrap-dark-5/dist/css/bootstrap-night.min.css';
@import '~bootstrap';
@import './components/sidebar';
html, body {
@ -35,35 +40,10 @@ html, body {
///
// sidebar
#sidebar {
min-width: 180px;
max-width: 180px;
height: 100%;
display: inline;
white-space: nowrap;
overflow: hidden;
float: left;
background-color: $jet-black;
transition: min-width 0.5s, max-width 0.5s;
}
#sidebar.active {
min-width: 60px;
max-width: 60px;
}
#content {
}
#sidebar.active .menuText {
display: none;
}
#main_content {
overflow-y: auto;
height: calc(100vh - 180px); // 74px header, 64px header
height: calc(100vh - 190px); // 74px header, 64px header
}
.form-signin {

@ -0,0 +1,22 @@
// sidebar
#sidebar {
min-width: 180px;
max-width: 180px;
height: 100%;
display: inline;
white-space: nowrap;
overflow: hidden;
float: left;
background-color: $jet-black;
transition: min-width 0.5s, max-width 0.5s;
}
#sidebar.active {
min-width: 60px;
max-width: 60px;
}
#sidebar.active .menuText {
display: none;
}