74 lines
1003 B
SCSS
74 lines
1003 B
SCSS
@import 'styleConstants.scss';
|
|
html {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
position: relative;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: $ProximaNova-font;
|
|
background: $background-color;
|
|
color: $darkGreyColor;
|
|
}
|
|
|
|
#root {
|
|
height: 100%;
|
|
}
|
|
|
|
header {
|
|
top: 0;
|
|
left: 0;
|
|
position: fixed;
|
|
width: 100%;
|
|
z-index: 10;
|
|
}
|
|
|
|
footer {
|
|
position: fixed;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
text-align: center;
|
|
padding: 0.5rem 0;
|
|
height: 2.5rem;
|
|
background-color: $footer-background;
|
|
z-index: 10;
|
|
}
|
|
|
|
a {
|
|
color: $blueColor;
|
|
}
|
|
|
|
a:hover {
|
|
color: $blueColor;
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6{
|
|
font-weight: $font-weight;
|
|
color: $title-color;
|
|
}
|
|
|
|
.warning{
|
|
color: $warning;
|
|
}
|
|
|
|
.wiaas-alert {
|
|
background-color: $whiteColor;
|
|
border-color: $whiteColor;
|
|
}
|
|
|
|
@media all and (max-width: 992px) {
|
|
header {
|
|
top: 0;
|
|
left: 0;
|
|
position: initial;
|
|
}
|
|
|
|
footer {
|
|
position: relative;
|
|
}
|
|
}
|