43 lines
773 B
SCSS
43 lines
773 B
SCSS
// Table of Contents
|
|
//
|
|
// 01. Variables
|
|
// 02. Global styles
|
|
// 03. Header
|
|
// 04. Footer
|
|
|
|
|
|
// 01. Variables
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
$font-family-sans-serif: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
|
|
$line-height: rem-calc(24);
|
|
|
|
// 02. Global styles
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
|
|
|
|
|
|
// 02. Header
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
header {
|
|
background: url('https://static.pexels.com/photos/2752/city-sunny-people-street-large.jpg');
|
|
background-position: 50% 50%;
|
|
background-size: cover;
|
|
min-height: $line-height*20;
|
|
}
|
|
|
|
.contain-to-grid {
|
|
background: none;
|
|
}
|
|
|
|
.top-links {
|
|
color: white;
|
|
font-size: rem-calc(14);
|
|
padding: $header-line-height/2+em 0;
|
|
|
|
a {
|
|
color: white;
|
|
}
|
|
} |