_typography.scss 563 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. html, body{
  2. font-family: $Regular;
  3. }
  4. h1{
  5. text-transform: uppercase;
  6. }
  7. h2{
  8. font-size: 2rem;
  9. }
  10. h5{
  11. font-weight: normal;
  12. font-size: 1.2rem;
  13. }
  14. .card-title{
  15. font-family: $Bold;
  16. font-size: 1.2rem;
  17. }
  18. p{
  19. strong{
  20. font-family: $Bold;
  21. font-weight: normal;
  22. }
  23. }
  24. .content{
  25. p:nth-of-type(1){
  26. font-size: 1.2rem;
  27. }
  28. }
  29. .sidebar{
  30. .side-newsletter{
  31. label{
  32. font-size: 1.5rem;
  33. font-weight: normal;
  34. font-family: $Bold;
  35. }
  36. }
  37. }
  38. .cat{
  39. width: 100%;
  40. a{
  41. font-family: $Bold;
  42. }
  43. }
  44. .dt{
  45. font-family: $Bold;
  46. }