Advertisement
Guest User

Untitled

a guest
Jan 27th, 2020
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.55 KB | None | 0 0
  1. @import './_vars';
  2. @import './_mixins';
  3.  
  4. .required {
  5. font-size: 11px;
  6. color: $red-200;
  7. margin-left: 5px;
  8. font-weight: $medium;
  9. }
  10.  
  11. .relative {
  12. position: relative;
  13. }
  14.  
  15. .absolute {
  16. position: absolute;
  17. }
  18. .fixed { position: fixed }
  19.  
  20. .sticky-below-header {
  21. // use with a relative parent
  22. // will start scrolling with the content
  23. position: sticky;
  24.  
  25. // needs full width usually
  26. width: auto;
  27.  
  28. // just below the header
  29. top: 50px;
  30.  
  31. // on top of simple content
  32. z-index: 1;
  33. }
  34.  
  35. .absolute-centered {
  36. position: absolute;
  37. top: 50%;
  38. left: 50%;
  39. transform: translate(-50%, -50%);
  40. }
  41.  
  42. .z-push-progress-controller {
  43. z-index: $z-push-progress-controller;
  44. }
  45.  
  46. .-bottom-25px { bottom: -25px; }
  47.  
  48. .break-all {
  49. word-break: break-all;
  50. }
  51. .break-word { overflow-wrap: break-word }
  52.  
  53. .pre-line {
  54. white-space: pre-line;
  55. }
  56. .whitespace-normal { white-space: normal !important }
  57.  
  58. mark {
  59. background: $yellow-200;
  60. color: $black;
  61. }
  62.  
  63. .show-more-link {
  64. display: block;
  65. padding: 10px;
  66. text-align: center;
  67. }
  68.  
  69. .hover\:table-row-blue {
  70. transition: background 100ms ease-out,
  71. color 100ms ease-out;
  72. }
  73. .hover\:table-row-blue:hover {
  74. background-color: $blue-10;
  75. color: $blue-50;
  76. cursor: pointer;
  77. > :first-child {
  78. border-top-left-radius: 4px;
  79. border-bottom-left-radius: 4px;
  80. }
  81. > :last-child {
  82. border-top-right-radius: 4px;
  83. border-bottom-right-radius: 4px;
  84. }
  85. }
  86. .hover\:table-row-blue.selected {
  87. background-color: $blue-10;
  88. color: $blue-50;
  89. }
  90.  
  91. .table-fixed { table-layout: fixed; }
  92. .border-spacing-0 { border-spacing: 0; }
  93. .table-row-bordered:not(:last-child) > .td,
  94. .border-b-CBDDEC {
  95. border-bottom: 1px solid #CBDDEC;
  96. }
  97. .border-b-grey-20 {
  98. border-bottom: thin solid $grey-20;
  99. }
  100. .table-row-bordered-grey-10:not(:last-child) > .td {
  101. border-bottom: 1px solid $grey-10;
  102. }
  103. .truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  104. .overflow-hidden { overflow: hidden }
  105.  
  106. // display
  107. .hidden { display: none !important }
  108. .invisible { visibility: hidden; }
  109. .opacity-0 { opacity: 0 }
  110. .opacity-50 { opacity: .5 }
  111. .opacity-100 { opacity: 1 }
  112.  
  113. .inline-block { display: inline-block; }
  114.  
  115. .block { display: block; }
  116. .inline-block { display: inline-block; }
  117. .table-cell { display: table-cell; }
  118.  
  119. // flex
  120. .flex { display: flex }
  121. .inline-flex { display: inline-flex }
  122. .flex-wrap { flex-wrap: wrap }
  123. .flex-1 { flex: 1 }
  124. .flex-col { flex-direction: column; }
  125. .items-start { align-items: start }
  126. .items-center { align-items: center }
  127. .items-end { align-items: end }
  128. .justify-between { justify-content: space-between }
  129. .justify-center { justify-content: center }
  130. .justify-end { justify-content: flex-end }
  131.  
  132. .valign-middle {
  133. vertical-align: middle !important;
  134. }
  135. .valign-top {
  136. vertical-align: top;
  137. }
  138. .valign-0 {
  139. vertical-align: 0 !important;
  140. }
  141.  
  142. // position
  143. .relative { position: relative; }
  144. .absolute { position: absolute; }
  145.  
  146. .relative-center {
  147. position: relative;
  148. top: 50%;
  149. transform: translateY(-50%);
  150. }
  151.  
  152. .absolute-center-y {
  153. position: absolute;
  154. top: 50%;
  155. transform: translateY(-50%);
  156. }
  157.  
  158. .translateX-50p { transform: translateX(-50%) }
  159.  
  160. .pin-bottom {
  161. bottom: 0;
  162. left: 0;
  163. right: 0;
  164. top: auto;
  165. }
  166.  
  167. .-pin-b-20px { bottom: -20px; }
  168. .pin-b { bottom: 0; }
  169. .pin-l { left: 0; }
  170. .pin-r { right: 0; }
  171. .pin-t { top: 0 }
  172. .before_pin-t-2px:before { top: 2px }
  173.  
  174. // typography
  175. .font-monospace { font-family: monospace }
  176. .leading-none { line-height: 1; }
  177. .leading-tight { line-height: 1.25; }
  178. .leading-normal { line-height: 1.5; }
  179. .leading-20px { line-height: 20px; }
  180. .leading-24px { line-height: 24px; }
  181. .leading-25px { line-height: 25px; }
  182. .leading-30px { line-height: 30px; }
  183. .leading-34px { line-height: 34px; }
  184. .text-left { text-align: left }
  185. .text-center { text-align: center; }
  186. .text-right { text-align: right; }
  187. .text-line-through { text-decoration: line-through; }
  188. .text-underline { text-decoration: underline; }
  189. .text-deco-none { text-decoration: none; }
  190. .bold, .font-bold { font-weight: $bold; }
  191. .italic { font-style: italic }
  192. .font-medium { font-weight: $medium; }
  193. .font-regular { font-weight: $regular; }
  194. .nowrap { white-space: nowrap; }
  195. .uppercase { text-transform: uppercase }
  196. .letter-spacing-1px { letter-spacing: 1px }
  197.  
  198. // box model
  199. .m-0 { margin: 0 !important; }
  200. .m-20px { margin: 20px; }
  201. .m-30px { margin: 30px; }
  202.  
  203. .mb-0 { margin-bottom: 0 !important; }
  204. .mb-2px { margin-bottom: 2px !important; }
  205. .mb-3px { margin-bottom: 3px; }
  206. .mb-5px { margin-bottom: 5px; }
  207. .mb-10px { margin-bottom: 10px !important; }
  208. .mb-14px { margin-bottom: 14px !important; }
  209. .mb-15px { margin-bottom: 15px; }
  210. .mb-20px { margin-bottom: 20px !important; }
  211. .mb-30px { margin-bottom: 30px !important; }
  212. .mb-40px { margin-bottom: 40px !important; }
  213. .mb-45px { margin-bottom: 45px !important; }
  214. .mb-50px { margin-bottom: 50px; }
  215. .mb-80px { margin-bottom: 80px }
  216. .mb-100px { margin-bottom: 100px }
  217.  
  218. .mt-0 { margin-top: 0 !important; }
  219. .mt-1px { margin-top: 1px }
  220. .mt-3px { margin-top: 3px !important; }
  221. .mt-5px { margin-top: 5px !important; }
  222. .mt-10px { margin-top: 10px !important; }
  223. .mt-15px { margin-top: 15px; }
  224. .mt-20px { margin-top: 20px; }
  225. .mt-21px { margin-top: 21px; }
  226. .mt-25px { margin-top: 25px; }
  227. .mt-30px { margin-top: 30px !important; }
  228. .mt-35px { margin-top: 35px !important; }
  229. .mt-40px { margin-top: 40px !important; }
  230. .mt-50px { margin-top: 50px; }
  231. .mt-62 { margin-top: 62px; }
  232. .mt-150px { margin-top: 150px; }
  233. .mt-1em { margin-top: 1em !important; }
  234.  
  235. .-ml-1px { margin-left: -1px !important; }
  236. .-ml-2px { margin-left: -2px; }
  237. .-ml-4px { margin-left: -4px; }
  238. .-ml-10px { margin-left: -10px; }
  239. .ml-0 { margin-left: 0 !important }
  240. .ml-5px { margin-left: 5px; }
  241. .ml-10px { margin-left: 10px; }
  242. .ml-15px { margin-left: 15px; }
  243. .ml-20px { margin-left: 20px; }
  244. .ml-25px { margin-left: 25px; }
  245. .ml-30px { margin-left: 30px; }
  246. .ml-35px { margin-left: 35px; }
  247. .ml-45px { margin-left: 45px; }
  248. .ml-120px { margin-left: 120px; }
  249.  
  250. .mr-0 { margin-right: 0 !important; }
  251. .mr-5px { margin-right: 5px; }
  252. .mr-10px { margin-right: 10px; }
  253. .mr-15px { margin-right: 15px; }
  254. .mr-20px { margin-right: 20px; }
  255. .mr-30px { margin-right: 30px; }
  256. .mr-40px { margin-right: 40px; }
  257. .mr-60px { margin-right: 60px !important; }
  258. .mr-100px { margin-right: 100px }
  259.  
  260. .last_mr-0:last-child { margin-right: 0 !important; }
  261.  
  262. .-m-10px { margin: -10px; }
  263. .-m-20px { margin: -20px; }
  264. .-m-50px { margin: -50px; }
  265. .-mx-10px{margin-left: -10px; margin-right:-10px;}
  266. .-mx-15px{margin-left: -15px; margin-right:-15px;}
  267. .-mx-20px{margin-left: -20px; margin-right:-20px;}
  268. .-mx-40px{margin-left: -40px; margin-right:-40px;}
  269. .-mx-50px{margin-left: -50px; margin-right:-50px;}
  270. .-my-10px{ margin-top: -10px; margin-bottom:-10px; }
  271. .-mt-2px { margin-top: -2px !important }
  272. .-mt-4px { margin-top: -4px !important; }
  273. .-mt-5px { margin-top: -5px !important; }
  274. .-mt-10px { margin-top: -10px; }
  275. .-mt-12px { margin-top: -12px; }
  276. .-mr-12px { margin-right: -12px; }
  277. .-mr-80px { margin-right: -80px; }
  278. .-mb-10px { margin-bottom: -10px }
  279. .-mb-20px { margin-bottom: -20px }
  280. .-mb-40px { margin-bottom: -40px }
  281. .-mb-50px { margin-bottom: -50px }
  282.  
  283. .mx-auto {
  284. margin-left: auto;
  285. margin-right: auto;
  286. }
  287. .mx-10px { margin-left: 10px; margin-right: 10px }
  288. .mx-20px { margin-left: 20px; margin-right: 20px }
  289. .mx-40px { margin-left: 40px; margin-right: 40px }
  290.  
  291. .my-0 { margin-top: 0; margin-bottom: 0; }
  292. .my-10px { margin-top: 10px; margin-bottom: 10px; }
  293. .my-16px { margin-top: 16px; margin-bottom: 16px; }
  294. .my-20px { margin-top: 20px; margin-bottom: 20px; }
  295.  
  296. .p-0 { padding: 0 !important; }
  297. .p-4px { padding: 4px !important; }
  298. .p-10px { padding: 10px; }
  299. .p-14px { padding: 14px !important; }
  300. .p-15px { padding: 15px; }
  301. .p-16px { padding: 16px; }
  302. .p-19px { padding: 19px !important; }
  303. .p-20px { padding: 20px; }
  304. .p-24px { padding: 24px; }
  305. .p-30px { padding: 30px; }
  306. .p-40px { padding: 40px; }
  307. .p-50px { padding: 50px; }
  308. .pt-5px { padding-top: 5px; }
  309. .pt-10px { padding-top: 10px; }
  310. .pt-20px { padding-top: 20px; }
  311. .pl-0px { padding-left: 0px; }
  312. .pl-5px { padding-left: 5px; }
  313. .pl-10px { padding-left: 10px }
  314. .pl-18px { padding-left: 18px }
  315. .pl-20px { padding-left: 20px !important; }
  316. .pl-30px { padding-left: 30px; }
  317. .pl-40px { padding-left: 40px; }
  318. .pl-60px { padding-left: 60px; }
  319. .pr-0 { padding-right: 0 !important; }
  320. .pr-5px { padding-right: 5px; }
  321. .pr-12px { padding-right: 12px; }
  322. .pr-20px { padding-right: 20px; }
  323. .pr-30px { padding-right: 30px !important; }
  324. .pr-40px { padding-right: 40px; }
  325. .px-0 { padding-left: 0px !important; padding-right: 0px !important; }
  326. .pb-0 { padding-bottom: 0 !important; }
  327. .pb-5px { padding-bottom: 5px !important; }
  328. .pb-10px { padding-bottom: 10px; }
  329. .pb-15px { padding-bottom: 15px; }
  330. .pb-20px { padding-bottom: 20px; }
  331. .px-5px { padding-left: 5px; padding-right: 5px; }
  332. .px-10px { padding-left: 10px; padding-right: 10px; }
  333. .px-12px { padding-left: 12px; padding-right: 12px; }
  334. .px-15px { padding-left: 15px; padding-right: 15px; }
  335. .px-17px { padding-left: 17px !important; padding-right: 17px !important; }
  336. .px-20px { padding-left: 20px; padding-right: 20px; }
  337. .px-30px { padding-left: 30px; padding-right: 30px; }
  338. .px-40px { padding-left: 40px; padding-right: 40px; }
  339. .px-50px { padding-left: 50px; padding-right: 50px; }
  340.  
  341. .py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }
  342. .py-3px { padding-top: 3px; padding-bottom: 3px; }
  343. .py-5px { padding-top: 5px; padding-bottom: 5px; }
  344. .py-8px { padding-top: 8px; padding-bottom: 8px; }
  345. .py-10px { padding-top: 10px; padding-bottom: 10px; }
  346. .py-12px { padding-top: 12px; padding-bottom: 12px; }
  347. .py-14px { padding-top: 14px !important; padding-bottom: 14px !important; }
  348. .py-15px { padding-top: 15px !important; padding-bottom: 15px !important; }
  349. .py-16px { padding-top: 16px; padding-bottom: 16px; }
  350. .py-20px { padding-top: 20px; padding-bottom: 20px; }
  351. .py-24px { padding-top: 24px; padding-bottom: 24px; }
  352. .py-30px { padding-top: 30px !important; padding-bottom: 30px !important; }
  353. .py-40px { padding-top: 40px; padding-bottom: 40px; }
  354.  
  355. .last_pb-0:last-child { padding-bottom: 0 }
  356.  
  357. .w-1\/2 { width: 50%; }
  358. .w-1\/3 { width: 33.33333%; }
  359. .w-2\/3 { width: 66.66667%; }
  360. .w-1\/4 { width: 25%; }
  361. .w-3\/4 { width: 75%; }
  362. .w-1\/5 { width: 20%; }
  363. .w-2\/5 { width: 40%; }
  364. .w-3\/5 { width: 60%; }
  365. .w-4\/5 { width: 80%; }
  366. .w-1\/6 { width: 16.66667%; }
  367. .w-5\/6 { width: 83.33333%; }
  368. .w-37_5p { width: 37.5% !important }
  369. .w-full { width: 100%; }
  370. .w-8px { width: 8px !important; }
  371. .w-20px { width: 20px; }
  372. .w-34px { width: 34px; }
  373. .w-36px { width: 36px; }
  374. .w-50px { width: 50px; }
  375. .w-70px { width: 70px; }
  376. .w-100px { width: 100px; }
  377. .w-120px { width: 120px; }
  378. .w-150px { width: 150px; }
  379. .w-170px { width: 170px; }
  380. .w-200px { width: 200px; }
  381. .w-320px { width: 320px; }
  382. .w-480px { width: 480px !important; }
  383. .w-calc-full-30px { width: calc(100% - 30px) }
  384. .w-calc-3\/4-150px { width: calc(75% - 150px) }
  385.  
  386. .min-w-300px { min-width: 300px; }
  387.  
  388. .max-w-full { max-width: 100% }
  389. .max-w-200px { max-width: 200px; }
  390. .max-w-600px { max-width: 600px; }
  391.  
  392. .h-full-modal { height: calc(100vh - 120px); }
  393. .max-h-100px { max-height: 100px }
  394. .max-h-300px { max-height: 300px }
  395.  
  396. .h-250px { height: 250px; }
  397. .h-500px { height: 500px; }
  398.  
  399. .h-auto { height: auto !important; }
  400. .h-8px { height: 8px !important; }
  401. .h-11px { height: 11px; }
  402. .h-16px { height: 16px; }
  403. .h-20px { height: 20px; }
  404. .h-30px { height: 30px; }
  405. .h-34px { height: 34px; }
  406. .h-38px { height: 38px; }
  407. .h-50px { height: 50px; }
  408. .h-70px { height: 70px; }
  409. .h-150px { height: 150px; }
  410.  
  411. .min-h-100px { min-height: 100px; }
  412. .min-h-260px { min-height: 260px!important; }
  413.  
  414. // floats
  415. .float-right { float: right !important; }
  416. .float-left { float: left; }
  417. .float-none { float: none; }
  418. .clearfix:after {
  419. content: "";
  420. display: table;
  421. clear: both;
  422. }
  423.  
  424. // transitions
  425. .transition-opacity {
  426. transition: 150ms opacity ease-in-out;
  427. }
  428. .overlay-gray {
  429. position: relative;
  430. &:after {
  431. content: " ";
  432. display: block;
  433. position: absolute;
  434. top: 0;
  435. left: 0;
  436. width: 100%;
  437. height: 100%;
  438. background: rgba(0, 0, 0, .2);
  439. }
  440. }
  441.  
  442. .select-none {
  443. -webkit-user-select: none;
  444. -moz-user-select: none;
  445. -ms-user-select: none;
  446. user-select: none;
  447. }
  448.  
  449. .pointer-events-none { pointer-events: none !important; }
  450. .pointer-events-auto { pointer-events: auto }
  451.  
  452. // background colors
  453. .bg-orange { background-color: $orange-500; }
  454. .bg-warning { background-color: #FFFBEA; }
  455. .bg-fffeff { background-color: #fffeff }
  456. .bg-tooltip-darker { background-color: darken(#233447, 5%) }
  457.  
  458. // put these in the correct order please - only from _vars.scss
  459. .bg-grey-10 { background-color: $grey-10 }
  460. .bg-grey-20 { background-color: $grey-20 }
  461. .bg-grey-50 { background-color: $grey-50 }
  462. .bg-grey-80 { background-color: $grey-80 }
  463. .bg-yellow-10 { background-color: $yellow-10 }
  464. .bg-blue-10 { background-color: $blue-10 }
  465. .bg-blue-20 { background-color: $blue-20 }
  466. .bg-red-10 { background-color: $red-10 }
  467.  
  468. // text colors
  469. .text-info { color: #829AB1; }
  470. .text-white { color: white; }
  471. .text-black { color: $black; }
  472. .text-grey-500 { color: $gray-500; }
  473. .text-grey-darkest { color: $gray-700; }
  474. .text-blue-200 { color: $blue-200 }
  475. .text-blue-500 { color: $blue-500 }
  476. .text-red { color: $red-200 !important; }
  477. .text-deep-red { color: #E12D39 !important; }
  478. .text-orange { color: $orange-500; }
  479. .text-warning { color: #B44D12; }
  480. .text-darkblue { color: #2E405B }
  481. .text-green { color: $green-200 }
  482.  
  483. // put these in the correct order please - only from _vars.scss
  484. .text-grey-10 { color: $grey-10 }
  485. .text-grey-20 { color: $grey-20 !important }
  486. .text-grey-40 { color: $grey-40 }
  487. .text-grey-50 { color: $grey-50 }
  488. .text-grey-60 { color: $grey-60 }
  489. .text-grey-70 { color: $grey-70 }
  490. .text-grey-80 { color: $grey-80 }
  491. .text-grey-90 { color: $grey-90 !important }
  492.  
  493. .text-blue-40 { color: $blue-40 !important }
  494. .text-blue-50 { color: $blue-50 !important }
  495. .text-yellow-40 { color: $yellow-40 }
  496. .text-yellow-60 { color: $yellow-60 }
  497. .text-yellow-70 { color: $yellow-70 }
  498. .text-yellow-90 { color: $yellow-90 !important }
  499. .text-green-50 { color: $green-50 }
  500. .text-green-90 { color: $green-90 }
  501. .text-red-50 { color: $red-50 }
  502. .text-red-100 { color: $red-100 }
  503.  
  504. .text-1em { font-size: 1em !important; }
  505. .text-4px { font-size: 4px; }
  506. .text-10px { font-size: 10px; }
  507. .text-11px { font-size: 11px; }
  508. .text-12px { font-size: 12px !important; }
  509. .text-14px { font-size: 14px !important; }
  510. .text-15px { font-size: 15px; }
  511. .text-16px { font-size: 16px !important; }
  512. .text-18px { font-size: 18px !important; }
  513. .text-20px { font-size: 20px; }
  514. .text-30px { font-size: 30px; }
  515.  
  516. .max-w-800px\:hidden {
  517. display: inline-block;
  518.  
  519. @media screen and (max-width: 800px) {
  520. display: none !important;
  521. }
  522. }
  523.  
  524. .scroll-x-auto{ overflow-x: auto }
  525. .scroll-y-auto{ overflow-y: auto }
  526. .overflow-auto { overflow: auto }
  527. .scroll-y { overflow-y: auto }
  528.  
  529. .cursor-default { cursor: default !important }
  530. .cursor-pointer { cursor: pointer !important }
  531. .cursor-help { cursor: help !important }
  532. .rounded-full { border-radius: 50% }
  533. .rounded-4px { border-radius: 4px !important }
  534. .rounded-8px { border-radius: 8px }
  535. .rounded-t-0px { border-top-left-radius: 0; border-top-right-radius: 0; }
  536. .rounded-t-4px, .rounded-tl-4px { border-top-left-radius: 4px; }
  537. .rounded-t-4px, .rounded-tr-4px { border-top-right-radius: 4px; }
  538.  
  539. .border-0 { border: 0 }
  540. .border-green-20 { border: 1px solid $green-20 }
  541. .border-grey-30 { border: 1px solid $grey-30 }
  542. .border-purple-20 { border: 1px solid $purple-20 }
  543. .border-grey-20 { border: 1px solid $grey-20 }
  544.  
  545. .border-l-blue-20 { border-left: 1px solid $blue-20; }
  546. .border-l-2px { border-left-width: 2px }
  547.  
  548. .pre-wrap{
  549. white-space: pre-wrap;
  550. }
  551. .ws-pre{
  552. white-space: pre;
  553. }
  554.  
  555. .textarea-no-resize {
  556. resize: none;
  557. }
  558.  
  559. .shadow-md { box-shadow: $shadow-md }
  560.  
  561. /* - overwrite the above - */
  562.  
  563. .hover_bg-grey-10:hover { background: $grey-10 }
  564. .hover_bg-blue-10:hover { background: $blue-10 }
  565. .hover_opacity-100:hover { opacity: 1 }
  566. .hover_text-red-50:hover { color: $red-50 }
  567.  
  568. // tablet
  569. @media only screen and (max-width: $tablet-max-width) {
  570. .tablet_hidden { display: none !important }
  571. .tablet_block { display: block !important }
  572. .tablet_mt-10px { margin-top: 10px }
  573. }
  574.  
  575. // mobile
  576. @media only screen and (max-width: $mobile-max-width) {
  577. .mobile_block { display: block !important; }
  578. .mobile_-mx-10px{ margin-left: -10px; margin-right: -10px; }
  579. .mobile_-mx-20px{ margin-left: -20px; margin-right: -20px; }
  580. .mobile_mx-0{ margin-left: 0 !important; margin-right: 0 !important; }
  581. .mobile_mx-15px{ margin-left: 15px; margin-right: 15px; }
  582. .mobile_-ml-8px { margin-left: -8px }
  583. .mobile_ml-0 { margin-left: 0px }
  584. .mobile_mb-5px{ margin-bottom: 5px }
  585. .mobile_mb-8px { margin-bottom: 8px; }
  586. .mobile_mb-10px{ margin-bottom: 10px !important }
  587. .mobile_mb-16px{ margin-bottom: 16px !important; }
  588. .mobile_mb-20px{ margin-bottom: 20px !important; }
  589. .mobile_-mt-10px { margin-top: -10px !important }
  590. .mobile_mt-0 { margin-top: 0px }
  591. .mobile_mt-5px{ margin-top: 5px }
  592. .mobile_mt-16px{ margin-top: 16px !important; }
  593. .mobile_mt-10px{ margin-top: 10px }
  594. .mobile_mt-20px{ margin-top: 20px }
  595. .mobile_px-25px { padding-left: 25px !important; padding-right: 25px !important; }
  596. .mobile_pl-0 { padding-left: 0 !important; }
  597. .mobile_pr-0 { padding-right: 0 }
  598. .mobile_text-center { text-align: center }
  599. .mobile_text-left { text-align: left !important; }
  600. .mobile_text-right { text-align: right }
  601. .mobile_font-bold { font-weight: $bold }
  602. .mobile_w-50px { width: 50px; }
  603. .mobile_w-220px { width: 220px; }
  604. .mobile_float-none { float: none !important }
  605. .mobile_w-full { width: 100% }
  606. .mobile_w-1_2 { width: 50% }
  607. .mobile_h-auto { height: auto }
  608. .mobile_h-full { height: 100% !important; }
  609. .mobile_mr-0 { margin-right: 0 }
  610. .mobile_mr-10px { margin-right: 10px }
  611. .mobile_p-10px { padding: 10px !important; }
  612. .mobile_p-20px { padding: 20px; }
  613. .mobile_px-20px { padding-left: 20px; padding-right: 20px; }
  614. .mobile_pl-10px { padding-left: 10px }
  615. .mobile_pl-20px { padding-left: 20px }
  616. .mobile_pb-20px { padding-bottom: 20px }
  617. .mobile_whitespace-normal { white-space: normal }
  618. .mobile_flex { display: flex !important }
  619. .mobile_flex-col { flex-direction: column; }
  620. .-mobile_flex-order-1 { order: -1; }
  621. .mobile_justify-start { justify-content: flex-start; }
  622.  
  623. // position
  624. .mobile_relative { position: relative; }
  625. .mobile_absolute { position: absolute; }
  626.  
  627. .mobile_pin-t-20px { top: 20px }
  628. .mobile_pin-r { right: 0 }
  629. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement