core.css 24 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397
  1. /*
  2. Template Name: Moltran Dashboard
  3. Author: CoderThemes
  4. Email: coderthemes@gmail.com
  5. File: Common
  6. */
  7. /* ==============
  8. General
  9. ===================*/
  10. body {
  11. background: #f5f5f5;
  12. margin: 0;
  13. }
  14. html {
  15. overflow-x: hidden;
  16. position: relative;
  17. min-height: 100%;
  18. background: #f5f5f5;
  19. }
  20. h1,
  21. h2,
  22. h3,
  23. h4,
  24. h5,
  25. h6 {
  26. color: #505458;
  27. margin: 10px 0;
  28. }
  29. h1 {
  30. line-height: 43px;
  31. }
  32. h2 {
  33. line-height: 35px;
  34. }
  35. h3 {
  36. line-height: 30px;
  37. }
  38. h3 small {
  39. color: #444444;
  40. }
  41. h4 {
  42. line-height: 22px;
  43. }
  44. h4 small {
  45. color: #444444;
  46. }
  47. h5 small {
  48. color: #444444;
  49. }
  50. * {
  51. outline: none !important;
  52. }
  53. a:hover {
  54. outline: 0;
  55. text-decoration: none;
  56. }
  57. a:active {
  58. outline: 0;
  59. text-decoration: none;
  60. }
  61. a:focus {
  62. outline: 0;
  63. text-decoration: none;
  64. }
  65. .container {
  66. width: auto;
  67. }
  68. .container-alt {
  69. margin-left: auto;
  70. margin-right: auto;
  71. padding-left: 15px;
  72. padding-right: 15px;
  73. }
  74. .footer {
  75. background-color: #f9f9f9;
  76. border-top: 1px solid rgba(0, 0, 0, 0.05);
  77. bottom: 0px;
  78. color: #58666e;
  79. text-align: left !important;
  80. padding: 20px 30px;
  81. position: absolute;
  82. right: 0;
  83. left: 240px;
  84. }
  85. #wrapper {
  86. height: 100%;
  87. overflow: hidden;
  88. width: 100%;
  89. }
  90. .page {
  91. bottom: 0;
  92. left: 0;
  93. right: 0;
  94. top: 0;
  95. }
  96. .page-title {
  97. margin-bottom: 24px;
  98. }
  99. .social-links li a {
  100. -webkit-border-radius: 50%;
  101. background: #EFF0F4;
  102. border-radius: 50%;
  103. color: #7A7676;
  104. display: inline-block;
  105. height: 30px;
  106. line-height: 30px;
  107. text-align: center;
  108. width: 30px;
  109. }
  110. /* ==============
  111. Bootstrap-custom
  112. ===================*/
  113. .row {
  114. margin-right: -10px;
  115. margin-left: -10px;
  116. }
  117. .col-lg-1,
  118. .col-lg-10,
  119. .col-lg-11,
  120. .col-lg-12,
  121. .col-lg-2,
  122. .col-lg-3,
  123. .col-lg-4,
  124. .col-lg-5,
  125. .col-lg-6,
  126. .col-lg-7,
  127. .col-lg-8,
  128. .col-lg-9,
  129. .col-md-1,
  130. .col-md-10,
  131. .col-md-11,
  132. .col-md-12,
  133. .col-md-2,
  134. .col-md-3,
  135. .col-md-4,
  136. .col-md-5,
  137. .col-md-6,
  138. .col-md-7,
  139. .col-md-8,
  140. .col-md-9,
  141. .col-sm-1,
  142. .col-sm-10,
  143. .col-sm-11,
  144. .col-sm-12,
  145. .col-sm-2,
  146. .col-sm-3,
  147. .col-sm-4,
  148. .col-sm-5,
  149. .col-sm-6,
  150. .col-sm-7,
  151. .col-sm-8,
  152. .col-sm-9,
  153. .col-xs-1,
  154. .col-xs-10,
  155. .col-xs-11,
  156. .col-xs-12,
  157. .col-xs-2,
  158. .col-xs-3,
  159. .col-xs-4,
  160. .col-xs-5,
  161. .col-xs-6,
  162. .col-xs-7,
  163. .col-xs-8,
  164. .col-xs-9 {
  165. padding-left: 10px;
  166. padding-right: 10px;
  167. }
  168. .breadcrumb {
  169. background-color: transparent;
  170. margin-bottom: 15px;
  171. margin-top: 5px;
  172. }
  173. .dropdown-menu {
  174. padding: 4px 0;
  175. -webkit-animation: dropdownOpen 0.3s ease-out;
  176. -o-animation: dropdownOpen 0.3s ease-out;
  177. animation: dropdownOpen 0.3s ease-out;
  178. border: 0;
  179. box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  180. }
  181. .dropdown-menu > li > a {
  182. padding: 6px 20px;
  183. }
  184. .bg-primary {
  185. background-color: #6e8cd7 !important;
  186. }
  187. .bg-success {
  188. background-color: #33b86c !important;
  189. }
  190. .bg-info {
  191. background-color: #29b6f6 !important;
  192. }
  193. .bg-warning {
  194. background-color: #ffd740 !important;
  195. }
  196. .bg-danger {
  197. background-color: #ef5350 !important;
  198. }
  199. .bg-muted {
  200. background-color: #d0d0d0 !important;
  201. }
  202. .bg-inverse {
  203. background-color: #212121 !important;
  204. }
  205. .bg-purple {
  206. background-color: #7e57c2 !important;
  207. }
  208. .bg-pink {
  209. background-color: #ec407a !important;
  210. }
  211. .bg-white {
  212. background-color: #ffffff !important;
  213. }
  214. .text-white {
  215. color: #ffffff;
  216. }
  217. .text-danger {
  218. color: #ef5350;
  219. }
  220. .text-muted {
  221. color: #98a6ad;
  222. }
  223. .text-primary {
  224. color: #6e8cd7;
  225. }
  226. .text-warning {
  227. color: #ffd740;
  228. }
  229. .text-success {
  230. color: #33b86c;
  231. }
  232. .text-info {
  233. color: #29b6f6;
  234. }
  235. .text-inverse {
  236. color: #212121;
  237. }
  238. .text-pink {
  239. color: #ec407a;
  240. }
  241. .text-purple {
  242. color: #7e57c2;
  243. }
  244. .text-dark {
  245. color: #797979 !important;
  246. }
  247. .form-control {
  248. -moz-border-radius: 2px;
  249. -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  250. -webkit-border-radius: 2px;
  251. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  252. background-color: #fafafa;
  253. border-radius: 2px;
  254. border: 1px solid #eeeeee;
  255. box-shadow: none;
  256. color: rgba(0, 0, 0, 0.6);
  257. font-size: 14px;
  258. }
  259. .form-control:focus {
  260. background: #ffffff;
  261. border: 1px solid #e0e0e0;
  262. box-shadow: none;
  263. }
  264. .label-primary {
  265. background-color: #6e8cd7;
  266. }
  267. .label-success {
  268. background-color: #33b86c;
  269. }
  270. .label-info {
  271. background-color: #29b6f6;
  272. }
  273. .label-warning {
  274. background-color: #ffd740;
  275. }
  276. .label-danger {
  277. background-color: #ef5350;
  278. }
  279. .label-purple {
  280. background-color: #7e57c2;
  281. }
  282. .label-pink {
  283. background-color: #ec407a;
  284. }
  285. .label-inverse {
  286. background-color: #212121;
  287. }
  288. .badge {
  289. text-transform: uppercase;
  290. font-weight: normal;
  291. padding: 3px 5px;
  292. font-size: 12px;
  293. margin-top: 1px;
  294. }
  295. .badge-xs {
  296. font-size: 9px;
  297. }
  298. .badge-xs,
  299. .badge-sm {
  300. -webkit-transform: translate(0, -2px);
  301. -ms-transform: translate(0, -2px);
  302. -o-transform: translate(0, -2px);
  303. transform: translate(0, -2px);
  304. }
  305. .badge-primary {
  306. background-color: #6e8cd7;
  307. }
  308. .badge-success {
  309. background-color: #33b86c;
  310. }
  311. .badge-info {
  312. background-color: #29b6f6;
  313. }
  314. .badge-warning {
  315. background-color: #ffd740;
  316. }
  317. .badge-danger {
  318. background-color: #ef5350;
  319. }
  320. .badge-purple {
  321. background-color: #7e57c2;
  322. }
  323. .badge-pink {
  324. background-color: #ec407a;
  325. }
  326. .badge-inverse {
  327. background-color: #212121;
  328. }
  329. .pagination > li > a {
  330. background-color: #ffffff;
  331. border: 1px solid #dddddd;
  332. color: #373e4a;
  333. }
  334. .pagination > li > span {
  335. background-color: #ffffff;
  336. border: 1px solid #dddddd;
  337. color: #373e4a;
  338. }
  339. .pagination > .active > a,
  340. .pagination > .active > span,
  341. .pagination > .active > a:hover,
  342. .pagination > .active > span:hover,
  343. .pagination > .active > a:focus,
  344. .pagination > .active > span:focus {
  345. background-color: #6e8cd7;
  346. border-color: #6e8cd7;
  347. }
  348. .tabs {
  349. background-color: #ffffff;
  350. margin: 0 auto;
  351. padding: 0px;
  352. position: relative;
  353. white-space: nowrap;
  354. width: 100%;
  355. }
  356. .tabs li.tab {
  357. background-color: #ffffff;
  358. display: block;
  359. float: left;
  360. margin: 0;
  361. text-align: center;
  362. }
  363. .tabs li.tab a {
  364. -moz-transition: color 0.28s ease;
  365. -ms-transition: color 0.28s ease;
  366. -o-transition: color 0.28s ease;
  367. -webkit-transition: color 0.28s ease;
  368. color: #ee6e73;
  369. display: block;
  370. height: 100%;
  371. text-decoration: none;
  372. transition: color 0.28s ease;
  373. width: 100%;
  374. }
  375. .tabs li.tab a.active {
  376. color: #6e8cd7 !important;
  377. }
  378. .tabs .indicator {
  379. background-color: #6e8cd7;
  380. bottom: 0;
  381. height: 2px;
  382. position: absolute;
  383. will-change: left, right;
  384. }
  385. .tabs-top .indicator {
  386. top: 0;
  387. }
  388. .nav.nav-tabs + .tab-content {
  389. background: #ffffff;
  390. margin-bottom: 30px;
  391. padding: 30px;
  392. }
  393. .tabs-vertical-env {
  394. background-color: #eeeeee;
  395. margin-bottom: 30px;
  396. }
  397. .tabs-vertical-env .tab-content {
  398. background: #ffffff;
  399. display: table-cell;
  400. margin-bottom: 30px;
  401. padding: 30px;
  402. vertical-align: top;
  403. }
  404. .tabs-vertical-env .nav.tabs-vertical {
  405. display: table-cell;
  406. min-width: 120px;
  407. vertical-align: top;
  408. width: 150px;
  409. }
  410. .tabs-vertical-env .nav.tabs-vertical li.active > a {
  411. background-color: #ffffff;
  412. border: 0;
  413. }
  414. .tabs-vertical-env .nav.tabs-vertical li > a {
  415. color: #333333;
  416. text-align: center;
  417. white-space: nowrap;
  418. }
  419. .nav.nav-tabs > li.active > a {
  420. background-color: #ffffff;
  421. border: 0;
  422. }
  423. .nav.nav-tabs > li > a,
  424. .nav.tabs-vertical > li > a {
  425. background-color: transparent;
  426. border-radius: 0;
  427. border: none;
  428. color: #333333 !important;
  429. cursor: pointer;
  430. line-height: 50px;
  431. font-weight: 500;
  432. padding-left: 20px;
  433. padding-right: 20px;
  434. }
  435. .nav.nav-tabs > li > a:hover,
  436. .nav.tabs-vertical > li > a:hover {
  437. color: #6e8cd7 !important;
  438. }
  439. .tab-content {
  440. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  441. color: #777777;
  442. }
  443. .nav.nav-tabs > li:last-of-type a {
  444. margin-right: 0px;
  445. }
  446. .nav.nav-tabs {
  447. border-bottom: 0;
  448. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  449. }
  450. .navtab-bg {
  451. background-color: #eeeeee;
  452. }
  453. .nav-tabs.nav-justified > .active > a,
  454. .nav-tabs.nav-justified > .active > a:hover,
  455. .nav-tabs.nav-justified > .active > a:focus,
  456. .tabs-vertical-env .nav.tabs-vertical li.active > a {
  457. border: none;
  458. }
  459. .nav-tabs > li.active > a,
  460. .nav-tabs > li.active > a:focus,
  461. .nav-tabs > li.active > a:hover,
  462. .tabs-vertical > li.active > a,
  463. .tabs-vertical > li.active > a:focus,
  464. .tabs-vertical > li.active > a:hover {
  465. color: #6e8cd7 !important;
  466. }
  467. /* Dropcap */
  468. .dropcap {
  469. font-size: 3.1em;
  470. }
  471. .dropcap,
  472. .dropcap-circle,
  473. .dropcap-square {
  474. display: block;
  475. float: left;
  476. font-weight: 400;
  477. line-height: 36px;
  478. margin-right: 6px;
  479. text-shadow: none;
  480. }
  481. .modal .modal-dialog .modal-content {
  482. -moz-box-shadow: none;
  483. -webkit-box-shadow: none;
  484. border-color: #DDDDDD;
  485. border-radius: 2px;
  486. box-shadow: none;
  487. padding: 30px;
  488. }
  489. .modal .modal-dialog .modal-content .modal-header {
  490. border-bottom-width: 2px;
  491. margin: 0;
  492. padding-bottom: 15px;
  493. padding: 0;
  494. }
  495. .modal .modal-dialog .modal-content .modal-body {
  496. padding: 20px 0;
  497. }
  498. .modal .modal-dialog .modal-content .modal-footer {
  499. padding-top: 15px;
  500. /*padding: 0;*/
  501. }
  502. .modal-full {
  503. width: 98%;
  504. }
  505. .modal-content .nav.nav-tabs + .tab-content {
  506. margin-bottom: 0px;
  507. }
  508. .modal-content .panel-group {
  509. margin-bottom: 0px;
  510. }
  511. .modal-content .panel {
  512. border-top: none;
  513. }
  514. .tabs-vertical-env .tab-content {
  515. margin-bottom: 0px;
  516. }
  517. .table > thead > tr > td.middle-align,
  518. .table > tbody > tr > td.middle-align,
  519. .table > tfood > tr > td.middle-align,
  520. .table > thead > tr > th.middle-align,
  521. .table > tbody > tr > th.middle-align,
  522. .table > tfood > tr > th.middle-align {
  523. vertical-align: middle;
  524. }
  525. .legendLabel {
  526. padding-left: 10px !important;
  527. }
  528. .alert-success {
  529. background-color: #ccedda;
  530. border-color: #7ad19f;
  531. color: #33b86c;
  532. }
  533. .alert-success .alert-link {
  534. color: #268a51;
  535. }
  536. .list-group-item.active {
  537. background-color: #dddddd;
  538. border-color: #dddddd;
  539. color: #444444;
  540. z-index: 2;
  541. }
  542. .list-group-item.active:hover {
  543. background-color: #dddddd;
  544. border-color: #dddddd;
  545. color: #444444;
  546. z-index: 2;
  547. }
  548. .list-group-item.active:hover .list-group-item-text {
  549. color: #6e8cd7;
  550. }
  551. .list-group-item.active:focus {
  552. background-color: #dddddd;
  553. border-color: #dddddd;
  554. color: #444444;
  555. z-index: 2;
  556. }
  557. .list-group-item.active:focus .list-group-item-text {
  558. color: #6e8cd7;
  559. }
  560. .list-group-item.active .list-group-item-text {
  561. color: #6e8cd7;
  562. }
  563. .list-group-item {
  564. border-radius: 0px;
  565. padding: 12px 20px;
  566. }
  567. .list-group-item:first-child {
  568. border-radius: 0px;
  569. padding: 12px 20px;
  570. }
  571. .list-group-item:last-child {
  572. border-radius: 0px;
  573. padding: 12px 20px;
  574. }
  575. .list-group-item-heading {
  576. font-weight: 300;
  577. }
  578. .list-group-item.active > .badge {
  579. color: #6e8cd7;
  580. }
  581. .nav-pills > .active > a > .badge {
  582. color: #6e8cd7;
  583. }
  584. .has-success .form-control {
  585. border-color: #33b86c;
  586. box-shadow: none !important;
  587. }
  588. .has-warning .form-control {
  589. border-color: #ffd740;
  590. box-shadow: none !important;
  591. }
  592. .has-error .form-control {
  593. border-color: #ef5350;
  594. box-shadow: none !important;
  595. }
  596. .input-group-addon {
  597. border-radius: 2px;
  598. border: 1px solid #eeeeee;
  599. }
  600. /* ==============
  601. Helper Classes
  602. ===================*/
  603. .p-0 {
  604. padding: 0px !important;
  605. }
  606. .p-t-0 {
  607. padding-top: 0px !important;
  608. }
  609. .p-t-10 {
  610. padding-top: 10px !important;
  611. }
  612. .p-b-10 {
  613. padding-bottom: 10px !important;
  614. }
  615. .m-0 {
  616. margin: 0px !important;
  617. }
  618. .m-r-5 {
  619. margin-right: 5px;
  620. }
  621. .m-r-10 {
  622. margin-right: 10px;
  623. }
  624. .m-r-15 {
  625. margin-right: 15px !important;
  626. }
  627. .m-l-10 {
  628. margin-left: 10px;
  629. }
  630. .m-l-15 {
  631. margin-left: 15px;
  632. }
  633. .m-t-5 {
  634. margin-top: 5px !important;
  635. }
  636. .m-t-0 {
  637. margin-top: 0px;
  638. }
  639. .m-t-10 {
  640. margin-top: 10px !important;
  641. }
  642. .m-t-15 {
  643. margin-top: 15px !important;
  644. }
  645. .m-t-20 {
  646. margin-top: 20px;
  647. }
  648. .m-t-30 {
  649. margin-top: 30px !important;
  650. }
  651. .m-t-40 {
  652. margin-top: 40px !important;
  653. }
  654. .m-b-0 {
  655. margin-bottom: 0px;
  656. }
  657. .m-b-5 {
  658. margin-bottom: 5px;
  659. }
  660. .m-b-10 {
  661. margin-bottom: 10px;
  662. }
  663. .m-b-15 {
  664. margin-bottom: 15px;
  665. }
  666. .m-b-30 {
  667. margin-bottom: 30px;
  668. }
  669. .w-xs {
  670. min-width: 80px;
  671. }
  672. .w-sm {
  673. min-width: 95px;
  674. }
  675. .w-md {
  676. min-width: 110px;
  677. }
  678. .w-lg {
  679. min-width: 140px;
  680. }
  681. .m-h-50 {
  682. min-height: 50px;
  683. }
  684. .l-h-34 {
  685. line-height: 34px;
  686. }
  687. .font-light {
  688. font-weight: 300;
  689. }
  690. .wrapper-md {
  691. padding: 20px;
  692. }
  693. .pull-in {
  694. margin-left: -15px;
  695. margin-right: -15px;
  696. }
  697. .b-0 {
  698. border: none !important;
  699. }
  700. .no-border {
  701. border: none;
  702. }
  703. .bx-shadow {
  704. -moz-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  705. -webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  706. box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.1);
  707. }
  708. .mx-box {
  709. max-height: 380px;
  710. min-height: 380px;
  711. }
  712. .thumb-sm {
  713. height: 32px;
  714. width: 32px;
  715. }
  716. .thumb-md {
  717. height: 48px;
  718. width: 48px;
  719. }
  720. .thumb-lg {
  721. height: 88px;
  722. width: 88px;
  723. }
  724. .grid-structure .grid-container {
  725. background-color: #f5f5f5;
  726. margin-bottom: 10px;
  727. padding: 10px 20px;
  728. }
  729. .icon-list div {
  730. cursor: pointer;
  731. line-height: 40px;
  732. white-space: nowrap;
  733. }
  734. .icon-list i {
  735. -webkit-transition: all 0.2s;
  736. -webkit-transition: font-size 0.2s;
  737. display: inline-block;
  738. font-size: 14px;
  739. margin: 0;
  740. text-align: center;
  741. transition: all 0.2s;
  742. transition: font-size 0.2s;
  743. vertical-align: middle;
  744. width: 40px;
  745. }
  746. .icon-list .col-md-3:hover i {
  747. -o-transform: scale(2);
  748. -webkit-transform: scale(2);
  749. moz-transform: scale(2);
  750. transform: scale(2);
  751. }
  752. .ionicon-list i {
  753. font-size: 16px;
  754. }
  755. .ionicon-list .col-md-3:hover i {
  756. -o-transform: scale(2);
  757. -webkit-transform: scale(2);
  758. moz-transform: scale(2);
  759. transform: scale(2);
  760. }
  761. /* ==============
  762. Waves Effect
  763. ===================*/
  764. /*!
  765. * Waves v0.6.0
  766. * http://fian.my.id/Waves
  767. *
  768. * Copyright 2014 Alfiana E. Sibuea and other contributors
  769. * Released under the MIT license
  770. * https://github.com/fians/Waves/blob/master/LICENSE
  771. */
  772. .waves-effect {
  773. position: relative;
  774. cursor: pointer;
  775. display: inline-block;
  776. overflow: hidden;
  777. -webkit-user-select: none;
  778. -moz-user-select: none;
  779. -ms-user-select: none;
  780. user-select: none;
  781. -webkit-tap-highlight-color: transparent;
  782. vertical-align: middle;
  783. z-index: 1;
  784. will-change: opacity, transform;
  785. -webkit-transition: all 0.3s ease-out;
  786. -moz-transition: all 0.3s ease-out;
  787. -o-transition: all 0.3s ease-out;
  788. -ms-transition: all 0.3s ease-out;
  789. transition: all 0.3s ease-out;
  790. }
  791. .waves-effect .waves-ripple {
  792. position: absolute;
  793. border-radius: 50%;
  794. width: 20px;
  795. height: 20px;
  796. margin-top: -10px;
  797. margin-left: -10px;
  798. opacity: 0;
  799. background: rgba(0, 0, 0, 0.2);
  800. -webkit-transition: all 0.7s ease-out;
  801. -moz-transition: all 0.7s ease-out;
  802. -o-transition: all 0.7s ease-out;
  803. -ms-transition: all 0.7s ease-out;
  804. transition: all 0.7s ease-out;
  805. -webkit-transition-property: -webkit-transform, opacity;
  806. -moz-transition-property: -moz-transform, opacity;
  807. -o-transition-property: -o-transform, opacity;
  808. transition-property: transform, opacity;
  809. -webkit-transform: scale(0);
  810. -moz-transform: scale(0);
  811. -ms-transform: scale(0);
  812. -o-transform: scale(0);
  813. transform: scale(0);
  814. pointer-events: none;
  815. }
  816. .waves-effect.waves-light .waves-ripple {
  817. background-color: rgba(255, 255, 255, 0.45);
  818. }
  819. .waves-effect.waves-red .waves-ripple {
  820. background-color: rgba(244, 67, 54, 0.7);
  821. }
  822. .waves-effect.waves-yellow .waves-ripple {
  823. background-color: rgba(255, 235, 59, 0.7);
  824. }
  825. .waves-effect.waves-orange .waves-ripple {
  826. background-color: rgba(255, 152, 0, 0.7);
  827. }
  828. .waves-effect.waves-purple .waves-ripple {
  829. background-color: rgba(156, 39, 176, 0.7);
  830. }
  831. .waves-effect.waves-green .waves-ripple {
  832. background-color: rgba(76, 175, 80, 0.7);
  833. }
  834. .waves-effect.waves-teal .waves-ripple {
  835. background-color: rgba(0, 150, 136, 0.7);
  836. }
  837. .waves-notransition {
  838. -webkit-transition: none !important;
  839. -moz-transition: none !important;
  840. -o-transition: none !important;
  841. -ms-transition: none !important;
  842. transition: none !important;
  843. }
  844. .waves-circle {
  845. -webkit-transform: translateZ(0);
  846. -moz-transform: translateZ(0);
  847. -ms-transform: translateZ(0);
  848. -o-transform: translateZ(0);
  849. transform: translateZ(0);
  850. -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
  851. text-align: center;
  852. width: 2.5em;
  853. height: 2.5em;
  854. line-height: 2.5em;
  855. border-radius: 50%;
  856. -webkit-mask-image: none;
  857. }
  858. .waves-input-wrapper {
  859. border-radius: 0.2em;
  860. vertical-align: bottom;
  861. }
  862. .waves-input-wrapper .waves-button-input {
  863. position: relative;
  864. top: 0;
  865. left: 0;
  866. z-index: 1;
  867. }
  868. .waves-block {
  869. display: block;
  870. }
  871. /* ==============
  872. Animation
  873. ===================*/
  874. /* Bounce 1 */
  875. @-webkit-keyframes cd-bounce-1 {
  876. 0% {
  877. opacity: 0;
  878. -webkit-transform: scale(0.5);
  879. }
  880. 60% {
  881. opacity: 1;
  882. -webkit-transform: scale(1.2);
  883. }
  884. 100% {
  885. -webkit-transform: scale(1);
  886. }
  887. }
  888. @-moz-keyframes cd-bounce-1 {
  889. 0% {
  890. opacity: 0;
  891. -moz-transform: scale(0.5);
  892. }
  893. 60% {
  894. opacity: 1;
  895. -moz-transform: scale(1.2);
  896. }
  897. 100% {
  898. -moz-transform: scale(1);
  899. }
  900. }
  901. @-o-keyframes cd-bounce-1 {
  902. 0% {
  903. opacity: 0;
  904. -o-transform: scale(0.5);
  905. }
  906. 60% {
  907. opacity: 1;
  908. -o-transform: scale(1.2);
  909. }
  910. 100% {
  911. -o-transform: scale(1);
  912. }
  913. }
  914. @keyframes cd-bounce-1 {
  915. 0% {
  916. opacity: 0;
  917. -webkit-transform: scale(0.5);
  918. -moz-transform: scale(0.5);
  919. -ms-transform: scale(0.5);
  920. -o-transform: scale(0.5);
  921. transform: scale(0.5);
  922. }
  923. 60% {
  924. opacity: 1;
  925. -webkit-transform: scale(1.2);
  926. -moz-transform: scale(1.2);
  927. -ms-transform: scale(1.2);
  928. -o-transform: scale(1.2);
  929. transform: scale(1.2);
  930. }
  931. 100% {
  932. opacity: 1;
  933. -webkit-transform: scale(1);
  934. -moz-transform: scale(1);
  935. -ms-transform: scale(1);
  936. -o-transform: scale(1);
  937. transform: scale(1);
  938. }
  939. }
  940. /* Bounce 2 */
  941. @-webkit-keyframes cd-bounce-2 {
  942. 0% {
  943. opacity: 0;
  944. -webkit-transform: translateX(-100px);
  945. }
  946. 60% {
  947. opacity: 1;
  948. -webkit-transform: translateX(20px);
  949. }
  950. 100% {
  951. -webkit-transform: translateX(0);
  952. }
  953. }
  954. @-moz-keyframes cd-bounce-2 {
  955. 0% {
  956. opacity: 0;
  957. -moz-transform: translateX(-100px);
  958. }
  959. 60% {
  960. opacity: 1;
  961. -moz-transform: translateX(20px);
  962. }
  963. 100% {
  964. -moz-transform: translateX(0);
  965. }
  966. }
  967. @-o-keyframes cd-bounce-2 {
  968. 0% {
  969. opacity: 0;
  970. -o-transform: translateX(-100px);
  971. }
  972. 60% {
  973. opacity: 1;
  974. -o-transform: translateX(20px);
  975. }
  976. 100% {
  977. opacity: 1;
  978. -o-transform: translateX(0);
  979. }
  980. }
  981. @keyframes cd-bounce-2 {
  982. 0% {
  983. opacity: 0;
  984. -webkit-transform: translateX(-100px);
  985. -moz-transform: translateX(-100px);
  986. -ms-transform: translateX(-100px);
  987. -o-transform: translateX(-100px);
  988. transform: translateX(-100px);
  989. }
  990. 60% {
  991. opacity: 1;
  992. -webkit-transform: translateX(20px);
  993. -moz-transform: translateX(20px);
  994. -ms-transform: translateX(20px);
  995. -o-transform: translateX(20px);
  996. transform: translateX(20px);
  997. }
  998. 100% {
  999. opacity: 1;
  1000. -webkit-transform: translateX(0);
  1001. -moz-transform: translateX(0);
  1002. -ms-transform: translateX(0);
  1003. -o-transform: translateX(0);
  1004. transform: translateX(0);
  1005. }
  1006. }
  1007. /* Dropdown */
  1008. @-webkit-keyframes dropdownOpen {
  1009. 0% {
  1010. opacity: 0;
  1011. -webkit-transform: scale(0);
  1012. }
  1013. 100% {
  1014. -webkit-transform: scale(1);
  1015. }
  1016. }
  1017. @-moz-keyframes dropdownOpen {
  1018. 0% {
  1019. opacity: 0;
  1020. -moz-transform: scale(0);
  1021. }
  1022. 100% {
  1023. -moz-transform: scale(1);
  1024. }
  1025. }
  1026. @-o-keyframes dropdownOpen {
  1027. 0% {
  1028. opacity: 0;
  1029. -o-transform: scale(0);
  1030. }
  1031. 100% {
  1032. -o-transform: scale(1);
  1033. }
  1034. }
  1035. @keyframes dropdownOpen {
  1036. 0% {
  1037. opacity: 0;
  1038. -webkit-transform: scale(0);
  1039. -moz-transform: scale(0);
  1040. -ms-transform: scale(0);
  1041. -o-transform: scale(0);
  1042. transform: scale(0);
  1043. }
  1044. 100% {
  1045. opacity: 1;
  1046. -webkit-transform: scale(1);
  1047. -moz-transform: scale(1);
  1048. -ms-transform: scale(1);
  1049. -o-transform: scale(1);
  1050. transform: scale(1);
  1051. }
  1052. }
  1053. /* Progressbar Animated */
  1054. @-webkit-keyframes animationProgress {
  1055. from {
  1056. width: 0;
  1057. }
  1058. }
  1059. @keyframes animationProgress {
  1060. from {
  1061. width: 0;
  1062. }
  1063. }
  1064. /* Portlets loader */
  1065. @-webkit-keyframes loaderAnimate {
  1066. 0% {
  1067. -webkit-transform: rotate(0deg);
  1068. }
  1069. 100% {
  1070. -webkit-transform: rotate(220deg);
  1071. }
  1072. }
  1073. @-moz-keyframes loaderAnimate {
  1074. 0% {
  1075. -moz-transform: rotate(0deg);
  1076. }
  1077. 100% {
  1078. -moz-transform: rotate(220deg);
  1079. }
  1080. }
  1081. @-o-keyframes loaderAnimate {
  1082. 0% {
  1083. -o-transform: rotate(0deg);
  1084. }
  1085. 100% {
  1086. -o-transform: rotate(220deg);
  1087. }
  1088. }
  1089. @keyframes loaderAnimate {
  1090. 0% {
  1091. transform: rotate(0deg);
  1092. }
  1093. 100% {
  1094. transform: rotate(220deg);
  1095. }
  1096. }
  1097. @-webkit-keyframes loaderAnimate2 {
  1098. 0% {
  1099. box-shadow: inset #555 0 0 0 8px;
  1100. -webkit-transform: rotate(-140deg);
  1101. }
  1102. 50% {
  1103. box-shadow: inset #555 0 0 0 2px;
  1104. }
  1105. 100% {
  1106. box-shadow: inset #555 0 0 0 8px;
  1107. -webkit-transform: rotate(140deg);
  1108. }
  1109. }
  1110. @-moz-keyframes loaderAnimate2 {
  1111. 0% {
  1112. box-shadow: inset #555 0 0 0 8px;
  1113. -moz-transform: rotate(-140deg);
  1114. }
  1115. 50% {
  1116. box-shadow: inset #555 0 0 0 2px;
  1117. }
  1118. 100% {
  1119. box-shadow: inset #555 0 0 0 8px;
  1120. -moz-transform: rotate(140deg);
  1121. }
  1122. }
  1123. @-o-keyframes loaderAnimate2 {
  1124. 0% {
  1125. box-shadow: inset #555 0 0 0 8px;
  1126. -o-transform: rotate(-140deg);
  1127. }
  1128. 50% {
  1129. box-shadow: inset #555 0 0 0 2px;
  1130. }
  1131. 100% {
  1132. box-shadow: inset #555 0 0 0 8px;
  1133. -o-transform: rotate(140deg);
  1134. }
  1135. }
  1136. @keyframes loaderAnimate2 {
  1137. 0% {
  1138. box-shadow: inset #555 0 0 0 8px;
  1139. -webkit-transform: rotate(-140deg);
  1140. -moz-transform: rotate(-140deg);
  1141. -ms-transform: rotate(-140deg);
  1142. transform: rotate(-140deg);
  1143. }
  1144. 50% {
  1145. box-shadow: inset #555 0 0 0 2px;
  1146. }
  1147. 100% {
  1148. box-shadow: inset #555 0 0 0 8px;
  1149. -webkit-transform: rotate(140deg);
  1150. -moz-transform: rotate(140deg);
  1151. -ms-transform: rotate(140deg);
  1152. transform: rotate(140deg);
  1153. }
  1154. }
  1155. @keyframes loaderAnimate2 {
  1156. 0% {
  1157. box-shadow: inset #999 0 0 0 17px;
  1158. transform: rotate(-140deg);
  1159. }
  1160. 50% {
  1161. box-shadow: inset #999 0 0 0 2px;
  1162. }
  1163. 100% {
  1164. box-shadow: inset #999 0 0 0 17px;
  1165. transform: rotate(140deg);
  1166. }
  1167. }
  1168. @media print {
  1169. .logo,.page-title,.breadcrumb,.footer {
  1170. display: none !important;
  1171. margin: 0px !important;
  1172. padding: 0px !important;
  1173. }
  1174. .left {
  1175. display: none;
  1176. }
  1177. .right-bar {
  1178. display: none !important;
  1179. }
  1180. .content {
  1181. margin-top: 0px;
  1182. padding-top: 0px;
  1183. }
  1184. .content-page {
  1185. margin-left: 0px !important;
  1186. margin-top: 0px;
  1187. }
  1188. }
  1189. .dever_desc
  1190. {
  1191. width:100%;
  1192. height:auto;
  1193. text-align:left;
  1194. border:1px dotted #bababa;
  1195. margin-bottom:20px;
  1196. cursor:pointer;
  1197. line-height:30px;
  1198. padding-left:10px;
  1199. margin-top:20px;
  1200. }
  1201. /*
  1202. .dever_form_add
  1203. {
  1204. width:50%;
  1205. height:auto;
  1206. text-align:center;
  1207. border:2px dotted #b8b8b8;
  1208. margin-bottom:20px;
  1209. cursor:pointer;
  1210. }
  1211. */
  1212. .dever_form_add
  1213. {
  1214. height:auto;
  1215. text-align:center;
  1216. border:2px dotted #b8b8b8;
  1217. margin-bottom:20px;
  1218. cursor:pointer;
  1219. }
  1220. .dever_form_hr
  1221. {
  1222. width:50%;
  1223. height:auto;
  1224. text-align:left;
  1225. border:2px dotted #b8b8b8;
  1226. background:#bababa;
  1227. font-weight:bold;
  1228. margin-bottom:20px;
  1229. padding-left:2px;
  1230. cursor:pointer;
  1231. }
  1232. .dever_form_add_child
  1233. {
  1234. width:100%;
  1235. height:auto;
  1236. border:1px solid #b8b8b8;
  1237. background-color: #f8f8f8;
  1238. box-shadow: 0 2px 2px rgba(0,0,0,0.1);
  1239. padding: 15px 20px 20px 20px;
  1240. margin-top: 10px;
  1241. }
  1242. .dever_form_delete
  1243. {
  1244. float:right;
  1245. color:red;
  1246. cursor:pointer;
  1247. }
  1248. .pagination .dever_page_disabled a
  1249. {
  1250. background-color:#eee;
  1251. }
  1252. .tables
  1253. {
  1254. width:100px;
  1255. max-width: 100px;
  1256. overflow: scroll;
  1257. }
  1258. .form_margin
  1259. {
  1260. display:inline;
  1261. }
  1262. tds
  1263. {
  1264. max-width: 300px;
  1265. overflow: auto;
  1266. }
  1267. .content,.sidebar-nav
  1268. {
  1269. border-top:1px solid #bababa;
  1270. }
  1271. .banner
  1272. {
  1273. margin:10px;
  1274. margin-top:-10px;
  1275. }
  1276. .banner img
  1277. {
  1278. margin:10px;
  1279. max-width:300px;
  1280. }
  1281. .banner span
  1282. {
  1283. margin-left:2px;
  1284. font-weight:bold;
  1285. }
  1286. .faq-content .panel-heading
  1287. {
  1288. font-size: 1em;
  1289. }
  1290. .faq-content .panel-heading a
  1291. {
  1292. font-size: 0.6em;
  1293. }
  1294. .faq-content .col-sm-3 ul, .faq-content .col-sm-9 ul
  1295. {
  1296. list-style-type:none;
  1297. margin-left:0em;
  1298. padding-left: 0em;
  1299. padding-bottom:10px;
  1300. }
  1301. .faq-content .col-sm-3 ul li
  1302. {
  1303. float: left;
  1304. width: 33%;
  1305. }
  1306. .faq-content .col-sm-3 ul li div
  1307. {
  1308. font-size:6rem;
  1309. }
  1310. .faq-content .col-sm-3 ul li a
  1311. {
  1312. text-align: center;
  1313. }
  1314. .panel-body .red
  1315. {
  1316. color:#fff;background-color:red;padding:3px;margin-right:5px;
  1317. }
  1318. .panel-body .back
  1319. {
  1320. color:#fff;background-color:#bababa;padding:3px;margin-right:5px;
  1321. }
  1322. .Whoops
  1323. {
  1324. z-index: 999999;
  1325. }
  1326. .glyphicon
  1327. {
  1328. top:0px;
  1329. }
  1330. .dropdown-menu
  1331. {
  1332. min-width: auto;
  1333. }
  1334. .footer
  1335. {
  1336. position: static;
  1337. }
  1338. .dropdown a span
  1339. {
  1340. font-size:20px;
  1341. }
  1342. .dropdown .glyphicon
  1343. {
  1344. top:2px;
  1345. }
  1346. .data-auth-top li a
  1347. {
  1348. margin-top: -5px;
  1349. }
  1350. .dever-color
  1351. {
  1352. margin:0;
  1353. padding:0;
  1354. border:0;
  1355. line-height:20px;
  1356. }