hubl/src/styles/main.scss

62 lines
671 B
SCSS
Raw Normal View History

2018-09-28 19:20:15 +00:00
@import 'variables';
[hidden] {
display: none !important;
}
html {
font-family: Open Sans, sans-serif;
font-size: 13px;
background-color: $color-grey-light;
2018-09-29 00:22:00 +00:00
color: $color-grey;
2018-09-28 19:20:15 +00:00
}
#header {
background-color: $color-white;
position: relative;
@include border-shadow(bottom);
border: solid $color-white;
border-width: 1px 0;
}
#logo {
margin: 1.4em;
}
html,
body {
height: 100%;
}
#subContainer {
display: flex;
min-height: 100%;
}
#mainContainer {
flex: 1 1 0px;
}
2018-09-29 00:22:00 +00:00
h1,
h2,
h3,
h4,
h5,
h6 {
color: $color-black;
}
h1{
font-size: 1.23em;
span{
font-weight: normal;
}
}
h2{
font-size: 1.16em;
}
h3{
font-size: 1.12em;
}