Advertisement
tommyosheawebdesign

Font size chart

Apr 2nd, 2025
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. /* REM Font Size Chart for Headings with Line Heights */
  2. :root {
  3. /* Base font size - 16px is browser default */
  4. font-size: 16px;
  5. }
  6.  
  7. h1 {
  8. font-size: 2.5rem !important; /* 40px */
  9. line-height: 1.2 !important; /* 48px */
  10. margin-bottom: 1rem !important;
  11. }
  12.  
  13. h2 {
  14. font-size: 2rem !important; /* 32px */
  15. line-height: 1.25 !important; /* 40px */
  16. margin-bottom: 0.875rem !important;
  17. }
  18.  
  19. h3 {
  20. font-size: 1.75rem !important; /* 28px */
  21. line-height: 1.3 !important; /* 36.4px */
  22. margin-bottom: 0.75rem !important;
  23. }
  24.  
  25. h4 {
  26. font-size: 1.5rem !important; /* 24px */
  27. line-height: 1.35 !important; /* 32.4px */
  28. margin-bottom: 0.625rem !important;
  29. }
  30.  
  31. h5 {
  32. font-size: 1.25rem !important; /* 20px */
  33. line-height: 1.4 !important; /* 28px */
  34. margin-bottom: 0.5rem !important;
  35. }
  36.  
  37. h6 {
  38. font-size: 1rem !important; /* 16px */
  39. line-height: 1.5 !important; /* 24px */
  40. margin-bottom: 0.5rem !important;
  41. }
  42.  
  43. /* You can also add responsive adjustments */
  44. @media (max-width: 768px) {
  45. h1 {
  46. font-size: 2.25rem !important; /* 36px */
  47. line-height: 1.15 !important; /* 41.4px */
  48. }
  49.  
  50. h2 {
  51. font-size: 1.75rem !important; /* 28px */
  52. line-height: 1.2 !important; /* 33.6px */
  53. }
  54.  
  55. h3 {
  56. font-size: 1.5rem !important; /* 24px */
  57. line-height: 1.25 !important; /* 30px */
  58. }
  59.  
  60. h4 {
  61. font-size: 1.25rem !important; /* 20px */
  62. line-height: 1.3 !important; /* 26px */
  63. }
  64.  
  65. h5 {
  66. font-size: 1.125rem !important; /* 18px */
  67. line-height: 1.4 !important; /* 25.2px */
  68. }
  69.  
  70. h6 {
  71. font-size: 1rem !important; /* 16px */
  72. line-height: 1.5 !important; /* 24px */
  73. }
  74. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement