app.custom.less 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942
  1. /**********custom 基于模板工程之后的自定义样式 **************/
  2. // 修改原版样式
  3. .panel .accordion-toggle {
  4. /**以下为重置样式,这样可以整个头部都可以点击,增强用户体验***/
  5. height: 41px;
  6. position: absolute;
  7. width: 100%;
  8. top: 0;
  9. left: 0;
  10. padding: 10px 15px;
  11. }
  12. .padding-t-0 {
  13. padding-top: 0 !important;
  14. }
  15. /*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
  16. ::-webkit-scrollbar {
  17. width: 10px;
  18. height: 10px;
  19. background-color: #fff;
  20. }
  21. /*定义滚动条轨道 内阴影+圆角*/
  22. ::-webkit-scrollbar-track {
  23. -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  24. border-radius: 10px;
  25. background-color: #fff;
  26. }
  27. /*定义滑块 内阴影+圆角*/
  28. ::-webkit-scrollbar-thumb {
  29. border-radius: 10px;
  30. background-color: rgba(0, 0, 0, .2);
  31. }
  32. .modal {
  33. top: 50%;
  34. left: 50%;
  35. transform: translate(-50%, -50%);
  36. background: #fff;
  37. z-index: 1050;
  38. max-width: 90%;
  39. max-height: 90%;
  40. min-height: 488px;
  41. }
  42. .modal-default {
  43. position: fixed;
  44. top: 0;
  45. right: 0;
  46. bottom: 0;
  47. left: 0;
  48. z-index: 1050;
  49. max-width: none;
  50. max-height: none;
  51. background: transparent;
  52. transform: none;
  53. }
  54. .modal-open .modal {
  55. overflow: visible;
  56. }
  57. .modal-backdrop {
  58. background: rgba(0, 0, 0, .6);
  59. }
  60. .modal-backdrop.in {
  61. z-index: 1040;
  62. }
  63. .modal .panel {
  64. position: relative;
  65. margin-bottom: 0;
  66. height: 100%;
  67. }
  68. .modal .panel .panel-heading {
  69. height: 41px;
  70. }
  71. .modal .panel .panel-body {
  72. position: relative;
  73. overflow: auto;
  74. height: calc(100% - 96px);
  75. }
  76. .modal .panel .panel-footer {
  77. height: 55px;
  78. }
  79. .hide-required-img-input {
  80. position: absolute;
  81. width: 100%;
  82. height: 100%;
  83. top: 0;
  84. opacity: 0;
  85. pointer-events: none;
  86. }
  87. /*灰化*/
  88. .gray {
  89. -webkit-filter: grayscale(100%);
  90. -moz-filter: grayscale(100%);
  91. -ms-filter: grayscale(100%);
  92. -o-filter: grayscale(100%);
  93. filter: grayscale(100%);
  94. filter: gray;
  95. }
  96. .noClick {
  97. pointer-events: none;
  98. }
  99. .fadeNode {
  100. opacity: .6;
  101. }
  102. /**日期时间选择控件宽度变大**/
  103. .datetimepicker.max {
  104. width: 380px !important;
  105. }
  106. /**去百度地图logo**/
  107. .BMap_cpyCtrl {
  108. display: none;
  109. }
  110. .anchorBL {
  111. display: none;
  112. }
  113. /*****表格操作按钮样式****/
  114. .grid-button {
  115. padding: 2px;
  116. }
  117. .grid-button .btn {
  118. padding: 3px 8px;
  119. margin-right: 4px;
  120. }
  121. .info-inline {
  122. padding: 4px 0;
  123. }
  124. .info-inline input.form-control {
  125. width: 120px;
  126. margin-right: 8px;
  127. }
  128. .info-inline input[type="number"].form-control {
  129. width: 60px;
  130. padding-right: 2px;
  131. }
  132. .hover-show {
  133. -webkit-filter: blur(5px);
  134. -ms-filter: blur(5px);
  135. filter: blur(5px);
  136. }
  137. .hover-show:hover {
  138. -webkit-filter: blur(0);
  139. -ms-filter: blur(0);
  140. filter: blur(0);
  141. }
  142. .temp-row {
  143. text-align: center;
  144. height: 100%;
  145. padding: 5px;
  146. }
  147. .temp-row.text-left {
  148. text-align: left;
  149. }
  150. /*toast*/
  151. .toast-top-center {
  152. left: 50%;
  153. top: 12px;
  154. transform: translateX(-50%);
  155. -webkit-transform: translateX(-50%);
  156. }
  157. /**禁用动画**/
  158. .no-animate .ng-animate {
  159. transition: 0s !important;
  160. }
  161. /**分页输入框***/
  162. .ui-grid-pager-control input {
  163. min-width: 98px;
  164. }
  165. /**表格蒙版***/
  166. .panel > .table-responsive {
  167. position: relative;
  168. }
  169. .grid-mask {
  170. position: absolute;
  171. left: 0;
  172. top: 0;
  173. width: 100%;
  174. height: 100%;
  175. background: rgba(0, 0, 0, .5);
  176. z-index: 9;
  177. }
  178. .grid-mask span {
  179. display: table;
  180. position: relative;
  181. color: #fff;
  182. left: 50%;
  183. top: 50%;
  184. -webkit-transform: translate(-50%, -50%);
  185. transform: translate(-50%, -50%);
  186. text-align: center;
  187. }
  188. /***LED字体*****/
  189. @font-face {
  190. font-family: 'ledfont';
  191. src: url('../fonts/digital-7 (mono).ttf');
  192. font-weight: normal;
  193. font-style: normal;
  194. }
  195. .ledfont {
  196. font-family: 'ledfont';
  197. }
  198. /**图片上传***/
  199. .upload-pic {
  200. position: relative;
  201. margin-right: 10px;
  202. margin-bottom: 10px;
  203. text-align: center;
  204. border: 1px solid #e5e5e5;
  205. width: 82px;
  206. height: 82px;
  207. border-radius: 2px;
  208. float: left;
  209. }
  210. .upload-pic.active {
  211. border: 1px solid #23b7e5;
  212. box-shadow: 0 0 3px #23b7e5
  213. }
  214. .upload-pic input[type="file"] {
  215. position: absolute;
  216. top: 0;
  217. left: 0;
  218. z-index: 1;
  219. width: 100%;
  220. height: 100%;
  221. background-color: transparent;
  222. border-radius: 8px;
  223. opacity: 0;
  224. }
  225. .upload-pic img {
  226. width: 100%;
  227. height: 100%;
  228. border-radius: 3px;
  229. position: absolute;
  230. left: 0;
  231. top: 0;
  232. z-index: 2;
  233. }
  234. .upload-pic .delpic {
  235. position: absolute;
  236. top: -5px;
  237. right: -5px;
  238. z-index: 3;
  239. width: 20px;
  240. height: 20px;
  241. color: #fff;
  242. text-align: center;
  243. line-height: 1;
  244. background-color: #ff0000;
  245. border-radius: 100%;
  246. font-style: normal;
  247. }
  248. .upload-pic .iconfont {
  249. position: absolute;
  250. top: 50%;
  251. left: 50%;
  252. color: #d8d8d8;
  253. font-size: 48px;
  254. -webkit-transform: translate3d(-50%, -50%, 0);
  255. transform: translate3d(-50%, -50%, 0);
  256. }
  257. .upload-des {
  258. margin-top: 5px;
  259. margin-bottom: 0;
  260. text-align: center;
  261. }
  262. /*文件拖放上传*/
  263. .upload-area {
  264. position: relative;
  265. background: #fff
  266. }
  267. .upload-area input {
  268. position: absolute;
  269. top: 0;
  270. left: 0;
  271. z-index: 1;
  272. width: 100%;
  273. height: 100%;
  274. background-color: transparent;
  275. border-radius: 8px;
  276. opacity: 0;
  277. }
  278. /*************自定义遮罩层****************************/
  279. .load-mask {
  280. position: fixed;
  281. top: 0;
  282. right: 0;
  283. bottom: 0;
  284. left: 0;
  285. z-index: 1002;
  286. background-color: rgba(0, 0, 0, .4);
  287. -webkit-transition-duration: 600ms;
  288. transition-duration: 600ms;
  289. display: block;
  290. opacity: 0;
  291. }
  292. .load-mask.active {
  293. opacity: 1;
  294. }
  295. .load-mask.dark {
  296. background-color: rgba(0, 0, 0, .8);
  297. }
  298. .loader-inner {
  299. display: table;
  300. position: fixed;
  301. left: 50%;
  302. top: 50%;
  303. -webkit-transform: translate(-50%, -50%);
  304. transform: translate(-50%, -50%);
  305. text-align: center;
  306. }
  307. .loader-inner > span {
  308. color: #fff;
  309. font-size: 15px;
  310. display: block;
  311. }
  312. @-webkit-keyframes scale {
  313. 0% {
  314. -webkit-transform: scale(1);
  315. transform: scale(1);
  316. opacity: 1;
  317. }
  318. 45% {
  319. -webkit-transform: scale(0.1);
  320. transform: scale(0.1);
  321. opacity: 0.7;
  322. }
  323. 80% {
  324. -webkit-transform: scale(1);
  325. transform: scale(1);
  326. opacity: 1;
  327. }
  328. }
  329. @keyframes scale {
  330. 0% {
  331. -webkit-transform: scale(1);
  332. transform: scale(1);
  333. opacity: 1;
  334. }
  335. 45% {
  336. -webkit-transform: scale(0.1);
  337. transform: scale(0.1);
  338. opacity: 0.7;
  339. }
  340. 80% {
  341. -webkit-transform: scale(1);
  342. transform: scale(1);
  343. opacity: 1;
  344. }
  345. }
  346. .ball-pulse > div:nth-child(0) {
  347. -webkit-animation: scale 0.75s 0s infinite cubic-bezier(.2, .68, .18, 1.08);
  348. animation: scale 0.75s 0s infinite cubic-bezier(.2, .68, .18, 1.08);
  349. }
  350. .ball-pulse > div:nth-child(1) {
  351. -webkit-animation: scale 0.75s 0.12s infinite cubic-bezier(.2, .68, .18, 1.08);
  352. animation: scale 0.75s 0.12s infinite cubic-bezier(.2, .68, .18, 1.08);
  353. }
  354. .ball-pulse > div:nth-child(2) {
  355. -webkit-animation: scale 0.75s 0.24s infinite cubic-bezier(.2, .68, .18, 1.08);
  356. animation: scale 0.75s 0.24s infinite cubic-bezier(.2, .68, .18, 1.08);
  357. }
  358. .ball-pulse > div:nth-child(3) {
  359. -webkit-animation: scale 0.75s 0.36s infinite cubic-bezier(.2, .68, .18, 1.08);
  360. animation: scale 0.75s 0.36s infinite cubic-bezier(.2, .68, .18, 1.08);
  361. }
  362. .ball-pulse > div {
  363. background-color: #fff;
  364. width: 15px;
  365. height: 15px;
  366. border-radius: 100%;
  367. margin: 2px;
  368. -webkit-animation-fill-mode: both;
  369. animation-fill-mode: both;
  370. display: inline-block;
  371. }
  372. /************遮罩层end*******************************/
  373. /***统计图***/
  374. .chartPanel {
  375. position: relative;
  376. height: 820px;
  377. padding: 0;
  378. background: #044061;
  379. font-family: '微软雅黑';
  380. }
  381. .chart-mask {
  382. position: absolute;
  383. width: 100%;
  384. height: 100%;
  385. max-height: 100vh;
  386. background: rgba(0, 0, 0, .62);
  387. display: flex;
  388. align-items: center;
  389. justify-content: center;
  390. z-index: 9;
  391. font-size: 20px;
  392. cursor: pointer;
  393. }
  394. .chartPanel:before {
  395. content: "";
  396. width: 100%;
  397. height: 100%;
  398. position: absolute;
  399. background-image: url("/1.0/img/map-back.jpg");
  400. background-position: center;
  401. box-shadow: inset 0 0 150px #000, inset 0 0 150px #000, inset 0 0 150px #000, inset 0 0 150px #000, inset 0 0 150px #000;
  402. filter: brightness(0.5) saturate(.7) hue-rotate(275deg) opacity(.6);
  403. }
  404. #particles-js {
  405. width: 100%;
  406. height: 100%;
  407. position: absolute;
  408. top: 0;
  409. }
  410. .fixed-map {
  411. position: fixed;
  412. height: 100%;
  413. width: 100%;
  414. top: 0;
  415. left: 0;
  416. z-index: 9999999;
  417. padding: 0;
  418. }
  419. .fullscreenBtn {
  420. position: absolute;
  421. z-index: 10;
  422. color: rgba(255, 255, 255, .0);
  423. right: 0px;
  424. top: 0px;
  425. opacity: 0;
  426. padding: 2px;
  427. }
  428. .fullscreenBtn:hover {
  429. color: rgba(255, 255, 255, 1);
  430. }
  431. .chartPanel:hover .fullscreenBtn {
  432. opacity: 1;
  433. }
  434. .showDataBox {
  435. position: absolute;
  436. width: 100%;
  437. height: 100%;
  438. top: 0;
  439. }
  440. .mapHead {
  441. position: absolute;
  442. text-align: center;
  443. top: 0;
  444. left: 0;
  445. width: 100%;
  446. z-index: 1;
  447. color: #fff;
  448. overflow: hidden;
  449. }
  450. .mapHead svg {
  451. position: absolute;
  452. top: 0;
  453. left: 50%;
  454. transform: translateX(-50%);
  455. pointer-events: none;
  456. z-index: 0;
  457. }
  458. .map-title {
  459. font-family: '微软雅黑';
  460. position: relative;
  461. z-index: 4;
  462. font-size: 30px;
  463. line-height: 75px;
  464. width: 30%;
  465. left: 35%;
  466. border-top: none;
  467. }
  468. .map-time {
  469. position: absolute;
  470. top: 0;
  471. right: 20px;
  472. line-height: 40px;
  473. }
  474. .map-time span {
  475. font-size: 14px;
  476. color: #44ADE1;
  477. margin-left: 10px;
  478. }
  479. .map-sub-view {
  480. display: block;
  481. }
  482. .map-sub-value {
  483. display: inline-block;
  484. padding: 10px 20px;
  485. margin: 0 5px;
  486. }
  487. .map-sub-view span {
  488. display: block;
  489. font-size: 14px;
  490. }
  491. .map-sub-view em {
  492. display: block;
  493. font-style: normal;
  494. font-size: 32px;
  495. }
  496. .mapBox {
  497. position: absolute;
  498. height: 80%;
  499. width: 80%;
  500. left: 10%;
  501. }
  502. .mapEntity {
  503. position: absolute;
  504. height: 100%;
  505. width: 100%;
  506. }
  507. .chartBoxList {
  508. position: absolute;
  509. width: 25%;
  510. height: calc(100% - 50px);
  511. bottom: 0;
  512. }
  513. .chartBoxList.right {
  514. right: 0;
  515. }
  516. .chartBox, .map-sub-value {
  517. /*background: rgba(0, 0, 32, .5);*/
  518. }
  519. .chartBox {
  520. position: absolute;
  521. z-index: 2;
  522. height: calc(33.3333% - 33.3333px);
  523. box-shadow: inset 0 0 40px rgba(0, 0, 0, .2), 0 0 40px rgba(16, 142, 233, .25);
  524. width: 100%;
  525. min-width: 320px;
  526. transform: scale(0);
  527. opacity: 0;
  528. transition: all ease-out .3s;
  529. }
  530. .chartBox.active {
  531. transform: scale(1);
  532. opacity: 1;
  533. }
  534. .chartBox.active:before, .chartBox.active:after, .chartBox.active .chartEntity:before, .chartBox.active .chartEntity:after {
  535. animation: boxShine 0.5s 1;
  536. animation-delay: .6s;
  537. }
  538. @-webkit-keyframes boxShine {
  539. 0% {
  540. opacity: 1;
  541. }
  542. 20% {
  543. opacity: 0;
  544. }
  545. 40% {
  546. opacity: 1;
  547. }
  548. 60% {
  549. opacity: 0;
  550. }
  551. 80% {
  552. opacity: 1;
  553. }
  554. }
  555. .chartEntity {
  556. top: 20px;
  557. position: absolute;
  558. height: calc(100% - 20px);
  559. width: 100%;
  560. }
  561. .chartBox:before, .chartBox:after, .chartEntity:before, .chartEntity:after {
  562. content: "";
  563. position: absolute;
  564. border: 1px solid #108EE9;
  565. width: 32px;
  566. height: 32px;
  567. -webkit-transition: all .2s ease-in-out;
  568. }
  569. .chartBox:hover:before, .chartBox:hover .chartEntity:before {
  570. width: 100%;
  571. }
  572. .chartBox:hover:after, .chartBox:hover .chartEntity:after {
  573. height: calc(100% + 20px);
  574. }
  575. .chartBox:before {
  576. left: -10px;
  577. top: -10px;
  578. border-bottom: none;
  579. border-right: none;
  580. }
  581. .chartBox:after {
  582. right: -10px;
  583. top: -10px;
  584. border-bottom: none;
  585. border-left: none;
  586. }
  587. .chartEntity:before {
  588. right: -10px;
  589. bottom: -10px;
  590. border-top: none;
  591. border-left: none;
  592. }
  593. .chartEntity:after {
  594. left: -10px;
  595. bottom: -10px;
  596. border-top: none;
  597. border-right: none;
  598. }
  599. .chartEntity div:last-child {
  600. text-align: right;
  601. display: none;
  602. width: 100% !important;
  603. left: 0 !important;
  604. top: -20px !important;
  605. background: rgba(0, 0, 0, .0) !important;
  606. color: #fff !important;
  607. font-size: 12px !important;
  608. position: absolute !important;
  609. z-index: 999;
  610. padding: 4px 8px !important;
  611. border-radius: 0 !important;
  612. }
  613. .chartEntity div:last-child br {
  614. display: none;
  615. }
  616. .chartEntity div:last-child span {
  617. margin-left: 8px;
  618. }
  619. .chartHead {
  620. position: absolute;
  621. top: 0;
  622. left: 0;
  623. width: 100%;
  624. height: 20px;
  625. line-height: 30px;
  626. padding: 0 10px;
  627. color: #fff;
  628. }
  629. #devChartPanelMap {
  630. }
  631. .chartBox.bottom-chart {
  632. height: 22%;
  633. width: calc(50% - 100px);
  634. left: calc(25% + 50px);
  635. bottom: 20px;
  636. position: absolute;
  637. }
  638. .left-chart-1 {
  639. left: 20px;
  640. bottom: calc(66.66666% + 20px);
  641. }
  642. .left-chart-2 {
  643. left: 20px;
  644. bottom: calc(33.33333% + 20px);
  645. }
  646. .left-chart-3 {
  647. left: 20px;
  648. bottom: 20px;
  649. }
  650. .right-chart-1 {
  651. right: 20px;
  652. bottom: calc(66.66666% + 20px);
  653. }
  654. .right-chart-2 {
  655. right: 20px;
  656. bottom: calc(33.33333% + 20px);
  657. }
  658. .right-chart-3 {
  659. right: 20px;
  660. bottom: 20px;
  661. }
  662. .navbar-header .navbar-brand {
  663. white-space: nowrap;
  664. text-overflow: ellipsis;
  665. overflow: hidden;
  666. max-width: 222px;
  667. display: inline-block;
  668. }
  669. .navbar-header .navbar-brand img {
  670. display: inline-block !important;
  671. }
  672. @media (min-width: 768px) {
  673. .app-aside-folded .home-navbar-brand {
  674. display: block;
  675. }
  676. }
  677. .preview-card {
  678. background: #fff;
  679. border: 5px solid rgba(1, 1, 1, .1);
  680. border-radius: 4px;
  681. width: 120px;
  682. height: 120px;
  683. box-sizing: border-box;
  684. position: relative;
  685. float: left;
  686. margin: 10px;
  687. }
  688. .preview-card-video {
  689. width: 200px;
  690. height: 200px;
  691. }
  692. .preview-card * {
  693. box-sizing: border-box;
  694. }
  695. .preview-card img, .preview-card video {
  696. max-width: 100%;
  697. max-height: 100%;
  698. top: 50%;
  699. -webkit-transform: translateY(-50%);
  700. transform: translateY(-50%);
  701. display: block;
  702. position: relative;
  703. }
  704. .preview-card i {
  705. position: absolute;
  706. top: -11px;
  707. right: -11px;
  708. width: 22px;
  709. height: 22px;
  710. background: #ccc;
  711. border-radius: 50%;
  712. cursor: pointer;
  713. line-height: 22px;
  714. font-size: 18px;
  715. text-align: center;
  716. opacity: .0;
  717. transition: .3s all ease-in-out;
  718. }
  719. .preview-card:hover i {
  720. opacity: 1;
  721. }
  722. //支付宝微信配色
  723. .c-alipay {
  724. color: #108EE9
  725. }
  726. .c-wechat {
  727. color: #07C160
  728. }
  729. /********/
  730. .margin-auto {
  731. margin: auto;
  732. }
  733. .stream-line {
  734. position: relative;
  735. &:before {
  736. content: '';
  737. position: absolute;
  738. left: 0;
  739. top: 8px;
  740. bottom: 8px;
  741. background: #ccc;
  742. width: 1px;
  743. }
  744. }
  745. .stream-line-node {
  746. position: relative;
  747. }
  748. .stream-line-node:last-child {
  749. // 遮住后面的线条
  750. &:after {
  751. content: '';
  752. position: absolute;
  753. left: 0;
  754. top: 16px;
  755. height: 100%;
  756. background: #fff;
  757. width: 1px;
  758. }
  759. }
  760. .stream-line-node-circle {
  761. border-radius: 50%;
  762. width: 8px;
  763. height: 8px;
  764. background: #ccc;
  765. position: relative;
  766. left: -4px;
  767. top: 8px;
  768. }
  769. .stream-line-node:first-child {
  770. color: #000;
  771. .stream-line-node-circle {
  772. width: 14px;
  773. height: 14px;
  774. left: -7px;
  775. background: @brand-success;
  776. }
  777. }
  778. // 设备端口详情面板
  779. .port-grid{
  780. box-shadow: 0 0 10px #bbb;
  781. padding: 10px;
  782. margin: 10px;
  783. border-radius: 6px;
  784. &:first-child {
  785. margin-top: 0;
  786. }
  787. .port-grid-title{
  788. font-size: 16px;
  789. font-weight: bold;
  790. color: #000;
  791. }
  792. .port-grid-item{
  793. margin-top: 10px;
  794. background: #fafafb;
  795. padding: 10px 0;
  796. h4{
  797. margin: 5px 10px;
  798. font-size: 14px;
  799. font-weight: bold;
  800. }
  801. .col-sm-6 {
  802. width: 25% !important;
  803. }
  804. > div {
  805. margin-top: 4px;
  806. }
  807. }
  808. }