fonts.scss 631 B

1234567891011121314151617181920212223242526272829303132
  1. @include Montserrat-Regular($Regular, $file-regular, $family, $category);//1
  2. @include Montserrat-light($light, $file-light, $family, $category);//1
  3. @include Montserrat-Thin($Thin, $file-Thin, $family, $category);//1
  4. body{
  5. #header{
  6. a{
  7. font-family: $Regular;
  8. font-size: $font36;
  9. color: white;
  10. }
  11. .language-selector{
  12. li{
  13. &:nth-child(-n+2){
  14. &::after{
  15. font-size: $font36;
  16. content: "-";
  17. color: white;
  18. }
  19. }
  20. }
  21. }
  22. }
  23. #start{
  24. #home{
  25. h1{
  26. font-family: $Thin;
  27. font-size: 33vw;
  28. }
  29. }
  30. }
  31. }