console.custom.less 19 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243
  1. @import "console.dynamic.less";
  2. .notdata {
  3. padding: 15px;
  4. display: block;
  5. font-size: 13px;
  6. text-align: center;
  7. line-height: 22px;
  8. border-radius: @borderRadius;
  9. letter-spacing: 6px;
  10. border: 1px solid @borderColor;
  11. background-color: #f2f2f2;
  12. }
  13. .notselect {
  14. user-select: none;
  15. -ms-user-select: none;
  16. -moz-user-select: none;
  17. -webkit-user-select: none
  18. }
  19. .transition {
  20. transition: all .2s linear;
  21. -o-transition: all .2s linear;
  22. -moz-transition: all .2s linear;
  23. -webkit-transition: all .2s linear;
  24. }
  25. .absolute {
  26. position: absolute !important
  27. }
  28. .relative {
  29. position: relative !important
  30. }
  31. .block {
  32. display: block !important
  33. }
  34. .pointer {
  35. cursor: pointer !important
  36. }
  37. .nowrap {
  38. white-space: nowrap !important
  39. }
  40. .shadow {
  41. box-shadow: @maxShadow;
  42. }
  43. .shadow-mini {
  44. box-shadow: @minShadow;
  45. }
  46. .noshadow {
  47. box-shadow: none !important;
  48. }
  49. .help-block {
  50. color: #999;
  51. font-size: 12px
  52. }
  53. .table-block {
  54. width: 100%;
  55. display: table !important;
  56. box-sizing: border-box;
  57. }
  58. .inline-block {
  59. display: inline-block !important
  60. }
  61. .think-box-shadow {
  62. padding: 20px !important;
  63. background: #fff !important;
  64. box-shadow: @maxShadow;
  65. border-radius: @borderRadius;
  66. > form.layui-card {
  67. box-shadow: none;
  68. }
  69. }
  70. .pull- {
  71. &left {
  72. float: left !important
  73. }
  74. &right {
  75. float: right !important
  76. }
  77. }
  78. .full- {
  79. &width {
  80. width: 100% !important
  81. }
  82. &height {
  83. height: 100% !important
  84. }
  85. }
  86. .color- {
  87. &red {
  88. color: #ec494e !important
  89. }
  90. &blue {
  91. color: #2494f2 !important
  92. }
  93. &desc {
  94. color: #999 !important
  95. }
  96. &text {
  97. color: #333 !important
  98. }
  99. &green {
  100. color: #090 !important
  101. }
  102. }
  103. .sub-span- {
  104. &red span {
  105. color: #ec494e !important
  106. }
  107. &blue span {
  108. color: #2494f2 !important
  109. }
  110. &desc span {
  111. color: #999 !important
  112. }
  113. &text span {
  114. color: #333 !important
  115. }
  116. &green span {
  117. color: #090 !important
  118. }
  119. }
  120. .text- {
  121. &top {
  122. vertical-align: top !important
  123. }
  124. &left {
  125. text-align: left !important
  126. }
  127. &right {
  128. text-align: right !important
  129. }
  130. &center {
  131. text-align: center !important
  132. }
  133. &middle {
  134. vertical-align: middle !important
  135. }
  136. &bottom {
  137. vertical-align: bottom !important
  138. }
  139. }
  140. .think-bg- {
  141. &white {
  142. background: white !important
  143. }
  144. &blue {
  145. background: linear-gradient(-125deg, #57bdbf, #2f9de2) !important
  146. }
  147. &orig {
  148. background: linear-gradient(-141deg, #ecca1b, #f39526) !important
  149. }
  150. &red {
  151. background: linear-gradient(-125deg, #ff7d7d, #fb2c95) !important
  152. }
  153. &violet {
  154. background: linear-gradient(-113deg, #c543d8, #925cc3) !important
  155. }
  156. }
  157. /* 分隔线条 */
  158. .hr-line- {
  159. &dashed {
  160. color: #fff;
  161. height: 1px;
  162. margin: 15px 0;
  163. background-color: #fff;
  164. border-top: 1px dashed #e7eaec
  165. }
  166. &solid {
  167. margin-top: 15px;
  168. margin-bottom: 15px;
  169. border-bottom: 1px solid #e7eaec;
  170. background-color: rgba(0, 0, 0, 0)
  171. }
  172. }
  173. .input-right-icon {
  174. top: 0;
  175. right: 0;
  176. width: 30px;
  177. height: 38px;
  178. display: inline-block;
  179. position: absolute;
  180. text-align: center;
  181. line-height: 38px;
  182. }
  183. /** 加载进度 */
  184. .pace-inactive {
  185. display: none
  186. }
  187. .pace-progress {
  188. top: 0;
  189. right: 100%;
  190. width: 100%;
  191. height: 2px;
  192. z-index: 2000;
  193. position: fixed;
  194. background: #22df80
  195. }
  196. .uploadimage {
  197. width: 77px;
  198. height: 77px;
  199. cursor: pointer;
  200. position: relative;
  201. display: inline-block;
  202. border: 1px dashed #e2e2e2;
  203. background: url('../img/upimg.png') no-repeat center center;
  204. background-size: cover;
  205. span.layui-icon {
  206. right: 0;
  207. color: #fff;
  208. width: 20px;
  209. height: 20px;
  210. display: none;
  211. position: absolute;
  212. text-align: center;
  213. line-height: 22px;
  214. background: rgba(0, 0, 0, .5)
  215. }
  216. &:hover span.layui-icon {
  217. display: inline-block;
  218. }
  219. }
  220. .uploadimagemtl {
  221. margin-right: 8px;
  222. a {
  223. color: #fff;
  224. width: 20px;
  225. height: 20px;
  226. float: right;
  227. display: none;
  228. text-align: center;
  229. line-height: 22px;
  230. background: rgba(0, 0, 0, .5)
  231. }
  232. &:hover a {
  233. cursor: pointer;
  234. display: inline-block;
  235. &:hover {
  236. color: #fff;
  237. text-decoration: none
  238. }
  239. }
  240. }
  241. [data-tips-image] {
  242. cursor: zoom-in !important
  243. }
  244. [data-lazy-src] {
  245. overflow: hidden;
  246. position: relative;
  247. background-size: 100%;
  248. background-position: center center;
  249. }
  250. .portal-block-container {
  251. font-size: 14px;
  252. margin-bottom: 10px;
  253. letter-spacing: 1px;
  254. .portal-block {
  255. &-icon {
  256. top: 45%;
  257. right: 8%;
  258. font-size: 65px;
  259. position: absolute;
  260. color: rgba(255, 255, 255, 0.4);
  261. }
  262. &-item {
  263. color: #fff;
  264. padding: 15px 25px;
  265. position: relative;
  266. line-height: 3em;
  267. border-radius: @borderRadius;
  268. box-shadow: 0 2px 3px 0 rgba(0, 0, 0, .2);
  269. > div:nth-child(2) {
  270. font-size: 46px;
  271. line-height: 46px;
  272. }
  273. }
  274. }
  275. }
  276. /* 通用分页 */
  277. .pagination-container {
  278. margin-top: 20px;
  279. line-height: 30px;
  280. padding-top: 5px;
  281. padding-bottom: 5px;
  282. span {
  283. color: #666;
  284. font-size: 9pt
  285. }
  286. ul {
  287. float: right;
  288. height: 30px;
  289. margin: 0;
  290. padding: 0;
  291. display: inline-block;
  292. li {
  293. z-index: 1;
  294. height: 30px;
  295. line-height: 30px;
  296. display: inline-block;
  297. a, span {
  298. color: #333;
  299. width: 30px;
  300. height: 30px;
  301. border: 1px solid @borderColor;
  302. overflow: hidden;
  303. font-size: 12px;
  304. text-align: center;
  305. line-height: 30px;
  306. margin-right: 3px;
  307. border-radius: 50%;
  308. display: inline-block;
  309. box-sizing: border-box;
  310. box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .2) inset;
  311. }
  312. span {
  313. cursor: default;
  314. background: #DCDCDC;
  315. }
  316. a:hover {
  317. border-color: #009688;
  318. box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .4) inset;
  319. }
  320. &.active {
  321. z-index: 2;
  322. span {
  323. color: #fff;
  324. border-color: #009688;
  325. background: #009688 !important
  326. }
  327. }
  328. &.disabled {
  329. span {
  330. font-size: 16px;
  331. font-weight: 700;
  332. line-height: 22px;
  333. }
  334. }
  335. &:last-child, &:first-child {
  336. a, span {
  337. font-size: 16px;
  338. font-weight: 700;
  339. line-height: 28px;
  340. }
  341. }
  342. }
  343. }
  344. }
  345. /** 手机盒子及微信菜单 */
  346. .mobile-preview {
  347. width: 317px;
  348. height: 580px;
  349. position: relative;
  350. background: url(../img/wechat/mobile_head.png) no-repeat 0 0;
  351. box-shadow: @minShadow;
  352. border-radius: @borderRadius;
  353. .mobile-header {
  354. color: #fff;
  355. width: auto;
  356. margin: 0 30px;
  357. overflow: hidden;
  358. font-size: 15px;
  359. padding-top: 30px;
  360. text-align: center;
  361. white-space: nowrap;
  362. text-overflow: ellipsis;
  363. word-wrap: normal;
  364. user-select: none;
  365. -moz-user-select: none;
  366. -webkit-user-select: none;
  367. pointer-events: none;
  368. -webkit-pointer-events: none;
  369. }
  370. .mobile-body {
  371. top: 60px;
  372. left: 0;
  373. right: 0;
  374. bottom: 0;
  375. border: 1px solid #ccc;
  376. position: absolute;
  377. background: #f5f5f5;
  378. border-radius: 0 0 @borderRadius @borderRadius;
  379. iframe {
  380. width: 100%;
  381. height: 100%
  382. }
  383. }
  384. .mobile-footer {
  385. left: 0;
  386. right: 0;
  387. bottom: 0;
  388. margin: 0;
  389. border: 1px solid #ccc;
  390. position: absolute;
  391. padding-left: 43px;
  392. background: url(../img/wechat/mobile_foot.png) no-repeat 0 0;
  393. list-style-type: none;
  394. border-radius: 0 0 @borderRadius @borderRadius;
  395. li {
  396. float: left;
  397. width: 33.33%;
  398. position: relative;
  399. text-align: center;
  400. line-height: 50px;
  401. a {
  402. width: auto;
  403. color: #616161;
  404. border: 1px solid hsla(0, 0%, 100%, 0);
  405. display: block;
  406. overflow: hidden;
  407. word-wrap: normal;
  408. margin-top: -1px;
  409. border-left: 1px solid #e7e7eb;
  410. white-space: nowrap;
  411. text-overflow: ellipsis;
  412. margin-bottom: -1px;
  413. text-decoration: none;
  414. &:hover {
  415. background: rgba(0, 0, 0, .02)
  416. }
  417. &.active {
  418. border: 1px solid #44b549 !important;
  419. box-shadow: 0 0 1px #44b549
  420. }
  421. span:before {
  422. width: 1px;
  423. height: 1px;
  424. content: '';
  425. display: inline-block
  426. }
  427. }
  428. > .close {
  429. top: 1px;
  430. right: 1px;
  431. width: 18px;
  432. height: 18px;
  433. display: none;
  434. cursor: pointer;
  435. position: absolute;
  436. text-align: center;
  437. line-height: 18px
  438. }
  439. &:hover > .close {
  440. display: inline-block;
  441. &:hover {
  442. color: #fff !important;
  443. background: #999 !important
  444. }
  445. }
  446. }
  447. .icon {
  448. &-add, &-sub {
  449. display: inline-block;
  450. vertical-align: middle
  451. }
  452. &-add {
  453. width: 14px;
  454. height: 14px;
  455. border-bottom: none !important;
  456. background: url(../img/wechat/index.png) 0 0 no-repeat
  457. }
  458. &-sub {
  459. width: 7px;
  460. height: 7px;
  461. margin-right: 2px;
  462. background: url(../img/wechat/index.png) 0 -3pc no-repeat
  463. }
  464. }
  465. .sub-menu {
  466. width: 100%;
  467. bottom: 60px;
  468. margin: -1px;
  469. display: block;
  470. position: absolute;
  471. border: 1px solid #d0d0d0;
  472. background-color: #fafafa;
  473. ul li {
  474. float: none;
  475. width: 100%;
  476. padding: 0;
  477. z-index: 11;
  478. display: block;
  479. a {
  480. padding: 0 5px;
  481. border: 1px solid hsla(0, 0%, 100%, 0);
  482. &.bottom-border {
  483. margin: -1px -1px 0;
  484. border-bottom: 1px solid #e7e7eb
  485. }
  486. }
  487. &:last-child a.bottom-border {
  488. border-bottom-color: #fff
  489. }
  490. }
  491. }
  492. .arrow {
  493. left: 50%;
  494. position: absolute;
  495. margin-left: -6px;
  496. }
  497. .arrow_in, .arrow_out {
  498. width: 0;
  499. height: 0;
  500. z-index: 10;
  501. border: 6px dashed transparent;
  502. display: inline-block;
  503. border-top-style: solid;
  504. border-bottom-width: 0;
  505. }
  506. .arrow_in {
  507. z-index: 3;
  508. bottom: -5px;
  509. border-top-color: #fafafa
  510. }
  511. .arrow_out {
  512. z-index: 2;
  513. bottom: -6px;
  514. border-top-color: #d0d0d0
  515. }
  516. }
  517. }
  518. .border {
  519. &-0 {
  520. border: 0 !important
  521. }
  522. &-line {
  523. border: 1px solid @borderColor;
  524. }
  525. &-bottom-line {
  526. border-bottom: 1px solid @borderColor;
  527. }
  528. &-top-0 {
  529. border-top: 0 !important;
  530. }
  531. &-left-0 {
  532. border-left: 0 !important;
  533. }
  534. &-right-0 {
  535. border-right: 0 !important;
  536. }
  537. &-bottom-0 {
  538. border-bottom: 0 !important;
  539. }
  540. &-radius {
  541. border-radius: 50% !important;
  542. &-0 {
  543. border-radius: 0 !important
  544. }
  545. &-5 {
  546. border-radius: 5px !important;
  547. }
  548. &-6 {
  549. border-radius: 6px !important;
  550. }
  551. &-left-0 {
  552. border-top-left-radius: 0 !important;
  553. border-bottom-left-radius: 0 !important
  554. }
  555. &-right-0 {
  556. border-top-right-radius: 0 !important;
  557. border-bottom-right-radius: 0 !important
  558. }
  559. }
  560. }
  561. .font- {
  562. &s10 {
  563. font-size: 10px !important
  564. }
  565. &s11 {
  566. font-size: 11px !important
  567. }
  568. &s12 {
  569. font-size: 12px !important
  570. }
  571. &s13 {
  572. font-size: 13px !important
  573. }
  574. &s14 {
  575. font-size: 14px !important
  576. }
  577. &s15 {
  578. font-size: 15px !important
  579. }
  580. &s16 {
  581. font-size: 16px !important
  582. }
  583. &s18 {
  584. font-size: 18px !important
  585. }
  586. &s20 {
  587. font-size: 20px !important
  588. }
  589. &s30 {
  590. font-size: 30px !important
  591. }
  592. &s40 {
  593. font-size: 40px !important
  594. }
  595. &w1 {
  596. font-weight: 100 !important;
  597. }
  598. &w2 {
  599. font-weight: 200 !important;
  600. }
  601. &w3 {
  602. font-weight: 300 !important;
  603. }
  604. &w4 {
  605. font-weight: 400 !important;
  606. }
  607. &w5 {
  608. font-weight: 500 !important;
  609. }
  610. &w6 {
  611. font-weight: 600 !important;
  612. }
  613. &w7 {
  614. font-weight: 700 !important;
  615. }
  616. &w8 {
  617. font-weight: 800 !important;
  618. }
  619. &w9 {
  620. font-weight: 900 !important;
  621. }
  622. }
  623. .padding {
  624. &-0 {
  625. padding: 0 !important
  626. }
  627. &-5 {
  628. padding: 5px !important
  629. }
  630. &-10 {
  631. padding: 10px !important
  632. }
  633. &-15 {
  634. padding: 15px !important
  635. }
  636. &-20 {
  637. padding: 20px !important
  638. }
  639. &-25 {
  640. padding: 25px !important
  641. }
  642. &-30 {
  643. padding: 30px !important
  644. }
  645. &-40 {
  646. padding: 40px !important
  647. }
  648. &-col {
  649. &-0 {
  650. padding-left: 0 !important;
  651. padding-right: 0 !important;
  652. }
  653. &-5 {
  654. padding-left: 5px !important;
  655. padding-right: 5px !important;
  656. }
  657. &-10 {
  658. padding-left: 10px !important;
  659. padding-right: 10px !important;
  660. }
  661. &-15 {
  662. padding-left: 15px !important;
  663. padding-right: 15px !important;
  664. }
  665. &-20 {
  666. padding-left: 20px !important;
  667. padding-right: 20px !important;
  668. }
  669. &-25 {
  670. padding-left: 25px !important;
  671. padding-right: 25px !important;
  672. }
  673. &-30 {
  674. padding-left: 30px !important;
  675. padding-right: 30px !important;
  676. }
  677. &-40 {
  678. padding-left: 40px !important;
  679. padding-right: 40px !important;
  680. }
  681. }
  682. &-row {
  683. &-0 {
  684. padding-top: 0 !important;
  685. padding-bottom: 0 !important;
  686. }
  687. &-5 {
  688. padding-top: 5px !important;
  689. padding-bottom: 5px !important;
  690. }
  691. &-10 {
  692. padding-top: 10px !important;
  693. padding-bottom: 10px !important;
  694. }
  695. &-15 {
  696. padding-top: 15px !important;
  697. padding-bottom: 15px !important;
  698. }
  699. &-20 {
  700. padding-top: 20px !important;
  701. padding-bottom: 20px !important;
  702. }
  703. &-25 {
  704. padding-top: 25px !important;
  705. padding-bottom: 25px !important;
  706. }
  707. &-30 {
  708. padding-top: 30px !important;
  709. padding-bottom: 30px !important;
  710. }
  711. &-40 {
  712. padding-top: 40px !important;
  713. padding-bottom: 40px !important;
  714. }
  715. }
  716. &-top {
  717. &-0 {
  718. padding-top: 0 !important
  719. }
  720. &-5 {
  721. padding-top: 5px !important
  722. }
  723. &-10 {
  724. padding-top: 10px !important
  725. }
  726. &-15 {
  727. padding-top: 15px !important
  728. }
  729. &-20 {
  730. padding-top: 20px !important
  731. }
  732. &-30 {
  733. padding-top: 30px !important
  734. }
  735. &-40 {
  736. padding-top: 40px !important
  737. }
  738. }
  739. &-left {
  740. &-0 {
  741. padding-left: 0 !important
  742. }
  743. &-5 {
  744. padding-left: 5px !important
  745. }
  746. &-10 {
  747. padding-left: 10px !important
  748. }
  749. &-15 {
  750. padding-left: 15px !important
  751. }
  752. &-20 {
  753. padding-left: 20px !important
  754. }
  755. &-30 {
  756. padding-left: 30px !important
  757. }
  758. &-40 {
  759. padding-left: 40px !important
  760. }
  761. }
  762. &-right {
  763. &-0 {
  764. padding-right: 0 !important
  765. }
  766. &-5 {
  767. padding-right: 5px !important
  768. }
  769. &-10 {
  770. padding-right: 10px !important
  771. }
  772. &-15 {
  773. padding-right: 15px !important
  774. }
  775. &-20 {
  776. padding-right: 20px !important
  777. }
  778. &-30 {
  779. padding-right: 30px !important
  780. }
  781. &-40 {
  782. padding-right: 40px !important
  783. }
  784. }
  785. &-bottom {
  786. &-0 {
  787. padding-bottom: 0 !important
  788. }
  789. &-5 {
  790. padding-bottom: 5px !important
  791. }
  792. &-10 {
  793. padding-bottom: 10px !important
  794. }
  795. &-15 {
  796. padding-bottom: 15px !important
  797. }
  798. &-20 {
  799. padding-bottom: 20px !important
  800. }
  801. &-30 {
  802. padding-bottom: 30px !important
  803. }
  804. &-40 {
  805. padding-bottom: 40px !important
  806. }
  807. }
  808. }
  809. .margin {
  810. &-0 {
  811. margin: 0 !important
  812. }
  813. &-5 {
  814. margin: 5px !important
  815. }
  816. &-10 {
  817. margin: 10px !important
  818. }
  819. &-15 {
  820. margin: 15px !important
  821. }
  822. &-20 {
  823. margin: 20px !important
  824. }
  825. &-25 {
  826. margin: 25px !important
  827. }
  828. &-30 {
  829. margin: 30px !important
  830. }
  831. &-40 {
  832. margin: 40px !important
  833. }
  834. &-col {
  835. &-0 {
  836. margin-left: 0 !important;
  837. margin-right: 0 !important;
  838. }
  839. &-5 {
  840. margin-left: 5px !important;
  841. margin-right: 5px !important;
  842. }
  843. &-10 {
  844. margin-left: 10px !important;
  845. margin-right: 10px !important;
  846. }
  847. &-15 {
  848. margin-left: 15px !important;
  849. margin-right: 15px !important;
  850. }
  851. &-20 {
  852. margin-left: 20px !important;
  853. margin-right: 20px !important;
  854. }
  855. &-25 {
  856. margin-left: 25px !important;
  857. margin-right: 25px !important;
  858. }
  859. &-30 {
  860. margin-left: 30px !important;
  861. margin-right: 30px !important;
  862. }
  863. &-40 {
  864. margin-left: 40px !important;
  865. margin-right: 40px !important;
  866. }
  867. }
  868. &-row {
  869. &-0 {
  870. margin-top: 0 !important;
  871. margin-bottom: 0 !important;
  872. }
  873. &-5 {
  874. margin-top: 5px !important;
  875. margin-bottom: 5px !important;
  876. }
  877. &-10 {
  878. margin-top: 10px !important;
  879. margin-bottom: 10px !important;
  880. }
  881. &-15 {
  882. margin-top: 15px !important;
  883. margin-bottom: 15px !important;
  884. }
  885. &-20 {
  886. margin-top: 20px !important;
  887. margin-bottom: 20px !important;
  888. }
  889. &-25 {
  890. margin-top: 25px !important;
  891. margin-bottom: 25px !important;
  892. }
  893. &-30 {
  894. margin-top: 30px !important;
  895. margin-bottom: 30px !important;
  896. }
  897. &-40 {
  898. margin-top: 40px !important;
  899. margin-bottom: 40px !important;
  900. }
  901. }
  902. &-top {
  903. &-0 {
  904. margin-top: 0 !important
  905. }
  906. &-5 {
  907. margin-top: 5px !important
  908. }
  909. &-10 {
  910. margin-top: 10px !important
  911. }
  912. &-15 {
  913. margin-top: 15px !important
  914. }
  915. &-20 {
  916. margin-top: 20px !important
  917. }
  918. &-25 {
  919. margin-top: 25px !important
  920. }
  921. &-30 {
  922. margin-top: 30px !important
  923. }
  924. &-40 {
  925. margin-top: 40px !important;
  926. }
  927. }
  928. &-left {
  929. &-0 {
  930. margin-left: 0 !important
  931. }
  932. &-5 {
  933. margin-left: 5px !important
  934. }
  935. &-10 {
  936. margin-left: 10px !important
  937. }
  938. &-15 {
  939. margin-left: 15px !important
  940. }
  941. &-20 {
  942. margin-left: 20px !important
  943. }
  944. &-25 {
  945. margin-left: 25px !important
  946. }
  947. &-30 {
  948. margin-left: 30px !important
  949. }
  950. &-40 {
  951. margin-left: 40px !important
  952. }
  953. }
  954. &-right {
  955. &-0 {
  956. margin-right: 0 !important
  957. }
  958. &-5 {
  959. margin-right: 5px !important
  960. }
  961. &-10 {
  962. margin-right: 10px !important
  963. }
  964. &-15 {
  965. margin-right: 15px !important
  966. }
  967. &-20 {
  968. margin-right: 20px !important
  969. }
  970. &-25 {
  971. margin-right: 25px !important
  972. }
  973. &-30 {
  974. margin-right: 30px !important
  975. }
  976. &-40 {
  977. margin-right: 40px !important
  978. }
  979. }
  980. &-bottom {
  981. &-0 {
  982. margin-bottom: 0 !important
  983. }
  984. &-5 {
  985. margin-bottom: 5px !important
  986. }
  987. &-10 {
  988. margin-bottom: 10px !important
  989. }
  990. &-15 {
  991. margin-bottom: 15px !important
  992. }
  993. &-20 {
  994. margin-bottom: 20px !important
  995. }
  996. &-25 {
  997. margin-bottom: 25px !important
  998. }
  999. &-30 {
  1000. margin-bottom: 30px !important
  1001. }
  1002. &-40 {
  1003. margin-bottom: 40px !important
  1004. }
  1005. }
  1006. }