Spookie/assets/styles/app.scss

57 lines
899 B
SCSS
Raw Normal View History

2021-06-01 18:48:20 +02:00
/*
jet black (tiefschwarz) - RAL 9005: #0e0e10, rgba(14, 14, 16, 1.0);
2021-06-12 16:01:02 +02:00
mango: #FF8040, rgba(255, 130, 67, 1.0);
2021-06-01 18:48:20 +02:00
gray: #a1a1a1, rgba(161, 161, 161, 1.0)
*/
/*
@media (prefers-color-scheme: light) {}
@media (prefers-color-scheme: dark) {}
*/
/* debug */
* {
2022-04-11 17:55:00 +02:00
//border: 1px solid gray;
2021-06-01 18:48:20 +02:00
}
2022-04-11 18:20:30 +02:00
2022-05-03 14:52:04 +02:00
html, body{
margin: 0;
padding: 0;
2022-10-28 18:48:25 +02:00
//background: linear-gradient(90deg, rgba(14,14,16,1) 0%, rgba(255,128,64,1) 35%, rgba(14,14,16,1) 100%);
background: #0e0e10;
2022-05-03 14:52:04 +02:00
}
2022-05-12 19:29:14 +02:00
2021-06-01 18:48:20 +02:00
// customize some Bootstrap variables
2022-10-28 18:48:25 +02:00
$primary: #FF8040;
$jet-black: #0e0e10;
//@import "bootstrap/scss/bootstrap";
2021-06-01 18:48:20 +02:00
2022-10-28 18:48:25 +02:00
///
2021-06-01 18:48:20 +02:00
2022-10-28 18:48:25 +02:00
// sidebar
2022-05-12 19:29:14 +02:00
2022-10-28 18:48:25 +02:00
#sidebar {
min-width: 180px;
max-width: 180px;
display: inline;
white-space: nowrap;
overflow: hidden;
float: left;
transition: min-width 0.5s, max-width 0.5s;
2022-05-23 16:25:55 +02:00
}
2022-10-28 18:48:25 +02:00
#sidebar.active {
min-width: 60px;
max-width: 60px;
2022-05-12 19:29:14 +02:00
}
2022-10-28 18:48:25 +02:00
#content {
2022-05-23 16:25:55 +02:00
}
2022-10-28 18:48:25 +02:00
#sidebar.active .menuText {
display: none;
2022-05-23 16:25:55 +02:00
}