mirror of
https://github.com/turt2live/matrix-dimension.git
synced 2024-10-01 01:05:53 -04:00
11772f54e7
Fixes #188.
45 lines
853 B
SCSS
45 lines
853 B
SCSS
// styles in src/style directory are applied to the whole page
|
|
@import url('https://fonts.googleapis.com/css?family=Open+Sans:100|Roboto:300');
|
|
@import '../../node_modules/angular2-toaster/toaster';
|
|
@import "components/ibox";
|
|
@import "components/dialog";
|
|
@import "riot";
|
|
|
|
body {
|
|
background: #b0bbbf1f;
|
|
//background: #6268680d;
|
|
margin: 0;
|
|
padding: 0;
|
|
color: #333;
|
|
font-family: 'Open Sans', sans-serif !important;
|
|
}
|
|
|
|
// 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;
|
|
}
|
|
|
|
.label-block {
|
|
display: block;
|
|
}
|
|
|
|
.text-muted {
|
|
display: block;
|
|
font-size: 12px;
|
|
}
|