2017-05-26 23:51:48 -04:00
|
|
|
// styles in src/style directory are applied to the whole page
|
2021-08-11 17:41:29 -04:00
|
|
|
@import "../assets//fonts/opensans100-roboto300";
|
|
|
|
@import "../../node_modules/angular2-toaster/toaster";
|
2021-08-16 18:00:59 -04:00
|
|
|
@import "~bootstrap/scss/bootstrap";
|
2021-08-11 17:41:29 -04:00
|
|
|
@import "~ngx-ui-switch/ui-switch.component.scss";
|
2018-10-22 02:41:35 -04:00
|
|
|
@import "themes/themes";
|
2017-12-23 01:19:30 -05:00
|
|
|
@import "components/ibox";
|
2017-12-23 23:40:01 -05:00
|
|
|
@import "components/dialog";
|
2018-10-22 02:41:35 -04:00
|
|
|
@import "components/bootstrap_override";
|
2017-12-15 01:32:23 -05:00
|
|
|
@import "riot";
|
2017-05-27 19:45:07 -04:00
|
|
|
|
2017-05-26 23:51:48 -04:00
|
|
|
body {
|
|
|
|
margin: 0;
|
2017-05-27 23:21:08 -04:00
|
|
|
padding: 0;
|
2021-08-11 17:41:29 -04:00
|
|
|
font-family: "Roboto", "Open Sans", Arial, sans-serif;
|
2017-05-26 23:51:48 -04:00
|
|
|
}
|
2017-05-29 00:51:04 -04:00
|
|
|
|
2019-07-11 00:17:16 -04:00
|
|
|
@include themifyRoot() {
|
2018-10-22 02:41:35 -04:00
|
|
|
color: themed(defaultFgColor);
|
|
|
|
|
|
|
|
// HACK: We specify the spinner color here because we can't use the mixin
|
|
|
|
// in the spinner's css due to angular scoping
|
|
|
|
.sk-cube:before {
|
|
|
|
background-color: themed(spinnerColor) !important;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-29 00:51:04 -04:00
|
|
|
.modal.in .modal-dialog {
|
|
|
|
-webkit-transform: translate(0, 0);
|
|
|
|
-o-transform: translate(0, 0);
|
|
|
|
transform: translate(0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
.modal-backdrop.in {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
button {
|
|
|
|
cursor: pointer;
|
2017-12-22 23:33:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.label-block {
|
|
|
|
display: block;
|
2018-01-31 18:30:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.text-muted {
|
|
|
|
display: block;
|
|
|
|
font-size: 12px;
|
2018-05-20 20:16:13 -04:00
|
|
|
}
|
2019-04-13 18:31:02 -04:00
|
|
|
|
|
|
|
.error-text {
|
2019-04-14 18:23:57 -04:00
|
|
|
color: #bd362f !important;
|
2021-08-11 17:41:29 -04:00
|
|
|
}
|