fonts.scss 461 B

1234567891011121314151617181920212223
  1. @include Montserrat-Regular($Regular, $file-regular, $family, $category);//1
  2. @include Montserrat-light($light, $file-light, $family, $category);//1
  3. body{
  4. #header{
  5. a{
  6. font-family: $Regular;
  7. font-size: $font36;
  8. color: white;
  9. }
  10. .language-selector{
  11. li{
  12. &:nth-child(-n+2){
  13. &::after{
  14. font-size: $font36;
  15. content: "-";
  16. color: white;
  17. }
  18. }
  19. }
  20. }
  21. }
  22. }