You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
705 B
SCSS
49 lines
705 B
SCSS
@import 'colours';
|
|
@import 'variables';
|
|
@import 'form';
|
|
@import 'header';
|
|
@import 'footer';
|
|
@import 'alert';
|
|
|
|
object *{
|
|
fill: $white;
|
|
}
|
|
*, *:before, *:after{
|
|
-webkit-box-sizing: inherit;
|
|
-moz-box-sizing: inherit;
|
|
box-sizing: inherit;
|
|
}
|
|
html{
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box;
|
|
}
|
|
html, body{
|
|
margin: 0;
|
|
height: 100%;
|
|
}
|
|
body{
|
|
display: flex;
|
|
flex-direction: column;
|
|
font-family: system-ui, sans-serif;
|
|
}
|
|
main{
|
|
flex: 1 0 auto;
|
|
}
|
|
|
|
.layout-wrapper{
|
|
width: 100%;
|
|
max-width: 1240px;
|
|
padding: 0 20px;
|
|
margin: 0 auto;
|
|
}
|
|
.banner{
|
|
margin: 0 auto;
|
|
width: 100%;
|
|
height: 200px;
|
|
background-color: $gunmetal;
|
|
color: $white;
|
|
margin-bottom: 12px;
|
|
}
|
|
|