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.

_helpers.sss 4.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. @import '../_variables.sss'
  2. @import '../theme.sss'
  3. .w
  4. &-full
  5. width: 100%
  6. &-half
  7. width: 50%
  8. /* Flex box */
  9. %flexy
  10. display: flex
  11. justify-content: center
  12. align-items: center
  13. .f
  14. &-row, &-col
  15. @extend %flexy
  16. &.start
  17. align-items: flex-start
  18. justify-content: flex-start
  19. &.end
  20. align-items: flex-end
  21. justify-content: flex-end
  22. &.between
  23. justify-content: space-between
  24. &.around
  25. justify-content: space-around
  26. &.even
  27. justify-content: space-evenly
  28. &.stretch
  29. align-content: stretch
  30. &.baseline
  31. align-items: baseline
  32. &.stretch
  33. justify-content: space-stretch
  34. &.center
  35. justify-content: center
  36. align-items: center
  37. &.wrap
  38. flex-wrap: wrap
  39. &-row
  40. flex-direction: row
  41. &-col
  42. flex-direction: column
  43. &-grow
  44. flex-grow: 1
  45. /* Borders */
  46. .b
  47. &-none
  48. border: none
  49. &-solid
  50. border: 1px solid $dark
  51. &-dot
  52. border: 1px dotted $dark
  53. &-solid, &-dot
  54. &.rounded
  55. border-radius: $ms-0
  56. &.invert
  57. border-color: $light
  58. button
  59. &:hover
  60. cursor: pointer
  61. transition: $transition
  62. &.b
  63. &-pill
  64. padding: $ms-1 $ms-0
  65. line-height: $ms-1
  66. text-transform: uppercase
  67. /* Backgrounds */
  68. .bg
  69. &-none
  70. background-color: none
  71. &-primary
  72. background-color: $primary
  73. &-dark
  74. background-color: $dark
  75. &-light
  76. background-color: $light
  77. &-cover
  78. background-size: cover
  79. &-contain
  80. background-size: contain
  81. &-repeat
  82. background-repeat: repeat
  83. /* Colors */
  84. .primary
  85. color: $primary
  86. .dark
  87. color: $dark
  88. .light
  89. color: $light
  90. /* Padding */
  91. .p
  92. &-none
  93. padding: none
  94. &-0
  95. padding: $ms-0
  96. &-1
  97. padding: $ms-1
  98. &-2
  99. padding: $ms-2
  100. &h
  101. &-0
  102. padding: 0 $ms-0
  103. &-1
  104. padding: 0 $ms-1
  105. &-2
  106. padding: 0 $ms-2
  107. &v
  108. &-0
  109. padding: $ms-0 0
  110. &-1
  111. padding: $ms-1 0
  112. &-2
  113. padding: $ms-2 0
  114. &t
  115. &-0
  116. padding-top: $ms-0
  117. &-1
  118. padding-top: $ms-1
  119. &-2
  120. padding-top: $ms-2
  121. &b
  122. &-0
  123. padding-bottom: $ms-0
  124. &-1
  125. padding-bottom: $ms-1
  126. &-2
  127. padding-bottom: $ms-2
  128. &l
  129. &-0
  130. padding-left: $ms-0
  131. &-1
  132. padding-left: $ms-1
  133. &-2
  134. padding-left: $ms-2
  135. &r
  136. &-0
  137. padding-right: $ms-0
  138. &-1
  139. padding-right: $ms-1
  140. &-2
  141. padding-right: $ms-2
  142. /* Margin */
  143. .m
  144. &-none
  145. margin: none
  146. &-0
  147. margin: $ms-0
  148. &-1
  149. margin: $ms-1
  150. &-2
  151. margin: $ms-2
  152. &h
  153. &-0
  154. margin: 0 $ms-0
  155. &-1
  156. margin: 0 $ms-1
  157. &-2
  158. margin: 0 $ms-2
  159. &v
  160. &-0
  161. margin: $ms-0 0
  162. &-1
  163. margin: $ms-1 0
  164. &-2
  165. margin: $ms-2 0
  166. &t
  167. &-0
  168. margin-top: $ms-0
  169. &-1
  170. margin-top: $ms-1
  171. &-2
  172. margin-top: $ms-2
  173. &b
  174. &-0
  175. margin-bottom: $ms-0
  176. &-1
  177. margin-bottom: $ms-1
  178. &-2
  179. margin-bottom: $ms-2
  180. &l
  181. &-0
  182. margin-left: $ms-0
  183. &-1
  184. margin-left: $ms-1
  185. &-2
  186. margin-left: $ms-2
  187. &r
  188. &-0
  189. margin-right: $ms-0
  190. &-1
  191. margin-right: $ms-1
  192. &-2
  193. margin-right: $ms-2
  194. .z
  195. &-bottom
  196. position: relative
  197. z-index: -1
  198. &-10
  199. position: relative
  200. z-index: 10
  201. &-20
  202. position: relative
  203. z-index: 20
  204. &-30
  205. position: relative
  206. z-index: 30
  207. &-40
  208. position: relative
  209. z-index: 40
  210. &-50
  211. position: relative
  212. z-index: 50
  213. &-top
  214. position: relative
  215. z-index: 10001