Blame view

public/scss/_vars.scss 472 Bytes
242debab8   thesolarwind   Первый коммит в п...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  $main: #012060;
  $black: #363A3F;
  $white: #FFFFFF;
  $blue: #42AAFF;
  
  
  
  // @mixin co() {
  //     font-family: 'Cormorant SC', serif;
  // }
  
  @mixin font-face($font-family, $path, $font-weight, $font-style) {
      @font-face {
          font-family: $font-family;
          src: url('../fonts/#{$path}.woff2') format('woff2'),
          url('../fonts/#{$path}.woff') format('woff');
          font-weight: $font-weight;
          font-style: $font-style;
          font-display: swap;
      }
  }