31 lines
490 B
SCSS
31 lines
490 B
SCSS
@use "../../fonts/epilogue/stylesheet" with ($font-path: "../fonts/epilogue");
|
|
|
|
body{
|
|
font-family: 'Epilogue';
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
@mixin titre{
|
|
font-size: 1em;
|
|
}
|
|
|
|
// @mixin titre_h2{
|
|
// font-family: 'Fredoka';
|
|
// font-size: 3em;
|
|
// font-weight: 400;
|
|
// color: $bleu_typo;
|
|
// line-height: 1;
|
|
// }
|
|
|
|
// @mixin titre_h3{
|
|
// @include titre_h2();
|
|
// font-size: 2em;
|
|
// }
|
|
|
|
// @mixin titre_h4{
|
|
// @include titre_h2();
|
|
// font-size: 1.323em;
|
|
// }
|
|
|