Spookie/assets/styles/app.scss

94 lines
1.6 KiB
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-11-03 18:52:26 +01:00
// customize some Bootstrap variables
$primary: #FF8040;
$jet-black: #0e0e10;
2022-11-05 17:18:04 +01:00
$body-color: #3f3f3f;
$list-group-bg: $body-color;
$list-group-hover-bg: #232323;
$list-group-active-bg: #232323;
$list-group-action-active-bg: #232323;
2022-11-03 18:52:26 +01:00
2022-11-05 17:18:04 +01:00
@import '~bootstrap';
@import './components/sidebar';
2022-11-03 18:52:26 +01:00
2022-04-11 18:20:30 +02:00
2022-11-01 14:57:36 +01:00
html, body {
2022-05-03 14:52:04 +02:00
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
2022-10-28 18:48:25 +02:00
///
2021-06-01 18:48:20 +02:00
2022-05-23 16:25:55 +02:00
2022-11-01 14:57:36 +01:00
#main_content {
overflow-y: auto;
2022-11-05 17:18:04 +01:00
height: calc(100vh - 190px); // 74px header, 64px header
2022-11-01 14:57:36 +01:00
}
.form-signin {
width: 100%;
max-width: 330px;
padding: 15px;
margin: 50px auto auto;
}
.form-signin .checkbox {
font-weight: 400;
}
.form-signin .form-control {
position: relative;
box-sizing: border-box;
height: auto;
padding: 10px;
font-size: 16px;
}
.form-signin .form-control:focus {
z-index: 2;
}
.form-signin input {
border-radius: 0;
}
.form-signin input[id="registration_form_username"] {
margin-bottom: -1px;
border-radius: 0.375rem 0.375rem 0 0;
}
.form-signin input[id="registration_form_password_second"] {
margin-bottom: 10px;
border-radius: 0 0 0.375rem 0.375rem;
}
2022-11-03 18:52:26 +01:00
.quote-box {
border-left: 1px solid #ff8844;
color: #ff8844;
}
.project-image {
width: 200px;
margin: 15px;
}