fonts.scss 723 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. body{
  2. #header{
  3. a{
  4. font-size: $font16;
  5. }
  6. .language-selector{
  7. li{
  8. &:nth-child(-n+2){
  9. &::after{
  10. font-size: $font16;
  11. }
  12. }
  13. }
  14. }
  15. }
  16. #start{
  17. .content{
  18. p{
  19. font-size: $font16;
  20. line-height: 2rem;
  21. }
  22. }
  23. .citation{
  24. p{
  25. font-size: $font16;
  26. line-height: 2rem;
  27. }
  28. }
  29. #home, #contact{
  30. h1{
  31. font-family: $Regular;
  32. font-size: 26vw;
  33. }
  34. p, a {
  35. font-size: $font16;
  36. }
  37. }
  38. .chap{
  39. h2{
  40. font-size: $font36;
  41. }
  42. a{
  43. font-size: $font16;
  44. &.focus{
  45. font-size: $font18;
  46. }
  47. }
  48. }
  49. }
  50. }