julienmonnerie/assets/css/style.scss

56 lines
1.1 KiB
SCSS
Raw Normal View History

2022-06-17 17:51:59 +02:00
@use 'partials/minireset';
@use 'partials/fonts';
@use 'partials/variables' as *;
@use 'partials/animations';
// ----------------------------------------------------------------------------
// GENERALITIES
// ----------------------------------------------------------------------------
// Fonts and colors
// Link style
// General grid layout
2022-07-01 16:04:59 +02:00
body {
min-height: 100vh;
overflow-x: hidden;
display: -ms-grid;
display: grid;
grid:
'header main' 1fr
'footer main' auto
/ auto 1fr;
}
header {
grid-area: header;
}
main {
grid-area: main;
}
footer {
grid-area: footer;
}
2022-06-17 17:51:59 +02:00
// ----------------------------------------------------------------------------
// HEADER
// ----------------------------------------------------------------------------
// Header bar
// ----------------------------------------------------------------------------
// MAIN
// ----------------------------------------------------------------------------
// Home section
// ----------------------------------------------------------------------------
// FOOTER
// ----------------------------------------------------------------------------
// Footer bar