other.sass 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187
  1. .delete
  2. @extend .unselectable
  3. -moz-appearance: none
  4. -webkit-appearance: none
  5. background-color: rgba($black, 0.2)
  6. border: none
  7. border-radius: 290486px
  8. cursor: pointer
  9. display: inline-block
  10. height: 24px
  11. position: relative
  12. vertical-align: top
  13. width: 24px
  14. &:before,
  15. &:after
  16. background-color: $white
  17. content: ""
  18. display: block
  19. height: 2px
  20. left: 50%
  21. margin-left: -25%
  22. margin-top: -1px
  23. position: absolute
  24. top: 50%
  25. width: 50%
  26. &:before
  27. transform: rotate(45deg)
  28. &:after
  29. transform: rotate(-45deg)
  30. &:hover
  31. background-color: rgba($black, 0.5)
  32. // Sizes
  33. &.is-small
  34. height: 16px
  35. width: 16px
  36. &.is-medium
  37. height: 32px
  38. width: 32px
  39. &.is-large
  40. height: 40px
  41. width: 40px
  42. .icon
  43. +fa(21px, 24px)
  44. .fa
  45. font-size: inherit
  46. line-height: inherit
  47. // Sizes
  48. &.is-small
  49. +fa(14px, 16px)
  50. &.is-medium
  51. +fa(28px, 32px)
  52. &.is-large
  53. +fa(42px, 48px)
  54. .hamburger
  55. cursor: pointer
  56. display: block
  57. height: $nav-height
  58. position: relative
  59. width: $nav-height
  60. span
  61. background-color: $text
  62. display: block
  63. height: 1px
  64. left: 50%
  65. margin-left: -7px
  66. position: absolute
  67. top: 50%
  68. transition: none $speed $easing
  69. transition-property: background, left, opacity, transform
  70. width: 15px
  71. &:nth-child(1)
  72. margin-top: -6px
  73. &:nth-child(2)
  74. margin-top: -1px
  75. &:nth-child(3)
  76. margin-top: 4px
  77. &:hover
  78. background-color: $background
  79. // Modifers
  80. &.is-active
  81. span
  82. background-color: $link
  83. &:nth-child(1)
  84. margin-left: -5px
  85. transform: rotate(45deg)
  86. transform-origin: left top
  87. &:nth-child(2)
  88. opacity: 0
  89. &:nth-child(3)
  90. margin-left: -5px
  91. transform: rotate(-45deg)
  92. transform-origin: left bottom
  93. .heading
  94. display: block
  95. font-size: 11px
  96. letter-spacing: 1px
  97. margin-bottom: 5px
  98. text-transform: uppercase
  99. .highlight
  100. @extend .block
  101. font-size: 12px
  102. font-weight: normal
  103. max-width: 100%
  104. overflow: hidden
  105. padding: 0
  106. pre
  107. overflow: auto
  108. max-width: 100%
  109. .loader
  110. animation: spin-around 500ms infinite linear
  111. border: 2px solid $border
  112. border-radius: 290486px
  113. border-right-color: transparent
  114. border-top-color: transparent
  115. content: ""
  116. display: block
  117. height: 16px
  118. position: relative
  119. width: 16px
  120. .number
  121. background-color: $background
  122. border-radius: 290486px
  123. display: inline-block
  124. font-size: $size-medium
  125. vertical-align: top
  126. .tag
  127. align-items: center
  128. background-color: $background
  129. border-radius: 290486px
  130. color: $text
  131. display: inline-flex
  132. font-size: 12px
  133. height: 24px
  134. justify-content: center
  135. line-height: 16px
  136. padding-left: 10px
  137. padding-right: 10px
  138. vertical-align: top
  139. white-space: nowrap
  140. .delete
  141. margin-left: 4px
  142. margin-right: -6px
  143. &:not(.is-large)
  144. .delete
  145. @extend .delete.is-small
  146. // Colors
  147. @each $name, $pair in $colors
  148. $color: nth($pair, 1)
  149. $color-invert: nth($pair, 2)
  150. &.is-#{$name}
  151. background-color: $color
  152. color: $color-invert
  153. // Sizes
  154. &.is-small
  155. font-size: $size-small
  156. height: 20px
  157. padding-left: 8px
  158. padding-right: 8px
  159. &.is-medium
  160. font-size: $size-normal
  161. height: 32px
  162. padding-left: 14px
  163. padding-right: 14px
  164. &.is-large
  165. font-size: $size-5
  166. height: 40px
  167. line-height: 24px
  168. padding-left: 18px
  169. padding-right: 18px
  170. .delete
  171. margin-left: 4px
  172. margin-right: -8px
  173. .unselectable
  174. -webkit-touch-callout: none
  175. -webkit-user-select: none
  176. -moz-user-select: none
  177. -ms-user-select: none
  178. user-select: none