publik-base-theme/static/montpellier-2023/style.scss

28 lines
891 B
SCSS

@charset "UTF-8";
@mixin MintGrotesk-font($type, $weight, $style) {
@font-face {
font-family: 'MintGrotesk';
src: url('https://servicenumerique.montpellier.fr/files/font/MintGrotesk/woff/MintGrotesk-#{$type}.woff') format('woff');
font-weight: $weight;
font-style: $style;
}
}
@mixin MintGrotesk-font-pair($type, $weight) {
@include MintGrotesk-font($type, $weight, normal);
@include MintGrotesk-font('#{$type}italic', $weight, italic);
}
@include MintGrotesk-font-pair('Thin', 100);
@include MintGrotesk-font-pair('Light', 300);
@include MintGrotesk-font-pair('Regular', 400);
@include MintGrotesk-font-pair('Medium', 500);
@include MintGrotesk-font-pair('Bold', 600);
@include MintGrotesk-font-pair('ExtraBold', 700);
@include MintGrotesk-font-pair('Black', 800);
@include MintGrotesk-font-pair('Heavy', 900);
@import 'vars';
@import '../includes/publik';
@import 'custom';