badguardhome/client/src/components/App/index.css

40 lines
745 B
CSS
Raw Normal View History

: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);
}
}
.loading-bar {
position: fixed;
top: 0;
left: 0;
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;
}
.font-monospace {
font-family: var(--font-family-monospace);
}