123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- @import '../fonts/libertinus/libertinus.css';
- @import '../fonts/notosans/notosans.css';
- // @import '../fonts/notosans/notosans-semicondensed.css';
- // @import '../fonts/notosans/notosans-condensed.css';
- // @import '../fonts/notosans/notosans-extracondensed.css';
- @mixin fontsans {
- font-family: "noto_sans";
- }
- @mixin fontserif {
- font-family: 'libertinus_serif';
- }
- body{
- @include fontserif;
- font-weight: 400;
- // font-family: 'noto_sans';
- // font-weight: 900;
- // font-style: italic;
- }
- #header-menu,
- #footer-tabs,
- #search,
- footer[role="tools"] .row>header,
- footer[role="tools"] .row>nav{
- @include fontsans;
- }
- @mixin title1blue {
- @include fontserif;
- font-size: 2.268em;
- color: $bleuroi;
- font-weight: 400;
- margin:0;
- line-height: $base-line;
- }
- @mixin title1black {
- @include fontserif;
- font-size: 1.512em;
- color: $grisfonce;
- font-weight: 400;
- margin:0;
- line-height: $base-line;
- }
- @mixin title2black {
- @include fontserif;
- font-size: 1.134em;
- color: $grisfonce;
- font-weight: 400;
- margin:0;
- line-height: $base-line / 2;
- }
- @mixin title2blue {
- @include fontserif;
- font-size: 1.134em;
- color: $grisfonce;
- font-weight: 400;
- margin:0;
- line-height: $base-line / 2;
- }
- @mixin title3black {
- @include fontserif;
- font-size: 1em;
- color: $grisfonce;
- font-weight: 400;
- margin:0;
- line-height: $base-line / 2;
- }
- @mixin title4black {
- @include fontserif;
- font-size: 0.882em;;
- color: $grisfonce;
- font-weight: 400;
- margin:0;
- line-height: $base-line / 2;
- }
- @mixin title4grey {
- @include fontserif;
- font-size: 0.882em;;
- color: $gris;
- font-weight: 400;
- margin:0;
- }
- // TEI
- @mixin teititlefrontblue {
- @include fontserif;
- font-size: 2.6em;
- color: $bleuroi;
- font-weight: 400;
- margin:0;
- text-align: center;
- line-height: $base-line * 1.5;
- }
- @mixin teititle1blue {
- @include fontserif;
- font-size: 1.8em;
- color: $bleuroi;
- font-weight: 400;
- margin:0;
- line-height: $base-line;
- }
- @mixin titleSansRed {
- font-family: "noto_sans";
- color: $rouge;
- font-weight: 400;
- line-height: $base-line;
- }
- @mixin fontcaption {
- @include fontsans;
- font-size: 0.643em;
- line-height: 1.1em;
- }
|