Guest User

Untitled

a guest
Jan 24th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. //#region fonts
  2. .font-normal {
  3. font-weight: 400;
  4. }
  5.  
  6. .font-bolder {
  7. font-weight: 500;
  8. }
  9.  
  10. .font-lighter {
  11. font-weight: lighter;
  12. }
  13.  
  14. body .font-smaller {
  15. font-size: smaller;
  16. }
  17.  
  18. .font-bigger {
  19. font-size: larger;
  20. }
  21.  
  22. .font-smaller {
  23. font-size: smaller;
  24. }
  25.  
  26. .to-upper {
  27. text-transform: uppercase;
  28. }
  29.  
  30. .to-lower {
  31. text-transform: lowercase;
  32. }
  33.  
  34.  
  35. .h1,
  36. h1 {
  37. font-size: 26px;
  38.  
  39. @include breakpoint(medium up) {
  40. font-size: 48px;
  41. }
  42. }
  43.  
  44. .h2,
  45. h2 {
  46. font-size: 22px;
  47. line-height: 1.6;
  48.  
  49. @include breakpoint(medium up) {
  50. font-size: 40px;
  51. }
  52. }
  53.  
  54. .h3,
  55. h3 {
  56. font-size: 21px;
  57.  
  58. @include breakpoint(medium up) {
  59. font-size: 31px;
  60. }
  61. }
  62.  
  63. .h4,
  64. h4 {
  65. font-size: 20px;
  66.  
  67. @include breakpoint (medium up) {
  68. font-size: 25px;
  69. }
  70. }
  71.  
  72. .h5,
  73. h5 {
  74. font-size: 19px;
  75.  
  76. @include breakpoint (medium up) {
  77. font-size: 22px;
  78. }
  79. }
  80.  
  81. .h6,
  82. h6 {
  83. font-size: 16px;
  84.  
  85. @include breakpoint (medium up) {
  86. font-size: 18px;
  87. }
  88. }
  89.  
  90.  
  91.  
  92. .font-70 {
  93. font-size: rem-calc(70px, 10);
  94. line-height: 1;
  95. }
  96.  
  97. .font-16 {
  98. font-size: rem-calc(16, 10);
  99. }
  100.  
  101. .font-15 {
  102. font-size: rem-calc(15px, 10px);
  103. }
  104.  
  105. .font-13 {
  106. font-size: rem-calc(13px, 10px);
  107. }
  108.  
  109. .font-12 {
  110. font-size: rem-calc(12px, 10px);
  111. }
  112.  
  113. .font-11 {
  114. font-size: rem-calc(11px, 10px);
  115. }
Add Comment
Please, Sign In to add comment