_font.scss 918 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. h1,h2,h3{
  2. font-family: $style-name-bold;
  3. font-weight: normal;
  4. }
  5. p, ul, li{
  6. font-family: $style-name-regular;
  7. font-weight: normal;
  8. font-size: $fontp;
  9. line-height: $fontp + 0.5rem;
  10. }
  11. em, blockquote > p{
  12. font-family: $style-name-slanted;
  13. font-weight: normal;
  14. }
  15. section{
  16. blockquote{
  17. font-size: 0.8rem;
  18. }
  19. }
  20. strong > em{
  21. font-family: $style-name-boldslanted;
  22. font-weight: normal;
  23. }
  24. h1{
  25. font-size: $fonth1;
  26. line-height: $fonth1 - 0.2rem;
  27. }
  28. h2{
  29. font-size: $fonth2;
  30. line-height: $fonth2 + 0.5rem;
  31. padding-top: 1.5rem;
  32. }
  33. h3{
  34. font-size: $fonth3;
  35. line-height: $fonth3 + 0.5rem;
  36. padding-top: 1.5rem;
  37. }
  38. li > a, ol > a{
  39. &:hover{
  40. font-family: $style-name-bold;
  41. font-weight: normal;
  42. }
  43. }
  44. .underline > a {
  45. font-family: $style-name-bold;
  46. font-weight: normal;
  47. text-decoration: underline;
  48. }
  49. .block{
  50. & > a {
  51. text-decoration: underline;
  52. font-family: $style-name-bold;
  53. font-weight: normal;
  54. }
  55. }