87 lines
1.2 KiB
SCSS
87 lines
1.2 KiB
SCSS
@import '@cityssm/bulma-webapp-css/cityssm.min';
|
|
|
|
$white: #fff;
|
|
$black: #000;
|
|
|
|
.is-linethrough {
|
|
text-decoration: line-through;
|
|
}
|
|
|
|
.has-width-10 {
|
|
width: 10px;
|
|
}
|
|
|
|
/*
|
|
* Status containers
|
|
*/
|
|
|
|
.has-status-loaded .is-hidden-status-loaded,
|
|
.has-status-loading .is-hidden-status-loading,
|
|
.has-status-view .is-hidden-status-view,
|
|
fieldset:enabled .is-hidden-enabled {
|
|
display: none;
|
|
}
|
|
|
|
.has-status-view .is-noninteractive-status-view {
|
|
pointer-events: none;
|
|
}
|
|
|
|
// to fix page titles inside level components
|
|
// set on .level-left
|
|
|
|
.has-flex-shrink-1 {
|
|
flex-shrink: 1;
|
|
}
|
|
|
|
.has-border-radius-3 {
|
|
border-radius: 3px;
|
|
}
|
|
|
|
/*
|
|
* Tabs
|
|
*/
|
|
|
|
.tab-content {
|
|
display: none;
|
|
|
|
&.is-active {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
#is-login-page {
|
|
overflow: auto;
|
|
background-image: url('../images/login.jpg');
|
|
background-position: top center;
|
|
background-size: cover;
|
|
|
|
body > .columns {
|
|
min-height: 100vh;
|
|
}
|
|
}
|
|
|
|
.button.is-xsmall {
|
|
height: 2em;
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
font-size: 0.75rem;
|
|
}
|
|
|
|
/*
|
|
* Print
|
|
*/
|
|
|
|
.container.is-page {
|
|
width: 8.5in;
|
|
padding: 10px 20px 20px;
|
|
margin: 20px auto;
|
|
background-color: $white;
|
|
border: 1px solid $black;
|
|
|
|
@media print {
|
|
width: 100%;
|
|
padding: 0;
|
|
border: 0;
|
|
}
|
|
}
|