2020-05-13 12:34:56 +00:00
|
|
|
:root {
|
|
|
|
font-family-monospace: Monaco, Menlo, "Ubuntu Mono", Consolas, source-code-pro, monospace;
|
|
|
|
}
|
|
|
|
|
2018-08-30 14:25:33 +00:00
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2019-01-18 17:17:48 +00:00
|
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
|
2018-08-30 14:25:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.status {
|
|
|
|
margin-top: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.container--wrap {
|
|
|
|
min-height: calc(100vh - 160px);
|
|
|
|
}
|
|
|
|
|
|
|
|
@media screen and (min-width: 992px) {
|
|
|
|
.container--wrap {
|
|
|
|
min-height: calc(100vh - 117px);
|
|
|
|
}
|
|
|
|
}
|
2018-09-19 15:58:55 +00:00
|
|
|
|
|
|
|
.loading-bar {
|
2019-01-16 11:51:17 +00:00
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2018-09-19 15:58:55 +00:00
|
|
|
z-index: 103;
|
|
|
|
height: 3px;
|
|
|
|
background: linear-gradient(45deg, rgba(99, 125, 120, 1) 0%, rgba(88, 177, 101, 1) 100%);
|
|
|
|
}
|
2019-01-18 17:17:48 +00:00
|
|
|
|
|
|
|
.hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
2020-05-13 12:34:56 +00:00
|
|
|
|
|
|
|
.font-monospace {
|
|
|
|
font-family: var(--font-family-monospace);
|
|
|
|
}
|