2020-01-25 19:42:58 +01:00
|
|
|
@import "../node_modules/bootstrap/scss/_functions";
|
|
|
|
@import "../node_modules/bootstrap/scss/_variables";
|
|
|
|
@import "../node_modules/bootstrap/scss/_mixins";
|
2020-01-25 00:57:57 +01:00
|
|
|
|
|
|
|
$blue: #007bff;
|
|
|
|
$indigo: #6610f2;
|
|
|
|
$purple: #6f42c1;
|
|
|
|
$pink: #e83e8c;
|
|
|
|
$red: #dc3545;
|
|
|
|
$orange: #fd7e14;
|
|
|
|
$yellow: #ffc107;
|
|
|
|
$green: #28a745;
|
|
|
|
$teal: #20c997;
|
|
|
|
$cyan: #17a2b8;
|
|
|
|
|
|
|
|
$badge-font-weight: 400;
|
2020-01-28 19:53:33 +01:00
|
|
|
$body-bg: #FFFEFC;
|
|
|
|
$body-color:#37352F;
|
2020-01-25 00:57:57 +01:00
|
|
|
|
|
|
|
// bootstrap components
|
2020-01-28 19:53:33 +01:00
|
|
|
@import "../node_modules/bootstrap/scss/_root";
|
|
|
|
@import "../node_modules/bootstrap/scss/utilities";
|
|
|
|
@import "../node_modules/bootstrap/scss/_reboot";
|
2020-01-25 00:57:57 +01:00
|
|
|
@import "../node_modules/bootstrap/scss/_buttons";
|
|
|
|
@import "../node_modules/bootstrap/scss/_button-group";
|
|
|
|
@import "../node_modules/bootstrap/scss/_tables";
|
|
|
|
@import "../node_modules/bootstrap/scss/_forms";
|
|
|
|
@import "../node_modules/bootstrap/scss/_nav";
|
|
|
|
@import "../node_modules/bootstrap/scss/_badge";
|
|
|
|
@import "../node_modules/bootstrap/scss/_grid";
|
|
|
|
@import "../node_modules/bootstrap/scss/_close";
|
2020-01-28 06:44:36 +01:00
|
|
|
@import "../node_modules/bootstrap/scss/_card";
|
2020-01-29 22:18:04 +01:00
|
|
|
@import "../node_modules/bootstrap/scss/_modal";
|
2020-01-25 00:57:57 +01:00
|
|
|
|
2020-01-28 19:53:33 +01:00
|
|
|
// icons
|
|
|
|
@import "../font/flaticon";
|
|
|
|
|
2020-01-25 00:57:57 +01:00
|
|
|
// our components
|
2020-01-25 04:30:34 +01:00
|
|
|
@import "events";
|
2020-01-28 06:44:36 +01:00
|
|
|
@import "funnel";
|
2020-01-28 19:53:33 +01:00
|
|
|
@import "sidebar";
|
2020-01-25 00:57:57 +01:00
|
|
|
.cursor-pointer { cursor: pointer }
|
|
|
|
|
|
|
|
.badge .close {
|
|
|
|
text-shadow: none;
|
|
|
|
margin: -6px 0 -8px 8px;
|
|
|
|
font-size: 1.3rem;
|
2020-01-27 22:18:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-01-28 19:53:33 +01:00
|
|
|
.right-align {
|
|
|
|
float: right;
|
|
|
|
.fi { font-size: 20px; margin-right: 12px }
|
2020-01-27 22:18:20 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
.content{
|
2020-01-28 19:53:33 +01:00
|
|
|
padding: 0 45px;
|
2020-01-29 23:48:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
pre.code {
|
|
|
|
white-space: pre-wrap;
|
|
|
|
word-break: break-all;
|
|
|
|
background: rgb(51, 51, 51);
|
|
|
|
padding: 20px;
|
|
|
|
border-radius: 3px;
|
|
|
|
color: white;
|
|
|
|
margin-top: 2rem;
|
2020-01-25 00:57:57 +01:00
|
|
|
}
|