You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

82 lines
1.0 KiB

  1. // Font size
  2. @mixin fs-1 {
  3. font-size: 9px !important;
  4. @include mq(sm) {
  5. font-size: 10px !important;
  6. }
  7. }
  8. @mixin fs-2 {
  9. font-size: 11px !important;
  10. @include mq(sm) {
  11. font-size: 12px !important;
  12. }
  13. }
  14. @mixin fs-3 {
  15. font-size: 12px !important;
  16. @include mq(sm) {
  17. font-size: 14px !important;
  18. }
  19. }
  20. @mixin fs-4 {
  21. font-size: 14px !important;
  22. @include mq(sm) {
  23. font-size: 16px !important;
  24. }
  25. }
  26. @mixin fs-5 {
  27. font-size: 16px !important;
  28. @include mq(sm) {
  29. font-size: 18px !important;
  30. }
  31. }
  32. @mixin fs-6 {
  33. font-size: 18px !important;
  34. @include mq(sm) {
  35. font-size: 24px !important;
  36. }
  37. }
  38. @mixin fs-7 {
  39. font-size: 24px !important;
  40. @include mq(sm) {
  41. font-size: 32px !important;
  42. }
  43. }
  44. @mixin fs-8 {
  45. font-size: 32px !important;
  46. @include mq(sm) {
  47. font-size: 36px !important;
  48. }
  49. }
  50. @mixin fs-9 {
  51. font-size: 36px !important;
  52. @include mq(sm) {
  53. font-size: 42px !important;
  54. }
  55. }
  56. @mixin fs-10 {
  57. font-size: 42px !important;
  58. @include mq(sm) {
  59. font-size: 48px !important;
  60. }
  61. }