fonts.scss 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  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: $font24;
  9. font-weight: normal;
  10. // color: white;
  11. }
  12. .language-selector{
  13. li{
  14. &:nth-child(-n+2){
  15. &::after{
  16. font-size: $font24;
  17. content: "-";
  18. // color: white;
  19. }
  20. }
  21. }
  22. }
  23. }
  24. #start{
  25. .content{
  26. p{
  27. font-size: $font16;
  28. font-family: $light;
  29. font-weight: normal;
  30. line-height: 2rem;
  31. }
  32. }
  33. .citation{
  34. p{
  35. font-size: $font16;
  36. font-family: $Regular;
  37. font-weight: normal;
  38. line-height: 2rem;
  39. color: white;
  40. }
  41. }
  42. #home, #contact{
  43. h1{
  44. font-family: $Thin;
  45. font-weight: normal;
  46. font-size: 30vw;
  47. }
  48. p, a {
  49. font-size: $font16;
  50. color: white;
  51. font-family: $light;
  52. }
  53. }
  54. .chap{
  55. color: white;
  56. font-family: $light;
  57. h2{
  58. font-family: $light;
  59. font-weight: normal;
  60. font-size: $font48;
  61. }
  62. a{
  63. font-family: $Regular;
  64. font-size: $font16;
  65. color: white;
  66. }
  67. & > a{
  68. &:nth-of-type(2){
  69. &::before{
  70. margin: 0 5px;
  71. content: "-";
  72. color: white;
  73. }
  74. }
  75. }
  76. }
  77. }
  78. }