_buttons.scss 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332
  1. /* Buttons */
  2. .space-bottom{
  3. margin-bottom: 15px;
  4. }
  5. .btn {
  6. font-weight: $regular;
  7. font-size: 14px;
  8. letter-spacing: $letter-spacing;
  9. -moz-transition: 0.2s ease-in;
  10. -o-transition: 0.2s ease-in;
  11. -webkit-transition: 0.2s ease-in;
  12. -ms-transition: 0.2s ease-in;
  13. transition: 0.2s ease-in;
  14. border-radius: 0;
  15. padding: 9px 10px;
  16. }
  17. .btn span {
  18. margin-left: 10px;
  19. margin-right: 10px;
  20. }
  21. .btn:hover {
  22. background: transparent;
  23. cursor: pointer;
  24. }
  25. .btn-xl {
  26. font-size: 20px;
  27. padding: 9px 10px;
  28. }
  29. .btn-lg {
  30. font-size: 15px;
  31. padding: 10px 32px;
  32. }
  33. .btn-sm {
  34. font-size: 12px;
  35. padding: 7px 6px;
  36. }
  37. .btn-xs {
  38. font-size: 10px;
  39. padding: 5px 8px;
  40. }
  41. .btn-rounded {
  42. border-radius: 4px !important;
  43. }
  44. .btn-pill {
  45. border-radius: 50px !important;
  46. }
  47. .btn-link {
  48. color: $preset;
  49. }
  50. .btn-link:hover {
  51. color: $preset-hover;
  52. text-decoration: none;
  53. }
  54. .btn-link:focus {
  55. color: $preset-hover;
  56. text-decoration: none;
  57. }
  58. /* Default Button */
  59. .btn-common, .btn-common:active, .btn-common:focus {
  60. color: $preset;
  61. border: 2px solid $preset;
  62. background: transparent;
  63. }
  64. .btn-common:hover {
  65. color: $white;
  66. background: $preset;
  67. border: 2px solid $preset;
  68. }
  69. .btn-border{
  70. color: $preset;
  71. border: 2px solid $preset;
  72. background: transparent;
  73. }
  74. .btn-border:hover{
  75. color: $white;
  76. background: $preset;
  77. border: 2px solid $preset;
  78. }
  79. .btn-radius{
  80. border-radius: 30px;
  81. }
  82. .btn-filled{
  83. background: $preset;
  84. border: 2px solid $preset;
  85. color: $white;
  86. }
  87. .btn-filled:hover{
  88. background: $preset-hover;
  89. border: 2px solid $preset-hover;
  90. color: $white;
  91. }
  92. .btn-default-filled, .btn-default-filled:active, .btn-default-filled:focus {
  93. color: $white;
  94. background: $preset;
  95. border: 2px solid $preset;
  96. }
  97. .btn-default-filled:hover {
  98. color: $white;
  99. background: $preset-hover;
  100. border: 2px solid $preset-hover;
  101. }
  102. /* / End Default Button */
  103. /* Success Button */
  104. .btn-success, .btn-success:active, .btn-success:focus {
  105. color: $success;
  106. border: 2px solid $success;
  107. background: transparent;
  108. }
  109. .btn-success:hover {
  110. color: $white;
  111. background: $success;
  112. border: 2px solid $success;
  113. }
  114. .btn-success-filled, .btn-success-filled:active, .btn-success-filled:focus {
  115. color: $white;
  116. background: $success;
  117. border: 2px solid $success;
  118. }
  119. .btn-success-filled:hover {
  120. color: $white;
  121. background: $success-hover;
  122. border: 2px solid $success-hover;
  123. }
  124. /* End Success Button */
  125. /* Info Button */
  126. .btn-info, .btn-info:active, .btn-info:focus {
  127. color: $info;
  128. border: 2px solid $info;
  129. background: transparent;
  130. }
  131. .btn-info:hover {
  132. color: $white;
  133. background: $info;
  134. border: 2px solid $info;
  135. }
  136. .btn-info-filled, .btn-info-filled:active, .btn-info-filled:focus {
  137. color: $white;
  138. background: $info;
  139. border: 2px solid $info;
  140. }
  141. .btn-info-filled:hover {
  142. color: $white;
  143. background: $info-hover;
  144. border: 2px solid $info-hover;
  145. }
  146. /* End Info Button */
  147. /* Warning Button */
  148. .btn-warning, .btn-warning:active, .btn-warning:focus {
  149. color: $warning;
  150. border: 2px solid $warning;
  151. background: transparent;
  152. }
  153. .btn-warning:hover {
  154. color: $white;
  155. background: $warning;
  156. border: 2px solid $warning;
  157. }
  158. .btn-warning-filled, .btn-warning-filled:active, .btn-warning-filled:focus {
  159. color: $white;
  160. background: $warning;
  161. border: 2px solid $warning;
  162. }
  163. .btn-warning-filled:hover {
  164. color: $white;
  165. background: $warning-hover;
  166. border: 2px solid $warning-hover;
  167. }
  168. /* End Warning Button */
  169. /* Danger Button */
  170. .btn-danger, .btn-danger:active, .btn-danger:focus {
  171. color: $danger;
  172. border: 2px solid $danger;
  173. background: transparent;
  174. }
  175. .btn-danger:hover {
  176. color: $white;
  177. background: $danger;
  178. border: 2px solid $danger
  179. }
  180. .btn-danger-filled, .btn-danger-filled:active, .btn-danger-filled:focus {
  181. color: $white;
  182. background: $danger;
  183. border: 2px solid $danger;
  184. }
  185. .btn-danger-filled:hover {
  186. color: $white;
  187. background: $danger-hover;
  188. border: 2px solid $danger-hover;
  189. }
  190. /* End Danger Button */
  191. /* Paginations */
  192. .pagination{
  193. .btn {
  194. font-size: 14px;
  195. padding: 4px 10px;
  196. margin: 0 5px;
  197. }
  198. .btn-direction {
  199. font-size: 12px;
  200. padding: 5.5px 8px;
  201. }
  202. .btn-default {
  203. color: $preset;
  204. border: 1px solid $light-grey;
  205. background: transparent;
  206. }
  207. .btn-default:hover {
  208. color: $white;
  209. background: $preset;
  210. border: 1px solid $preset;
  211. }
  212. .btn-active {
  213. color: $white !important;
  214. background: $preset !important;
  215. border: 1px solid $preset !important;
  216. }
  217. .btn-default-filled {
  218. color: $preset;
  219. background: $light-grey;
  220. border: 1px solid $light-grey;
  221. }
  222. .btn-default-filled:hover {
  223. color: $white;
  224. background: $preset-hover;
  225. border: 1px solid $preset-hover;
  226. }
  227. }
  228. /* End Paginations */
  229. /* Standard Buttons */
  230. .button-title {
  231. border-bottom: 1px solid #ffffff;
  232. color: #ffffff;
  233. opacity: 0.2;
  234. text-align: left;
  235. }
  236. .button-title span {
  237. display: inline-block;
  238. font-size: 14px;
  239. margin-bottom: 20px;
  240. text-transform: uppercase;
  241. }
  242. .btn {
  243. font-size: 14px;
  244. padding: 11px 27px;
  245. }
  246. .btn:focus {
  247. outline: none;
  248. }
  249. .std-btn{
  250. margin-bottom: 20px;
  251. margin-right: 10px;
  252. }
  253. .icon-cloud-download {
  254. margin-right: 13px;
  255. font-size: 16px;
  256. vertical-align: -2px;
  257. }
  258. .btn-primary {
  259. margin-right: 20px;
  260. border: none;
  261. }
  262. .learn-more .btn {
  263. text-transform: uppercase;
  264. font-size: 12px;
  265. font-weight: 700;
  266. letter-spacing: 2.33px;
  267. }
  268. .read-more .btn {
  269. font-weight: 600;
  270. min-width: 125px;
  271. }
  272. /* Small Buttons */
  273. .btn-sm {
  274. font-size: 12px;
  275. min-width: 124px;
  276. padding: 6px 11px;
  277. }
  278. .learn-more .btn.btn-sm {
  279. font-size: 10px;
  280. }
  281. .read-more .btn.btn-sm {
  282. min-width: 124px;
  283. }
  284. /* large Buttons */
  285. .btn-lg {
  286. font-size: 17px;
  287. min-width: 171px;
  288. padding: 15px 11px;
  289. }
  290. .learn-more .btn-lg {
  291. font-size: 15px;
  292. }
  293. .learn-more2 .btn-lg {
  294. min-width: 171px;
  295. }
  296. /*Extra large Buttons */
  297. .btn-xlg {
  298. font-size: 20px;
  299. min-width: 208px;
  300. padding: 22px 27px;
  301. font-weight: 600;
  302. }
  303. .learn-more .btn-xlg {
  304. font-size: 18px;
  305. }
  306. .read-more .btn-xlg {
  307. min-width: 208px;
  308. font-size: 21px;
  309. }