2018-01-08 12:29:49 +00:00
|
|
|
$gray-000: #fafbfc !default;
|
|
|
|
$gray-100: #f6f8fa !default;
|
|
|
|
$gray-200: #e1e4e8 !default;
|
|
|
|
$gray-300: #d1d5da !default;
|
|
|
|
$gray-400: #959da5 !default;
|
|
|
|
$gray-500: #6a737d !default;
|
|
|
|
$gray-600: #586069 !default;
|
|
|
|
$gray-700: #444d56 !default;
|
|
|
|
$gray-800: #2f363d !default;
|
|
|
|
$gray-900: #24292e !default; // body font color
|
|
|
|
|
|
|
|
@import "node_modules/bootstrap/scss/bootstrap";
|
|
|
|
|
|
|
|
html {
|
|
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.wrapper {
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 1fr 4fr;
|
2018-01-10 10:50:57 +00:00
|
|
|
grid-auto-rows: minmax(100%, auto);
|
|
|
|
height: 100vh;
|
2018-01-08 12:29:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.sidebar {
|
|
|
|
background-color: $gray-100;
|
2018-01-11 10:00:13 +00:00
|
|
|
margin-left: -15px;
|
2018-01-08 12:29:49 +00:00
|
|
|
}
|
2018-01-09 13:40:33 +00:00
|
|
|
|
2018-01-10 10:50:57 +00:00
|
|
|
.main, .sidebar {
|
|
|
|
padding: 2rem;
|
|
|
|
}
|
|
|
|
|
2018-01-09 13:40:33 +00:00
|
|
|
.hide {
|
|
|
|
display: none !important;
|
|
|
|
}
|
2018-01-10 10:50:57 +00:00
|
|
|
|
2018-01-11 10:00:13 +00:00
|
|
|
.form-body {
|
|
|
|
.form-toolbar {
|
|
|
|
height: 2rem;
|
|
|
|
margin-bottom: 1rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.alert {
|
|
|
|
margin-top: 1rem;
|
|
|
|
}
|
2018-01-10 10:50:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
textarea.form-control {
|
|
|
|
line-height: 1.5;
|
|
|
|
}
|