hubl/src/scss/_styles.scss

36 lines
433 B
SCSS
Raw Normal View History

2018-03-11 23:42:46 +00:00
* {
2018-09-09 11:51:56 +00:00
box-sizing: border-box;
2018-03-11 23:42:46 +00:00
}
2018-09-09 11:51:56 +00:00
html {
2018-09-21 11:29:45 +00:00
font-family: Trebuchet MS, Lucida Grande, Lucida Sans Unicode, Lucida Sans,
Tahoma, sans-serif;
2018-09-11 23:34:13 +00:00
font-size: 16px;
2018-09-21 11:29:45 +00:00
background-color: $col-main-bg;
color: $col-main-fg;
2018-09-09 11:51:56 +00:00
}
html,
body {
margin: 0;
padding: 0;
}
html,
2018-09-21 11:29:45 +00:00
body {
2018-03-11 23:42:46 +00:00
height: 100%;
}
2018-09-11 23:34:13 +00:00
#subContainer {
display: flex;
min-height: 100%;
2018-04-19 16:24:42 +00:00
}
2018-09-11 23:34:13 +00:00
#mainContainer {
flex: 1 1 0px;
}
2018-09-21 11:29:45 +00:00
h1,h2,h3,h4,h5,h6{
color: $pal-black;
}