2017-05-26 23:51:48 -04:00
|
|
|
// styles in src/style directory are applied to the whole page
|
2017-12-14 23:25:15 -05:00
|
|
|
@import url('https://fonts.googleapis.com/css?family=Open+Sans:100|Roboto:300');
|
2017-05-27 19:45:07 -04:00
|
|
|
@import '../../node_modules/angular2-toaster/toaster';
|
2017-12-23 01:19:30 -05:00
|
|
|
@import "components/ibox";
|
2017-12-23 23:40:01 -05:00
|
|
|
@import "components/dialog";
|
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 {
|
2017-12-14 23:25:15 -05:00
|
|
|
background: rgb(238, 238, 238) !important;
|
2017-05-26 23:51:48 -04:00
|
|
|
margin: 0;
|
2017-05-27 23:21:08 -04:00
|
|
|
padding: 0;
|
2017-12-14 23:25:15 -05:00
|
|
|
color: #333;
|
2017-12-23 01:19:30 -05:00
|
|
|
font-family: 'Open Sans', sans-serif !important;
|
2017-05-26 23:51:48 -04:00
|
|
|
}
|
2017-05-29 00:51:04 -04:00
|
|
|
|
|
|
|
// HACK: Work around dialog not showing up
|
|
|
|
// ref: https://github.com/shlomiassaf/angular2-modal/issues/280
|
|
|
|
.fade.in {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.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;
|
2017-05-29 00:51:04 -04:00
|
|
|
}
|