typography.css 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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 UTILITIES
  15. ***************************************************************/
  16. .text-weight300 {
  17. font-weight: 300 !important;
  18. }
  19. .text-weight400 {
  20. font-weight: 400 !important;
  21. }
  22. .text-weight500 {
  23. font-weight: 500 !important;
  24. }
  25. .text-weight600 {
  26. font-weight: 600 !important;
  27. }
  28. .text-weight700 {
  29. font-weight: 700 !important;
  30. }
  31. .text-weight800 {
  32. font-weight: 800 !important;
  33. }
  34. .text-weight900 {
  35. font-weight: 900 !important;
  36. }
  37. .text-left {
  38. text-align: left !important;
  39. }
  40. .text-center {
  41. text-align: center !important;
  42. }
  43. .text-right {
  44. text-align: right !important;
  45. }
  46. .text-uppercase {
  47. text-transform: uppercase !important;
  48. }
  49. .text-no-transform {
  50. text-transform: none !important;
  51. }
  52. .text-underline {
  53. text-decoration: underline !important;
  54. }
  55. .text-no-underline {
  56. text-decoration: none !important;
  57. }