typography.css 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. .textleft {
  2. text-align: left;
  3. }
  4. .textcentre {
  5. text-align: center;
  6. }
  7. .textright {
  8. text-align: right;
  9. }
  10. p {
  11. margin: 0 0 20px 0;
  12. }
  13. strong, b {
  14. font-weight: 600;
  15. }
  16. em, i {
  17. font-style: italic;
  18. }
  19. h1 {
  20. margin: 0 0 10px 0;
  21. font-weight: 700;
  22. font-family: "Montserrat";
  23. text-transform: uppercase;
  24. font-size: 46px;
  25. line-height: 42px;
  26. letter-spacing: -1px;
  27. color: #111;
  28. }
  29. h2 {
  30. margin: 30px 0 15px 0;
  31. font-weight: 350;
  32. font-family: "Montserrat";
  33. text-transform: uppercase;
  34. font-size: 23px;
  35. line-height: 21px;
  36. letter-spacing: -0.5px;
  37. color: #111;
  38. }
  39. h3 {
  40. margin: 26px 0 13px 0;
  41. font-weight: 200;
  42. font-family: "Montserrat";
  43. font-size: 16px;
  44. line-height: 16px;
  45. letter-spacing: -0.4px;
  46. color: #111;
  47. }
  48. h4, h5, h6 {
  49. margin: 20px 0 10px 0;
  50. font-weight: 100;
  51. font-family: "Montserrat";
  52. font-size: 12px;
  53. line-height: 12px;
  54. color: #111;
  55. }
  56. ul {
  57. margin: 0 0 20px 35px;
  58. list-style-type: square;
  59. }
  60. ul li {
  61. padding: 0 0 0 2px;
  62. }
  63. ul ul {
  64. margin: 0 0 0 25px;
  65. }
  66. ol {
  67. margin: 0 0 20px 35px;
  68. list-style-type: decimal;
  69. }
  70. ol li {
  71. padding: 0 0 0 2px;
  72. }
  73. ol ol {
  74. margin: 0 0 0 25px;
  75. }
  76. hr {
  77. clear: both;
  78. float: left;
  79. width: 100%;
  80. padding: 0;
  81. margin: 30px 0 40px 0;
  82. border: none;
  83. border-top: 4px solid #A71E2E;
  84. text-align: center;
  85. }
  86. blockquote {
  87. background: #EEE;
  88. margin: 0 0 5px 0 !important;
  89. color: #555;
  90. border-left: 5px solid #A71E2E;
  91. padding: 15px;
  92. font-style: italic;
  93. }
  94. blockquote p {
  95. margin: 0;
  96. }
  97. blockquote p.author {
  98. text-align: right;
  99. font-size: 14px;
  100. letter-spacing: 2px;
  101. color: #999;
  102. }
  103. @media screen and (max-width: 768px) {
  104. .textcentre {
  105. text-align: left;
  106. }
  107. .textright {
  108. text-align: left;
  109. }
  110. }