typography.css 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. /*
  2. * Copyright 2021-2024 Avaiga Private Limited
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
  5. * the License. You may obtain a copy of the License at
  6. *
  7. * http://www.apache.org/licenses/LICENSE-2.0
  8. *
  9. * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
  10. * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
  11. * specific language governing permissions and limitations under the License.
  12. */
  13. /**************************************************************
  14. TYPOGRAPHY STYLES
  15. ***************************************************************/
  16. h1,
  17. .h1,
  18. h2,
  19. .h2,
  20. h3,
  21. .h3,
  22. h4,
  23. .h4,
  24. h5,
  25. .h5,
  26. h6,
  27. .h6 {
  28. display: block;
  29. line-height: 1.2;
  30. font-weight: var(--font-weight-heading);
  31. }
  32. h1,
  33. .h1 {
  34. font-size: var(--font-size-h1);
  35. }
  36. h2,
  37. .h2 {
  38. font-size: var(--font-size-h2);
  39. }
  40. h3,
  41. .h3 {
  42. font-size: var(--font-size-h3);
  43. }
  44. h4,
  45. .h4 {
  46. font-size: var(--font-size-h4);
  47. }
  48. h5,
  49. .h5 {
  50. font-size: var(--font-size-h5);
  51. }
  52. h6,
  53. .h6 {
  54. font-size: var(--font-size-h6);
  55. }
  56. .text-body {
  57. font-size: var(--font-size-body);
  58. }
  59. .text-small {
  60. font-size: var(--font-size-small);
  61. }
  62. .text-caption {
  63. font-size: var(--font-size-caption);
  64. }