eliteadmin.scss 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553
  1. // @import "variables.scss";
  2. // Global Styles
  3. * {
  4. outline:none !important;
  5. }
  6. body {
  7. background: $sidebar;
  8. font-family: $basefont1;
  9. margin: 0;
  10. overflow-x: hidden;
  11. color: $bodytext;
  12. font-weight:300;
  13. }
  14. html {
  15. position: relative;
  16. min-height: 100%;
  17. // background: $white;
  18. }
  19. h1, h2, h3, h4, h5, h6 {
  20. color: $headingtext;
  21. font-family: $basefont2;
  22. margin: 10px 0;
  23. font-weight:300;
  24. }
  25. h1 {
  26. line-height: 48px;
  27. font-size:36px
  28. }
  29. h2 {
  30. line-height: 36px;
  31. font-size:24px
  32. }
  33. h3 {
  34. line-height: 30px;
  35. font-size:21px
  36. }
  37. h4 {
  38. line-height: 22px;
  39. font-size:18px
  40. }
  41. h5 {
  42. font-size: 18px;
  43. font-size:16px
  44. }
  45. h5 {
  46. font-size: 16px;
  47. font-size:14px
  48. }
  49. .dn{ display:none;}
  50. .db{ display:block;}
  51. .light_op_text{ color:rgba(255, 255, 255, 0.5);}
  52. /*
  53. blockquote {
  54. border-left:5px solid $themecolor!important;
  55. border:1px solid $border;
  56. }
  57. */
  58. p {
  59. line-height:1.6;
  60. }
  61. b {
  62. font-weight:$font-bold;
  63. }
  64. a {
  65. color: $linktext;
  66. &:hover, &:focus {
  67. color: $linktext-hover;
  68. }
  69. &:hover {
  70. outline: 0;
  71. text-decoration: none;
  72. }
  73. &:active {
  74. outline: 0;
  75. text-decoration: none;
  76. }
  77. &:focus {
  78. outline: 0;
  79. text-decoration: none;
  80. }
  81. }
  82. .clear{ clear:both;}
  83. .font-12{font-size:12px;}
  84. .font-18{font-size:18px;}
  85. .font-21{font-size:21px;}
  86. hr{ border-color: $border;}
  87. .b-t {
  88. border-top: 1px solid $border;
  89. }
  90. .b-b {
  91. border-bottom: 1px solid $border;
  92. }
  93. .b-l {
  94. border-left: 1px solid $border;
  95. }
  96. .b-r {
  97. border-right: 1px solid $border;
  98. }
  99. .b-all {
  100. border:1px solid $border;
  101. }
  102. .b-none{
  103. border:0px!important;
  104. }
  105. .max-height{
  106. height:310px;
  107. overflow:auto;
  108. }
  109. .p-0 {
  110. padding:0px !important;
  111. }
  112. .p-10 {
  113. padding:10px !important;
  114. }
  115. .p-20 {
  116. padding:20px !important;
  117. }
  118. .p-30 {
  119. padding:30px !important;
  120. }
  121. .p-l-0 {
  122. padding-left:0px !important;
  123. }
  124. .p-l-10 {
  125. padding-left:10px !important;
  126. }
  127. .p-l-20 {
  128. padding-left:20px !important;
  129. }
  130. .p-r-0 {
  131. padding-right:0px !important;
  132. }
  133. .p-r-10{
  134. padding-right:10px !important;
  135. }
  136. .p-r-20{
  137. padding-right:20px !important;
  138. }
  139. .p-r-30{
  140. padding-right:30px !important;
  141. }
  142. .p-r-40{
  143. padding-right:40px !important;
  144. }
  145. .p-t-0 {
  146. padding-top:0px !important;
  147. }
  148. .p-t-10 {
  149. padding-top:10px !important;
  150. }
  151. .p-t-20 {
  152. padding-top:20px !important;
  153. }
  154. .p-b-0 {
  155. padding-bottom:0px !important;
  156. }
  157. .p-b-10 {
  158. padding-bottom:10px !important;
  159. }
  160. .p-b-20 {
  161. padding-bottom:20px !important;
  162. }
  163. .p-b-30 {
  164. padding-bottom:30px !important;
  165. }
  166. .p-b-40 {
  167. padding-bottom:40px !important;
  168. }
  169. .m-0 {
  170. margin:0px !important;
  171. }
  172. .m-l-5 {
  173. margin-left:5px !important;
  174. }
  175. .m-l-10 {
  176. margin-left:10px !important;
  177. }
  178. .m-l-15 {
  179. margin-left:15px !important;
  180. }
  181. .m-l-20 {
  182. margin-left:20px !important;
  183. }
  184. .m-l-30 {
  185. margin-left:30px !important;
  186. }
  187. .m-l-40 {
  188. margin-left:40px !important;
  189. }
  190. .m-r-5 {
  191. margin-right:5px !important;
  192. }
  193. .m-r-10 {
  194. margin-right:10px !important;
  195. }
  196. .m-r-15 {
  197. margin-right:15px !important;
  198. }
  199. .m-r-20 {
  200. margin-right:20px !important;
  201. }
  202. .m-r-30 {
  203. margin-right:30px !important;
  204. }
  205. .m-r-40 {
  206. margin-right:40px !important;
  207. }
  208. .m-t-5 {
  209. margin-top:5px !important;
  210. }
  211. .m-t-0 {
  212. margin-top:0px !important;
  213. }
  214. .m-t-10 {
  215. margin-top:10px !important;
  216. }
  217. .m-t-15 {
  218. margin-top:15px !important;
  219. }
  220. .m-t-20 {
  221. margin-top:20px !important;
  222. }
  223. .m-t-30 {
  224. margin-top:30px !important;
  225. }
  226. .m-t-40 {
  227. margin-top:40px !important;
  228. }
  229. .m-b-0 {
  230. margin-bottom:0px !important;
  231. }
  232. .m-b-5 {
  233. margin-bottom:5px !important;
  234. }
  235. .m-b-10 {
  236. margin-bottom:10px !important;
  237. }
  238. .m-b-15 {
  239. margin-bottom:15px !important;
  240. }
  241. .m-b-20 {
  242. margin-bottom:20px !important;
  243. }
  244. .m-b-30 {
  245. margin-bottom:30px !important;
  246. }
  247. .m-b-40 {
  248. margin-bottom:40px !important;
  249. }
  250. .vt{
  251. vertical-align:top;
  252. }
  253. .vb{
  254. vertical-align:bottom;
  255. }
  256. .font-bold, b, strong {
  257. font-weight: $font-bold;
  258. }
  259. .font-normal {
  260. font-weight: normal;
  261. }
  262. .font-light {
  263. font-weight: 300;
  264. }
  265. .pull-in {
  266. margin-left: -15px;
  267. margin-right: -15px;
  268. }
  269. .b-0 {
  270. border: none !important;
  271. }
  272. .vertical-middle {
  273. vertical-align: middle;
  274. }
  275. .bx-shadow {
  276. -moz-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.1);
  277. -webkit-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.1);
  278. box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.1);
  279. }
  280. .mx-box {
  281. max-height: 380px;
  282. min-height: 380px;
  283. }
  284. .thumb-sm {
  285. height: 32px;
  286. width: 32px;
  287. }
  288. .thumb-md {
  289. height: 48px;
  290. width: 48px;
  291. }
  292. .thumb-lg {
  293. height: 88px;
  294. width: 88px;
  295. }
  296. .txt-oflo{
  297. text-overflow: ellipsis;
  298. overflow:hidden;
  299. white-space:nowrap;
  300. }
  301. .get-code{
  302. color:$dark;
  303. cursor:pointer;
  304. border-radius:100%;
  305. background:$white;
  306. padding:4px 5px;
  307. font-size:10px;
  308. margin:0 5px;
  309. vertical-align:middle;
  310. }
  311. /* Badge */
  312. .badge {
  313. text-transform: uppercase;
  314. font-weight:$font-bold;
  315. padding: 3px 5px;
  316. font-size: 12px;
  317. margin-top: 1px;
  318. background-color: $warning;
  319. }
  320. .badge-xs {
  321. font-size: 9px;
  322. }
  323. .badge-xs, .badge-sm {
  324. -webkit-transform: translate(0, -2px);
  325. -ms-transform: translate(0, -2px);
  326. -o-transform: translate(0, -2px);
  327. transform: translate(0, -2px);
  328. }
  329. .badge-success {
  330. background-color: $success;
  331. }
  332. .badge-info {
  333. background-color: $info;
  334. }
  335. .badge-warning {
  336. background-color: $warning;
  337. }
  338. .badge-danger {
  339. background-color: $danger;
  340. }
  341. .badge-purple {
  342. background-color: $purple;
  343. }
  344. .badge-red {
  345. background-color: $red;
  346. }
  347. .badge-inverse {
  348. background-color: $inverse;
  349. }
  350. /*notify*/
  351. .notify{
  352. position:relative;
  353. margin-top:-30px;
  354. .heartbit{
  355. position: absolute;
  356. top: -20px;
  357. right:-16px;
  358. height: 25px;
  359. width: 25px;
  360. z-index: 10;
  361. border:5px solid $danger;
  362. border-radius:70px;
  363. -moz-animation: heartbit 1s ease-out;
  364. -moz-animation-iteration-count: infinite;
  365. -o-animation: heartbit 1s ease-out;
  366. -o-animation-iteration-count: infinite;
  367. -webkit-animation: heartbit 1s ease-out;
  368. -webkit-animation-iteration-count: infinite;
  369. animation-iteration-count: infinite;
  370. }
  371. .point{
  372. width: 6px;
  373. height: 6px;
  374. -webkit-border-radius: 30px;
  375. -moz-border-radius: 30px;
  376. border-radius: 30px;
  377. background-color: $danger;
  378. position: absolute;
  379. right: -6px;
  380. top:-10px;
  381. }
  382. }
  383. @-moz-keyframes heartbit {
  384. 0% {
  385. -moz-transform: scale(0);
  386. opacity: 0.0;
  387. }
  388. 25% {
  389. -moz-transform: scale(0.1);
  390. opacity: 0.1;
  391. }
  392. 50% {
  393. -moz-transform: scale(0.5);
  394. opacity: 0.3;
  395. }
  396. 75% {
  397. -moz-transform: scale(0.8);
  398. opacity: 0.5;
  399. }
  400. 100% {
  401. -moz-transform: scale(1);
  402. opacity: 0.0;
  403. }
  404. }
  405. @-webkit-keyframes heartbit {
  406. 0% {
  407. -webkit-transform: scale(0);
  408. opacity: 0.0;
  409. }
  410. 25% {
  411. -webkit-transform: scale(0.1);
  412. opacity: 0.1;
  413. }
  414. 50% {
  415. -webkit-transform: scale(0.5);
  416. opacity: 0.3;
  417. }
  418. 75% {
  419. -webkit-transform: scale(0.8);
  420. opacity: 0.5;
  421. }
  422. 100% {
  423. -webkit-transform: scale(1);
  424. opacity: 0.0;
  425. }
  426. }
  427. /* Text colors */
  428. .text-white {
  429. color: $white;
  430. }
  431. .text-danger {
  432. color: $danger;
  433. }
  434. .text-muted {
  435. color: #8d9ea7;
  436. }
  437. .text-warning {
  438. color: $warning;
  439. }
  440. .text-success {
  441. color: $success;
  442. }
  443. .text-info {
  444. color: $info;
  445. }
  446. .text-inverse {
  447. color: $inverse;
  448. }
  449. .text-blue {
  450. color: $blue;
  451. }
  452. .text-purple {
  453. color: $purple;
  454. }
  455. .text-primary {
  456. color: $primary;
  457. }
  458. .text-megna {
  459. color: $megna;
  460. }
  461. .text-dark {
  462. color: $bodytext !important;
  463. }
  464. /* Background colors */
  465. .bg-primary {
  466. background-color: $primary !important;
  467. }
  468. .bg-success {
  469. background-color: $success !important;
  470. }
  471. .bg-info {
  472. background-color: $info !important;
  473. }
  474. .bg-warning {
  475. background-color: $warning !important;
  476. }
  477. .bg-danger {
  478. background-color: $danger !important;
  479. }
  480. .bg-theme {
  481. background-color: $themecolor !important;
  482. }
  483. .bg-theme-dark {
  484. background-color: $dark-themecolor !important;
  485. }
  486. .bg-gray{
  487. background-color:#e6eaef !important;
  488. }
  489. .bg-inverse {
  490. background-color: $inverse !important;
  491. }
  492. .bg-extlgt {
  493. background-color: $extralight !important;
  494. }
  495. .bg-purple {
  496. background-color: $purple !important;
  497. }
  498. .bg-dark{
  499. background-color:$dark !important;
  500. }
  501. .bg-white {
  502. background-color: $white !important;
  503. }
  504. .bg-megna {
  505. background-color: $megna !important;
  506. }
  507. /* Labels */
  508. .label {
  509. letter-spacing: 0.05em;
  510. border-radius: 60px;
  511. padding: 4px 12px 3px;
  512. font-weight:$font-bold;
  513. }
  514. .label-rounded, .label-rouded {
  515. border-radius: 60px;
  516. padding: 4px 12px 3px;
  517. font-weight:$font-bold;
  518. }
  519. .label-custom {
  520. background-color: $megna;
  521. }
  522. .label-success {
  523. background-color: $success;
  524. }
  525. .label-info {
  526. background-color: $info;
  527. }
  528. .label-warning {
  529. background-color: $warning;
  530. }
  531. .label-danger {
  532. background-color: $danger;
  533. }
  534. .label-megna {
  535. background-color: $megna;
  536. }
  537. .label-primary {
  538. background-color: $primary;
  539. }
  540. .label-purple {
  541. background-color: $purple;
  542. }
  543. .label-red {
  544. background-color: $red;
  545. }
  546. .label-inverse {
  547. background-color: $inverse;
  548. }
  549. /*Bootstrap overight*/
  550. .dropdown-menu{ border:1px solid $border; border-radius:$radius; box-shadow:0 3px 12px rgba(0,0,0,.05)!important; -webkit-box-shadow:0px!important; -moz-box-shadow:0px!important; padding-bottom:8px; margin-top:0px;}
  551. .dropdown-menu > li > a{ padding:9px 20px;}
  552. .dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover{
  553. background:$extralight;
  554. }
  555. .navbar-top-links .progress{
  556. margin-bottom:6px;
  557. }
  558. label{
  559. font-weight:$font-bold;
  560. }
  561. .btn{
  562. border-radius:$radius;
  563. }
  564. .form-control{
  565. border: 1px solid $light;
  566. border-radius: $radius;
  567. box-shadow: none;
  568. height: 34px;
  569. max-width: 100%;
  570. padding: 7px 12px;
  571. transition: all 300ms linear 0s;
  572. &:focus{
  573. box-shadow:none;
  574. border-color:$dark;
  575. }
  576. }
  577. .input-sm {
  578. height: 30px;
  579. padding: 5px 10px;
  580. font-size: 12px;
  581. line-height: 1.5;
  582. }
  583. .input-lg {
  584. height: 44px;
  585. padding: 5px 10px;
  586. font-size: 18px;
  587. }
  588. .bootstrap-tagsinput{
  589. border: 1px solid $light;
  590. border-radius: $radius;
  591. box-shadow: none;
  592. display:block;
  593. padding: 7px 12px;
  594. }
  595. .bootstrap-touchspin .input-group-btn-vertical>.btn{ padding:9px 10px;}
  596. .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up, .bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down{ border-radius:$radius;}
  597. .input-group-btn .btn {
  598. padding: 8px 12px;
  599. }
  600. /* reset to bootstrap default
  601. .form-horizontal .form-group{ margin-left:-7.5px; margin-right:-7.5px; margin-bottom:25px;}
  602. .form-group{ margin-bottom:25px;}
  603. */
  604. .select2-container-multi .select2-choices{ border: 1px solid $light;
  605. }
  606. .list-group-item, .list-group-item:first-child, .list-group-item:last-child{ border-radius:$radius; border-color:$border;}
  607. .list-group-item.active, .list-group-item.active:focus, .list-group-item.active:hover{background:$info; border-color:$info;}
  608. .list-task .list-group-item, .list-task .list-group-item:first-child{ border-radius:$radius; border:0px;}
  609. .list-task .list-group-item:last-child{ border-radius:0px; border:0px}
  610. .media{
  611. border:1px solid $border;
  612. margin-bottom:10px;
  613. padding:15px;
  614. .media-heading{
  615. font-weight:$font-bold;
  616. }
  617. }
  618. .well, pre{
  619. // border-radius:$radius;
  620. }
  621. .nav-tabs > li > a {
  622. border-radius:$radius;
  623. color:$dark;
  624. &:hover, &:focus{
  625. background:$white;
  626. }
  627. }
  628. .modal-content{
  629. border-radius:$radius;
  630. box-shadow:0 5px 15px rgba(0, 0, 0, 0.1);
  631. }
  632. .alert{
  633. border-radius:$radius;
  634. }
  635. .carousel-control {
  636. width: 8%;
  637. span{
  638. position: absolute;
  639. top: 50%; /* pushes the icon in the middle of the height */
  640. z-index: 5;
  641. display: inline-block;
  642. font-size: 30px;
  643. }
  644. }
  645. .popover{
  646. border-radius:$radius;
  647. }
  648. .popover-title{
  649. padding:5px 14px;
  650. }
  651. .container-fluid{
  652. /* reset to bootstrap default
  653. padding-left:25px;
  654. padding-right:25px;
  655. padding-bottom:15px;
  656. */
  657. }
  658. /* reset to bootstrap default
  659. .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
  660. padding-left:7.5px;
  661. padding-right:7.5px;
  662. }
  663. .row {
  664. margin-right: -7.5px;
  665. margin-left: -7.5px;
  666. }
  667. */
  668. .btn-group-vertical>.btn:first-child:not(:last-child), .btn-group-vertical>.btn:last-child:not(:first-child){
  669. border-radius:$radius;
  670. }
  671. .table-responsive{ overflow-y:hidden;}
  672. /* Pagination/ Pager */
  673. .pagination > li:first-child > a,
  674. .pagination > li:first-child > span {
  675. border-bottom-left-radius: $radius;
  676. border-top-left-radius: $radius;
  677. }
  678. .pagination > li:last-child > a,
  679. .pagination > li:last-child > span {
  680. border-bottom-right-radius: $radius;
  681. border-top-right-radius: $radius;
  682. }
  683. .pagination > li > a,
  684. .pagination > li > span {
  685. color: $dark;
  686. }
  687. .pagination > li > a:hover,
  688. .pagination > li > span:hover,
  689. .pagination > li > a:focus,
  690. .pagination > li > span:focus {
  691. background-color: $light;
  692. }
  693. .pagination-split li {
  694. margin-left: 5px;
  695. display: inline-block;
  696. float: left;
  697. }
  698. .pagination-split li:first-child {
  699. margin-left: 0;
  700. }
  701. .pagination-split li a {
  702. -moz-border-radius: $radius;
  703. -webkit-border-radius: $radius;
  704. border-radius: $radius;
  705. }
  706. .pagination > .active > a,
  707. .pagination > .active > span,
  708. .pagination > .active > a:hover,
  709. .pagination > .active > span:hover,
  710. .pagination > .active > a:focus,
  711. .pagination > .active > span:focus {
  712. background-color: $themecolor;
  713. border-color: $themecolor;
  714. }
  715. .pager li > a, .pager li > span {
  716. -moz-border-radius: $radius;
  717. -webkit-border-radius: $radius;
  718. border-radius: $radius;
  719. color: $dark;
  720. }
  721. // table-cell
  722. .table-box{
  723. display:table;
  724. width:100%;
  725. }
  726. .cell{
  727. display:table-cell;
  728. vertical-align:middle;
  729. }
  730. .jqstooltip{
  731. width: auto !important;
  732. height: auto !important;
  733. }
  734. // text-align
  735. // Wrappers
  736. #wrapper {
  737. width: 100%;
  738. }
  739. #page-wrapper {
  740. padding: 0px;
  741. min-height: 568px;
  742. background:$bodycolor;
  743. padding-bottom:60px;
  744. }
  745. /*
  746. .footer{
  747. bottom: 0;
  748. color: #58666e;
  749. left: 0px;
  750. padding: 20px 30px;
  751. position:absolute;
  752. background: $white;
  753. right: 0;
  754. }
  755. */
  756. // Page title
  757. .bg-title{
  758. overflow:hidden;
  759. padding: 6px 15px;
  760. margin-left:-25.5px;
  761. margin-right:-25.5px;
  762. h4{ color:rgba(0, 0, 0, 0.5); font-weight:$font-bold; margin-top:6px;}
  763. .breadcrumb{
  764. background:none;
  765. margin-bottom:0px;
  766. float:right;
  767. padding:0;
  768. margin-top:8px;
  769. a{
  770. color:rgba(0, 0, 0, 0.5);
  771. &:hover{
  772. color:rgba(0, 0, 0, 1);
  773. }
  774. }
  775. .active{ color:$themecolor;}
  776. }
  777. }
  778. // Navigation
  779. // --Topbar
  780. .logo b{
  781. // background:$themecolor;
  782. height: 50px;
  783. display: inline-block;
  784. width:60px;
  785. line-height:50px;
  786. text-align:center;
  787. }
  788. .top-left-part{
  789. width:220px;
  790. float:left;
  791. a{
  792. font-size: 18px;
  793. padding-left:0px;
  794. text-transform: uppercase;
  795. }
  796. }
  797. .navbar-header{
  798. width:100%;
  799. background:$topbar;
  800. border:0px;
  801. }
  802. .navbar-default{
  803. border:0px;
  804. }
  805. .navbar-top-links {
  806. margin-right: 0;
  807. }
  808. .navbar-top-links .badge {
  809. position: absolute;
  810. right: 6px;
  811. top: 15px;
  812. }
  813. .navbar-top-links > li {
  814. float: left;
  815. }
  816. .navbar-top-links > li > a{
  817. color:$white;
  818. padding: 0 14px;
  819. line-height:50px;
  820. min-height: 50px;
  821. &:hover{
  822. background:rgba(0, 0, 0, 0.1)
  823. }
  824. &:focus{
  825. background:rgba(0, 0, 0, 0.0);
  826. }
  827. }
  828. .nav .open > a, .nav .open > a:focus, .nav .open > a:hover{
  829. background:rgba(255, 255, 255, 0.2)
  830. }
  831. .navbar-top-links .dropdown-menu li {
  832. display: block;
  833. }
  834. .navbar-top-links .dropdown-menu li:last-child {
  835. margin-right: 0;
  836. }
  837. .navbar-top-links .dropdown-menu li a div {
  838. white-space: normal;
  839. }
  840. .navbar-top-links .dropdown-messages,
  841. .navbar-top-links .dropdown-tasks,
  842. .navbar-top-links .dropdown-alerts {
  843. width: 310px;
  844. min-width: 0;
  845. }
  846. .navbar-top-links .dropdown-messages {
  847. margin-left: 5px;
  848. }
  849. .navbar-top-links .dropdown-tasks {
  850. margin-left: -59px;
  851. }
  852. .navbar-top-links .dropdown-alerts {
  853. margin-left: -123px;
  854. }
  855. .navbar-top-links .dropdown-user {
  856. right: 0;
  857. left: auto;
  858. }
  859. .navbar-header .navbar-toggle {
  860. float:none;
  861. padding:0 15px;
  862. line-height:50px;
  863. border:0px;
  864. color:rgba(255, 255, 255, 0.5);
  865. margin:0px;
  866. display:inline-block;
  867. border-radius:0px;
  868. &:hover, &:focus{
  869. background:rgba(0, 0, 0, 0.3);
  870. color:rgba(255, 255, 255, 1);
  871. }
  872. }
  873. // Search
  874. /*Search*/
  875. .app-search {
  876. position: relative;
  877. margin: 0px;
  878. }
  879. .app-search a {
  880. position: absolute;
  881. top: 13px;
  882. right: 10px;
  883. color: $inverse;
  884. }
  885. .app-search .form-control,
  886. .app-search .form-control:focus {
  887. border: none;
  888. font-size: 13px;
  889. color: $inverse;
  890. padding-left: 20px;
  891. padding-right: 40px;
  892. background: rgba(255,255,255,0.9);
  893. box-shadow: none;
  894. height: 30px;
  895. font-weight: $font-bold;
  896. width: 180px;
  897. display:inline-block;
  898. line-height:30px;
  899. margin-top:10px;
  900. border-radius:40px;
  901. transition:0.5s ease-out;
  902. }
  903. .app-search .form-control::-moz-placeholder{
  904. color:$inverse;
  905. opacity:0.5;
  906. }
  907. .app-search .form-control::-webkit-input-placeholder { color:$inverse;
  908. opacity:0.5; }
  909. .app-search .form-control::-ms-placeholder { color:$inverse;
  910. opacity:0.5; }
  911. .nav-small-cap {
  912. color: #a6afbb;
  913. cursor: default;
  914. font-weight:$font-bold;
  915. text-transform:uppercase;
  916. font-size: 13px;
  917. letter-spacing: 0.035em;
  918. padding: 12px 15px !important;
  919. pointer-events: none;
  920. margin:20px 0 0 -15px;
  921. }
  922. .profile-pic{
  923. padding:0px 20px;
  924. line-height:50px;
  925. img{
  926. margin-right:10px;
  927. }
  928. }
  929. .drop-title{
  930. border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  931. color:$dark;
  932. font-size: 15px;
  933. font-weight: $font-bold;
  934. padding: 11px 20px 15px;
  935. }
  936. // Buttons
  937. .btn-outline {
  938. color: inherit;
  939. background-color: transparent;
  940. transition: all .5s;
  941. }
  942. .btn-rounded {
  943. border-radius:60px;
  944. }
  945. .btn-custom, .btn-custom.disabled{
  946. background:$themecolor;
  947. border:1px solid $themecolor;
  948. color:$white;
  949. &:hover, &:focus, &.focus{
  950. background:$themecolor;
  951. opacity:0.8;
  952. color:$white;
  953. border:1px solid $themecolor;
  954. }
  955. }
  956. .btn-primary, .btn-primary.disabled{
  957. background:$primary;
  958. border:1px solid $primary;
  959. &:hover, &:focus, &.focus{
  960. background:$primary;
  961. opacity:0.8;
  962. border:1px solid $primary;
  963. }
  964. }
  965. .btn-success, .btn-success.disabled{
  966. background:$success;
  967. border:1px solid $success;
  968. &:hover, &:focus, &.focus{
  969. background:$success;
  970. opacity:0.8;
  971. border:1px solid $success;
  972. }
  973. }
  974. .btn-info, .btn-info.disabled{
  975. background:$info;
  976. border:1px solid $info;
  977. &:hover, &:focus, &.focus{
  978. background:$info;
  979. opacity:0.8;
  980. border:1px solid $info;
  981. }
  982. }
  983. .btn-warning, .btn-warning.disabled{
  984. background:$warning;
  985. border:1px solid $warning;
  986. &:hover, &:focus, &.focus{
  987. background:$warning;
  988. opacity:0.8;
  989. border:1px solid $warning;
  990. }
  991. }
  992. .btn-danger, .btn-danger.disabled{
  993. background:$danger;
  994. border:1px solid $danger;
  995. &:hover, &:focus, &.focus{
  996. background:$danger;
  997. opacity:0.8;
  998. border:1px solid $danger;
  999. }
  1000. }
  1001. .btn-default, .btn-default.disabled{
  1002. color: $bodytext;
  1003. $this-color: darken($bodycolor, 10%);
  1004. background: $this-color;
  1005. border:1px solid $this-color;
  1006. &:hover, &:focus, &.focus{
  1007. color: $bodytext;
  1008. opacity:0.8;
  1009. border:1px solid $this-color;
  1010. background:$this-color;
  1011. }
  1012. }
  1013. .btn-default.btn-outline {
  1014. background-color: transparent;
  1015. &:hover, &:focus, &.focus{
  1016. background:darken($bodycolor, 10%);
  1017. }
  1018. }
  1019. .btn-primary.btn-outline {
  1020. color: $primary;
  1021. background-color: transparent;
  1022. &:hover, &:focus, &.focus{
  1023. background:$primary;
  1024. color:$white;
  1025. }
  1026. }
  1027. .btn-success.btn-outline {
  1028. color: $success;
  1029. background-color: transparent;
  1030. &:hover, &:focus, &.focus{
  1031. background:$success;
  1032. color:$white;
  1033. }
  1034. }
  1035. .btn-info.btn-outline {
  1036. color: $info;
  1037. background-color: transparent;
  1038. &:hover, &:focus, &.focus{
  1039. background:$info;
  1040. color:$white;
  1041. }
  1042. }
  1043. .btn-warning.btn-outline {
  1044. color: $warning;
  1045. background-color: transparent;
  1046. &:hover, &:focus, &.focus{
  1047. background:$warning;
  1048. color:$white;
  1049. }
  1050. }
  1051. .btn-danger.btn-outline {
  1052. color: $danger;
  1053. background-color: transparent;
  1054. &:hover, &:focus, &.focus{
  1055. background:$danger;
  1056. color:$white;
  1057. }
  1058. }
  1059. .button-box .btn{ margin:0 8px 8px 0px;}
  1060. .btn-primary.btn-outline:hover,
  1061. .btn-success.btn-outline:hover,
  1062. .btn-info.btn-outline:hover,
  1063. .btn-warning.btn-outline:hover,
  1064. .btn-danger.btn-outline:hover {
  1065. color: white;
  1066. }
  1067. .btn-label {
  1068. background: rgba(0, 0, 0, 0.05);
  1069. display: inline-block;
  1070. margin:-6px 12px -6px -14px;
  1071. padding: 7px 15px;
  1072. }
  1073. .btn-facebook {
  1074. color: $white !important;
  1075. background-color: #3b5998 !important;
  1076. }
  1077. .btn-twitter {
  1078. color: $white !important;
  1079. background-color: #55acee !important;
  1080. }
  1081. .btn-linkedin {
  1082. color: $white !important;
  1083. background-color: #007bb6 !important;
  1084. }
  1085. .btn-dribbble {
  1086. color: $white !important;
  1087. background-color: #ea4c89 !important;
  1088. }
  1089. .btn-googleplus {
  1090. color: $white !important;
  1091. background-color: #dd4b39 !important;
  1092. }
  1093. .btn-instagram {
  1094. color: $white !important;
  1095. background-color: #3f729b !important;
  1096. }
  1097. .btn-pinterest {
  1098. color: $white !important;
  1099. background-color: #cb2027 !important;
  1100. }
  1101. .btn-dropbox {
  1102. color: $white !important;
  1103. background-color: #007ee5 !important;
  1104. }
  1105. .btn-flickr {
  1106. color: $white !important;
  1107. background-color: #ff0084 !important;
  1108. }
  1109. .btn-tumblr {
  1110. color: $white !important;
  1111. background-color: #32506d !important;
  1112. }
  1113. .btn-skype {
  1114. color: $white !important;
  1115. background-color: #00aff0 !important;
  1116. }
  1117. .btn-youtube {
  1118. color: $white !important;
  1119. background-color: #bb0000 !important;
  1120. }
  1121. .btn-github {
  1122. color: $white !important;
  1123. background-color: #171515 !important;
  1124. }
  1125. .btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary.focus:active, .btn-primary:active:focus, .btn-primary:active:hover, .open > .dropdown-toggle.btn-primary.focus, .open > .dropdown-toggle.btn-primary:focus, .open > .dropdown-toggle.btn-primary:hover, .btn-primary.focus, .btn-primary:focus {
  1126. background-color: $primary ;
  1127. border: 1px solid $primary;
  1128. }
  1129. .btn-success.active.focus, .btn-success.active:focus, .btn-success.active:hover, .btn-success.focus:active, .btn-success:active:focus, .btn-success:active:hover, .open > .dropdown-toggle.btn-success.focus, .open > .dropdown-toggle.btn-success:focus, .open > .dropdown-toggle.btn-success:hover, .btn-success.focus, .btn-success:focus {
  1130. background-color: $success;
  1131. border: 1px solid $success;
  1132. }
  1133. .btn-info.active.focus, .btn-info.active:focus, .btn-info.active:hover, .btn-info.focus:active, .btn-info:active:focus, .btn-info:active:hover, .open > .dropdown-toggle.btn-info.focus, .open > .dropdown-toggle.btn-info:focus, .open > .dropdown-toggle.btn-info:hover, .btn-info.focus, .btn-info:focus {
  1134. background-color: $info;
  1135. border: 1px solid $info;
  1136. }
  1137. .btn-warning.active.focus, .btn-warning.active:focus, .btn-warning.active:hover, .btn-warning.focus:active, .btn-warning:active:focus, .btn-warning:active:hover, .open > .dropdown-toggle.btn-warning.focus, .open > .dropdown-toggle.btn-warning:focus, .open > .dropdown-toggle.btn-warning:hover, .btn-warning.focus, .btn-warning:focus {
  1138. background-color: $warning;
  1139. border: 1px solid $warning;
  1140. }
  1141. .btn-danger.active.focus, .btn-danger.active:focus, .btn-danger.active:hover, .btn-danger.focus:active, .btn-danger:active:focus, .btn-danger:active:hover, .open > .dropdown-toggle.btn-danger.focus, .open > .dropdown-toggle.btn-danger:focus, .open > .dropdown-toggle.btn-danger:hover, .btn-danger.focus, .btn-danger:focus {
  1142. background-color: $danger;
  1143. border: 1px solid $danger;
  1144. }
  1145. .btn-inverse, .btn-inverse:hover, .btn-inverse:focus, .btn-inverse:active, .btn-inverse.active, .btn-inverse.focus, .btn-inverse:active, .btn-inverse:focus, .btn-inverse:hover, .open > .dropdown-toggle.btn-inverse {
  1146. background-color: $inverse;
  1147. border: 1px solid $inverse;
  1148. color: $white;
  1149. }
  1150. // Chat Widget
  1151. .chat {
  1152. margin: 0;
  1153. padding: 0;
  1154. list-style: none;
  1155. }
  1156. .chat li {
  1157. margin-bottom: 10px;
  1158. padding-bottom: 5px;
  1159. border-bottom: 1px dotted $border;
  1160. }
  1161. .chat li.left .chat-body {
  1162. margin-left: 60px;
  1163. }
  1164. .chat li.right .chat-body {
  1165. margin-right: 60px;
  1166. }
  1167. .chat li .chat-body p {
  1168. margin: 0;
  1169. }
  1170. .panel .slidedown .glyphicon,
  1171. .chat .glyphicon {
  1172. margin-right: 5px;
  1173. }
  1174. .chat-panel .panel-body {
  1175. height: 350px;
  1176. overflow-y: scroll;
  1177. }
  1178. // Login Page
  1179. .login-panel {
  1180. margin-top: 25%;
  1181. }
  1182. // Flot Charts Containers
  1183. .flot-chart {
  1184. display: block;
  1185. height: 400px;
  1186. }
  1187. .flot-chart-content {
  1188. width: 100%;
  1189. height: 100%;
  1190. }
  1191. // DataTables Overrides
  1192. table.dataTable thead .sorting,
  1193. table.dataTable thead .sorting_asc,
  1194. table.dataTable thead .sorting_desc,
  1195. table.dataTable thead .sorting_asc_disabled,
  1196. table.dataTable thead .sorting_desc_disabled {
  1197. background: transparent;
  1198. }
  1199. table.dataTable thead .sorting_asc:after {
  1200. content: "\f0de";
  1201. float: right;
  1202. font-family: fontawesome;
  1203. }
  1204. table.dataTable thead .sorting_desc:after {
  1205. content: "\f0dd";
  1206. float: right;
  1207. font-family: fontawesome;
  1208. }
  1209. table.dataTable thead .sorting:after {
  1210. content: "\f0dc";
  1211. float: right;
  1212. font-family: fontawesome;
  1213. color: rgba(50,50,50,.5);
  1214. }
  1215. // Circle Buttons
  1216. .btn-circle {
  1217. width: 30px;
  1218. height: 30px;
  1219. padding: 6px 0;
  1220. border-radius: 15px;
  1221. text-align: center;
  1222. font-size: 12px;
  1223. line-height: 1.428571429;
  1224. }
  1225. .btn-circle.btn-lg {
  1226. width: 50px;
  1227. height: 50px;
  1228. padding: 10px 16px;
  1229. border-radius: 25px;
  1230. font-size: 18px;
  1231. line-height: 1.33;
  1232. }
  1233. .btn-circle.btn-xl {
  1234. width: 70px;
  1235. height: 70px;
  1236. padding: 10px 16px;
  1237. border-radius: 35px;
  1238. font-size: 24px;
  1239. line-height: 1.33;
  1240. }
  1241. // Grid Demo Elements
  1242. .show-grid [class^="col-"] {
  1243. padding-top: 10px;
  1244. padding-bottom: 10px;
  1245. border: 1px solid $border;
  1246. background-color: $extralight;
  1247. }
  1248. .show-grid {
  1249. margin: 15px 0;
  1250. }
  1251. // Custom Colored Panels
  1252. .huge {
  1253. font-size: 40px;
  1254. }
  1255. .white-box{
  1256. background:$white;
  1257. padding:25px;
  1258. margin-bottom:15px;
  1259. .box-title{
  1260. margin:0px 0px 12px;
  1261. font-weight:$font-bold;
  1262. text-transform:uppercase;
  1263. font-size:14px;
  1264. }
  1265. }
  1266. @mixin panel-border-and-footer($color) {
  1267. border: 1px solid $color;
  1268. .panel-footer {
  1269. background-color: rgba($color, .1);
  1270. }
  1271. }
  1272. .panel{
  1273. border-radius:$radius;
  1274. margin-bottom:15px;
  1275. border:0px;
  1276. .panel-heading{
  1277. border-radius:$radius;
  1278. font-weight:$font-bold;
  1279. text-transform:uppercase;
  1280. padding:20px 25px;
  1281. .panel-title{
  1282. font-size:14px;
  1283. color:$dark;
  1284. }
  1285. a{
  1286. i{
  1287. font-size:12px;
  1288. margin-left:8px;
  1289. }
  1290. }
  1291. }
  1292. .panel-action{float:$rgt;
  1293. a{ opacity:0.5;
  1294. &:hover{
  1295. opacity:1;
  1296. }
  1297. }
  1298. }
  1299. .panel-body{ padding:25px;
  1300. &:first-child h3{
  1301. margin-top:0px;
  1302. font-weight:$font-bold;
  1303. font-family:$basefont1;
  1304. font-size:14px;
  1305. text-transform:uppercase;
  1306. }
  1307. }
  1308. .panel-footer{
  1309. background:$white;
  1310. border-radius:$radius;
  1311. padding:20px 25px;
  1312. }
  1313. }
  1314. .panel-green, .panel-success{
  1315. .panel-heading {
  1316. border-color: $success;
  1317. color: white;
  1318. background-color: $success;
  1319. a {
  1320. color:$white;
  1321. &:hover{
  1322. color:rgba(255, 255, 255, 0.5);
  1323. }
  1324. }
  1325. }
  1326. a {
  1327. color: $success;
  1328. &:hover {
  1329. color: darken($success, 15%);
  1330. }
  1331. }
  1332. @include panel-border-and-footer($success);
  1333. }
  1334. .panel-black, .panel-inverse{
  1335. border-color: $inverse;
  1336. .panel-heading {
  1337. border-color: $inverse;
  1338. color: white;
  1339. background-color: $inverse;
  1340. a {
  1341. color:$white;
  1342. &:hover{
  1343. color:rgba(255, 255, 255, 0.5);
  1344. }
  1345. }
  1346. }
  1347. a {
  1348. color: $inverse;
  1349. &:hover {
  1350. color: darken($inverse, 15%);
  1351. }
  1352. }
  1353. @include panel-border-and-footer($inverse);
  1354. }
  1355. .panel-darkblue, .panel-primary{
  1356. border-color: $primary;
  1357. .panel-heading {
  1358. border-color: $primary;
  1359. color: white;
  1360. background-color: $primary;
  1361. a {
  1362. color:$white;
  1363. &:hover{
  1364. color:rgba(255, 255, 255, 0.5);
  1365. }
  1366. }
  1367. }
  1368. a {
  1369. color: $primary;
  1370. &:hover {
  1371. color: darken($primary, 15%);
  1372. }
  1373. }
  1374. @include panel-border-and-footer($primary);
  1375. }
  1376. .panel-blue, .panel-info{
  1377. border-color: $info;
  1378. .panel-heading {
  1379. border-color: $info;
  1380. color: white;
  1381. background-color: $info;
  1382. a {
  1383. color:$white;
  1384. &:hover{
  1385. color:rgba(255, 255, 255, 0.5);
  1386. }
  1387. }
  1388. }
  1389. a {
  1390. color: $info;
  1391. &:hover {
  1392. color: darken($info, 15%);
  1393. }
  1394. }
  1395. @include panel-border-and-footer($info);
  1396. }
  1397. .panel-red, .panel-danger {
  1398. border-color: $danger;
  1399. .panel-heading {
  1400. border-color: $danger;
  1401. color: white;
  1402. background-color: $danger;
  1403. a {
  1404. color:$white;
  1405. &:hover{
  1406. color:rgba(255, 255, 255, 0.5);
  1407. }
  1408. }
  1409. }
  1410. a {
  1411. color: $danger;
  1412. &:hover {
  1413. color: darken($danger, 15%);
  1414. }
  1415. }
  1416. @include panel-border-and-footer($danger);
  1417. }
  1418. .panel-yellow, .panel-warning {
  1419. border-color: $warning;
  1420. .panel-heading {
  1421. border-color: $warning;
  1422. color: white;
  1423. background-color: $warning;
  1424. a {
  1425. color:$white;
  1426. &:hover{
  1427. color:rgba(255, 255, 255, 0.5);
  1428. }
  1429. }
  1430. }
  1431. a {
  1432. color: $warning;
  1433. &:hover {
  1434. color: darken($warning, 15%);
  1435. }
  1436. }
  1437. @include panel-border-and-footer($warning);
  1438. }
  1439. .panel-white, .panel-default{
  1440. border-color: $border;
  1441. .panel-heading {
  1442. color: $dark;
  1443. background-color: $border;
  1444. border-bottom:1px solid $border;
  1445. }
  1446. .panel-body{
  1447. color:$dark;
  1448. }
  1449. .panel-action a{ color:$dark; opacity:0.5;
  1450. &:hover{
  1451. opacity:1;
  1452. color:$dark;
  1453. }
  1454. }
  1455. .panel-footer{
  1456. background:$white;
  1457. color:$dark;
  1458. border-top:1px solid $border;
  1459. }
  1460. @include panel-border-and-footer($border);
  1461. }
  1462. .full-panel-info{
  1463. border-color: $info;
  1464. .panel-heading {
  1465. border-color: $info;
  1466. color: white;
  1467. background-color: $info;
  1468. border-bottom:1px solid $border;
  1469. }
  1470. .panel-body{
  1471. background:$info;
  1472. color:$white;
  1473. }
  1474. .panel-footer{
  1475. background:$info;
  1476. color:$white;
  1477. border-top:1px solid $border;
  1478. }
  1479. a {
  1480. color: $info;
  1481. &:hover {
  1482. color: darken($info, 15%);
  1483. }
  1484. }
  1485. }
  1486. .full-panel-warning{
  1487. border-color: $warning;
  1488. .panel-heading {
  1489. border-color: $warning;
  1490. color: white;
  1491. background-color: $warning;
  1492. border-bottom:1px solid $border;
  1493. }
  1494. .panel-body{
  1495. background:$warning;
  1496. color:$white;
  1497. }
  1498. .panel-footer{
  1499. background:$warning;
  1500. color:$white;
  1501. border-top:1px solid $border;
  1502. }
  1503. a {
  1504. color: $warning;
  1505. &:hover {
  1506. color: darken($warning, 15%);
  1507. }
  1508. }
  1509. }
  1510. .full-panel-success{
  1511. border-color: $success;
  1512. .panel-heading {
  1513. border-color: $success;
  1514. color: white;
  1515. background-color: $success;
  1516. border-bottom:1px solid $border;
  1517. }
  1518. .panel-body{
  1519. background:$success;
  1520. color:$white;
  1521. }
  1522. .panel-footer{
  1523. background:$success;
  1524. color:$white;
  1525. border-top:1px solid $border;
  1526. }
  1527. a {
  1528. color: $success;
  1529. &:hover {
  1530. color: darken($success, 15%);
  1531. }
  1532. }
  1533. }
  1534. .full-panel-purple{
  1535. border-color: $purple;
  1536. .panel-heading {
  1537. color: white;
  1538. background-color: $purple;
  1539. border-bottom:1px solid $border;
  1540. }
  1541. .panel-body{
  1542. background:$purple;
  1543. color:$white;
  1544. }
  1545. .panel-footer{
  1546. background:$purple;
  1547. color:$white;
  1548. border-top:1px solid $border;
  1549. }
  1550. a {
  1551. color: $purple;
  1552. &:hover {
  1553. color: darken($purple, 15%);
  1554. }
  1555. }
  1556. }
  1557. .full-panel-danger{
  1558. border-color: $danger;
  1559. .panel-heading {
  1560. border-color: $danger;
  1561. color: white;
  1562. background-color: $danger;
  1563. border-bottom:1px solid $border;
  1564. }
  1565. .panel-body{
  1566. background:$danger;
  1567. color:$white;
  1568. }
  1569. .panel-footer{
  1570. background:$danger;
  1571. color:$white;
  1572. border-top:1px solid $border;
  1573. }
  1574. a {
  1575. color: $danger;
  1576. &:hover {
  1577. color: darken($danger, 15%);
  1578. }
  1579. }
  1580. }
  1581. .full-panel-inverse{
  1582. border-color: $inverse;
  1583. .panel-heading {
  1584. border-color: $inverse;
  1585. color: white;
  1586. background-color: $inverse;
  1587. border-bottom:1px solid $border;
  1588. }
  1589. .panel-body{
  1590. background:$inverse;
  1591. color:$white;
  1592. }
  1593. .panel-footer{
  1594. background:$inverse;
  1595. color:$white;
  1596. border-top:1px solid $border;
  1597. }
  1598. a {
  1599. color: $inverse;
  1600. &:hover {
  1601. color: darken($inverse, 15%);
  1602. }
  1603. }
  1604. }
  1605. .full-panel-default{
  1606. border-color: $border;
  1607. .panel-heading {
  1608. color: $dark;
  1609. background-color: $white;
  1610. border-bottom:1px solid $border;
  1611. }
  1612. .panel-body{
  1613. color:$dark;
  1614. }
  1615. .panel-footer{
  1616. background:$white;
  1617. color:$dark;
  1618. border-top:1px solid $border;
  1619. }
  1620. a {
  1621. color: $dark;
  1622. &:hover {
  1623. color: darken($inverse, 15%);
  1624. }
  1625. }
  1626. }
  1627. .panel-opcl{
  1628. float:right;
  1629. i{
  1630. margin-left:8px;
  1631. font-size:10px;
  1632. cursor:pointer;
  1633. }
  1634. }
  1635. .fa-fw{
  1636. width:20px!important;
  1637. display:inline-block !important;
  1638. text-align:left !important;
  1639. }
  1640. /*Wave Effeects*/
  1641. @mixin waves-transition($transition) {
  1642. -webkit-transition: $transition;
  1643. -moz-transition: $transition;
  1644. -o-transition: $transition;
  1645. transition: $transition;
  1646. }
  1647. @mixin waves-transform($string) {
  1648. -webkit-transform: $string;
  1649. -moz-transform: $string;
  1650. -ms-transform: $string;
  1651. -o-transform: $string;
  1652. transform: $string;
  1653. }
  1654. @mixin waves-box-shadow($shadow) {
  1655. -webkit-box-shadow: $shadow;
  1656. box-shadow: $shadow;
  1657. }
  1658. .waves-effect {
  1659. position: relative;
  1660. cursor: pointer;
  1661. display: inline-block;
  1662. overflow: hidden;
  1663. -webkit-user-select: none;
  1664. -moz-user-select: none;
  1665. -ms-user-select: none;
  1666. user-select: none;
  1667. -webkit-tap-highlight-color: transparent;
  1668. .waves-ripple {
  1669. position: absolute;
  1670. border-radius: 50%;
  1671. width: 20px;
  1672. height: 20px;
  1673. margin-top:-10px;
  1674. margin-left:-10px;
  1675. opacity: 0;
  1676. background: rgba(0,0,0,0.08);
  1677. @include waves-transition(all 0.5s ease-out);
  1678. -webkit-transition-property: -webkit-transform, opacity;
  1679. -moz-transition-property: -moz-transform, opacity;
  1680. -o-transition-property: -o-transform, opacity;
  1681. transition-property: transform, opacity;
  1682. @include waves-transform(scale(0) translate(0,0));
  1683. -webkit-transform: scale(0);
  1684. -moz-transform: scale(0);
  1685. -ms-transform: scale(0);
  1686. -o-transform: scale(0);
  1687. transform: scale(0);
  1688. pointer-events: none;
  1689. }
  1690. &.waves-light .waves-ripple {
  1691. background: rgba(255,255,255,0.4);
  1692. $gradient: rgba(255,255,255,0.2) 0,rgba(255,255,255,.3) 40%,rgba(255,255,255,.4) 50%,rgba(255,255,255,.5) 60%,rgba(255,255,255,0) 70%;
  1693. background: -webkit-radial-gradient($gradient);
  1694. background: -o-radial-gradient($gradient);
  1695. background: -moz-radial-gradient($gradient);
  1696. background: radial-gradient($gradient);
  1697. }
  1698. &.waves-classic .waves-ripple {
  1699. background: rgba(0,0,0,0.2);
  1700. }
  1701. &.waves-classic.waves-light .waves-ripple {
  1702. background: rgba(255,255,255,0.4);
  1703. }
  1704. }
  1705. .waves-notransition {
  1706. @include waves-transition(none '!important');
  1707. }
  1708. .waves-button,
  1709. .waves-circle {
  1710. @include waves-transform(translateZ(0));
  1711. -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
  1712. }
  1713. .waves-button,
  1714. .waves-button:hover,
  1715. .waves-button:visited,
  1716. .waves-button-input {
  1717. white-space: nowrap;
  1718. vertical-align: middle;
  1719. cursor: pointer;
  1720. border: none;
  1721. outline: none;
  1722. color: inherit;
  1723. background-color: rgba(0, 0, 0, 0);
  1724. font-size: 1em;
  1725. line-height:1em;
  1726. text-align: center;
  1727. text-decoration: none;
  1728. z-index: 1;
  1729. }
  1730. .waves-button {
  1731. padding: 0.85em 1.1em;
  1732. border-radius: 0.2em;
  1733. }
  1734. .waves-button-input {
  1735. margin: 0;
  1736. padding: 0.85em 1.1em;
  1737. }
  1738. .waves-input-wrapper {
  1739. border-radius: 0.2em;
  1740. vertical-align: bottom;
  1741. &.waves-button {
  1742. padding: 0;
  1743. }
  1744. .waves-button-input {
  1745. position: relative;
  1746. top: 0;
  1747. left: 0;
  1748. z-index: 1;
  1749. }
  1750. }
  1751. .waves-circle {
  1752. text-align: center;
  1753. width: 2.5em;
  1754. height: 2.5em;
  1755. line-height: 2.5em;
  1756. border-radius: 50%;
  1757. }
  1758. .waves-float {
  1759. -webkit-mask-image: none;
  1760. @include waves-box-shadow(0px 1px 1.5px 1px rgba(0, 0, 0, 0.12));
  1761. @include waves-transition(all 300ms);
  1762. &:active {
  1763. @include waves-box-shadow(0px 8px 20px 1px rgba(0, 0, 0, 0.30));
  1764. }
  1765. }
  1766. .waves-block {
  1767. display: block;
  1768. }
  1769. /* =============
  1770. Checkbox and Radios
  1771. ============= */
  1772. .checkbox {
  1773. padding-left: 20px;
  1774. label {
  1775. display: inline-block;
  1776. padding-left: 5px;
  1777. position: relative;
  1778. &::before {
  1779. -o-transition: 0.3s ease-in-out;
  1780. -webkit-transition: 0.3s ease-in-out;
  1781. background-color: $white;
  1782. border-radius: 1px;
  1783. border: 1px solid $border;
  1784. content: "";
  1785. display: inline-block;
  1786. height: 17px;
  1787. left: 0;
  1788. margin-left: -20px;
  1789. position: absolute;
  1790. transition: 0.3s ease-in-out;
  1791. width: 17px;
  1792. outline: none !important;
  1793. }
  1794. &::after {
  1795. color: $dark;
  1796. display: inline-block;
  1797. font-size: 11px;
  1798. height: 16px;
  1799. left: 0;
  1800. margin-left: -20px;
  1801. padding-left: 3px;
  1802. padding-top: 1px;
  1803. position: absolute;
  1804. top: 0;
  1805. width: 16px;
  1806. }
  1807. }
  1808. input[type="checkbox"] {
  1809. cursor: pointer;
  1810. opacity: 0;
  1811. z-index: 1;
  1812. outline: none !important;
  1813. &:disabled + label {
  1814. opacity: 0.65;
  1815. }
  1816. }
  1817. input[type="checkbox"]:focus + label {
  1818. &::before {
  1819. outline-offset: -2px;
  1820. outline: none;
  1821. outline: thin dotted;
  1822. }
  1823. }
  1824. input[type="checkbox"]:checked + label {
  1825. &::after {
  1826. content: "\f00c";
  1827. font-family: 'FontAwesome';
  1828. }
  1829. }
  1830. input[type="checkbox"]:disabled + label {
  1831. &::before {
  1832. background-color: $light;
  1833. cursor: not-allowed;
  1834. }
  1835. }
  1836. }
  1837. .checkbox.checkbox-circle {
  1838. label {
  1839. &::before {
  1840. border-radius: 50%;
  1841. }
  1842. }
  1843. }
  1844. .checkbox.checkbox-inline {
  1845. margin-top: 0;
  1846. }
  1847. .checkbox.checkbox-single {
  1848. label {
  1849. height: 17px;
  1850. }
  1851. }
  1852. .checkbox-primary {
  1853. input[type="checkbox"]:checked + label {
  1854. &::before {
  1855. background-color: $primary;
  1856. border-color: $primary;
  1857. }
  1858. &::after {
  1859. color: $white;
  1860. }
  1861. }
  1862. }
  1863. .checkbox-danger {
  1864. input[type="checkbox"]:checked + label {
  1865. &::before {
  1866. background-color: $danger;
  1867. border-color: $danger;
  1868. }
  1869. &::after {
  1870. color: $white;
  1871. }
  1872. }
  1873. }
  1874. .checkbox-info {
  1875. input[type="checkbox"]:checked + label {
  1876. &::before {
  1877. background-color: $info;
  1878. border-color: $info;
  1879. }
  1880. &::after {
  1881. color: $white;
  1882. }
  1883. }
  1884. }
  1885. .checkbox-warning {
  1886. input[type="checkbox"]:checked + label {
  1887. &::before {
  1888. background-color: $warning;
  1889. border-color: $warning;
  1890. }
  1891. &::after {
  1892. color: $white;
  1893. }
  1894. }
  1895. }
  1896. .checkbox-success {
  1897. input[type="checkbox"]:checked + label {
  1898. &::before {
  1899. background-color: $success;
  1900. border-color: $success;
  1901. }
  1902. &::after {
  1903. color: $white;
  1904. }
  1905. }
  1906. }
  1907. .checkbox-purple {
  1908. input[type="checkbox"]:checked + label {
  1909. &::before {
  1910. background-color: $purple;
  1911. border-color: $purple;
  1912. }
  1913. &::after {
  1914. color: $white;
  1915. }
  1916. }
  1917. }
  1918. .checkbox-red {
  1919. input[type="checkbox"]:checked + label {
  1920. &::before {
  1921. background-color: $danger;
  1922. border-color: $danger;
  1923. }
  1924. &::after {
  1925. color: $white;
  1926. }
  1927. }
  1928. }
  1929. .checkbox-inverse {
  1930. input[type="checkbox"]:checked + label {
  1931. &::before {
  1932. background-color: $inverse;
  1933. border-color: $inverse;
  1934. }
  1935. &::after {
  1936. color: $white;
  1937. }
  1938. }
  1939. }
  1940. /* Radios */
  1941. .radio {
  1942. padding-left: 20px;
  1943. label {
  1944. display: inline-block;
  1945. padding-left: 5px;
  1946. position: relative;
  1947. &::before {
  1948. -o-transition: border 0.5s ease-in-out;
  1949. -webkit-transition: border 0.5s ease-in-out;
  1950. background-color: $white;
  1951. border-radius: 50%;
  1952. border: 1px solid $border;
  1953. content: "";
  1954. display: inline-block;
  1955. height: 17px;
  1956. left: 0;
  1957. margin-left: -20px;
  1958. outline: none !important;
  1959. position: absolute;
  1960. transition: border 0.5s ease-in-out;
  1961. width: 17px;
  1962. outline: none !important;
  1963. }
  1964. &::after {
  1965. -moz-transition: -moz-transform 0.3s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  1966. -ms-transform: scale(0, 0);
  1967. -o-transform: scale(0, 0);
  1968. -o-transition: -o-transform 0.3s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  1969. -webkit-transform: scale(0, 0);
  1970. -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  1971. background-color: $dark;
  1972. border-radius: 50%;
  1973. content: " ";
  1974. display: inline-block;
  1975. height: 7px;
  1976. left: 5px;
  1977. margin-left: -20px;
  1978. position: absolute;
  1979. top: 5px;
  1980. transform: scale(0, 0);
  1981. transition: transform 0.3s cubic-bezier(0.8, -0.33, 0.2, 1.33);
  1982. width: 7px;
  1983. }
  1984. }
  1985. input[type="radio"] {
  1986. cursor: pointer;
  1987. opacity: 0;
  1988. z-index: 1;
  1989. outline: none !important;
  1990. &:disabled + label {
  1991. opacity: 0.65;
  1992. }
  1993. }
  1994. input[type="radio"]:focus + label {
  1995. &::before {
  1996. outline-offset: -2px;
  1997. outline: 5px auto -webkit-focus-ring-color;
  1998. outline: thin dotted;
  1999. }
  2000. }
  2001. input[type="radio"]:checked + label {
  2002. &::after {
  2003. -ms-transform: scale(1, 1);
  2004. -o-transform: scale(1, 1);
  2005. -webkit-transform: scale(1, 1);
  2006. transform: scale(1, 1);
  2007. }
  2008. }
  2009. input[type="radio"]:disabled + label {
  2010. &::before {
  2011. cursor: not-allowed;
  2012. }
  2013. }
  2014. }
  2015. .radio.radio-inline {
  2016. margin-top: 0;
  2017. }
  2018. .radio.radio-single {
  2019. label {
  2020. height: 17px;
  2021. }
  2022. }
  2023. .radio-primary {
  2024. input[type="radio"] + label {
  2025. &::after {
  2026. background-color: $primary;
  2027. }
  2028. }
  2029. input[type="radio"]:checked + label {
  2030. &::before {
  2031. border-color: $primary;
  2032. }
  2033. &::after {
  2034. background-color: $primary;
  2035. }
  2036. }
  2037. }
  2038. .radio-danger {
  2039. input[type="radio"] + label {
  2040. &::after {
  2041. background-color: $danger;
  2042. }
  2043. }
  2044. input[type="radio"]:checked + label {
  2045. &::before {
  2046. border-color: $danger;
  2047. }
  2048. &::after {
  2049. background-color: $danger;
  2050. }
  2051. }
  2052. }
  2053. .radio-info {
  2054. input[type="radio"] + label {
  2055. &::after {
  2056. background-color: $info;
  2057. }
  2058. }
  2059. input[type="radio"]:checked + label {
  2060. &::before {
  2061. border-color: $info;
  2062. }
  2063. &::after {
  2064. background-color: $info;
  2065. }
  2066. }
  2067. }
  2068. .radio-warning {
  2069. input[type="radio"] + label {
  2070. &::after {
  2071. background-color: $warning;
  2072. }
  2073. }
  2074. input[type="radio"]:checked + label {
  2075. &::before {
  2076. border-color: $warning;
  2077. }
  2078. &::after {
  2079. background-color: $warning;
  2080. }
  2081. }
  2082. }
  2083. .radio-success {
  2084. input[type="radio"] + label {
  2085. &::after {
  2086. background-color: $success;
  2087. }
  2088. }
  2089. input[type="radio"]:checked + label {
  2090. &::before {
  2091. border-color: $success;
  2092. }
  2093. &::after {
  2094. background-color: $success;
  2095. }
  2096. }
  2097. }
  2098. .radio-purple {
  2099. input[type="radio"] + label {
  2100. &::after {
  2101. background-color: $purple;
  2102. }
  2103. }
  2104. input[type="radio"]:checked + label {
  2105. &::before {
  2106. border-color: $purple;
  2107. }
  2108. &::after {
  2109. background-color: $purple;
  2110. }
  2111. }
  2112. }
  2113. .radio-red {
  2114. input[type="radio"] + label {
  2115. &::after {
  2116. background-color: $danger;
  2117. }
  2118. }
  2119. input[type="radio"]:checked + label {
  2120. &::before {
  2121. border-color: $danger;
  2122. }
  2123. &::after {
  2124. background-color: $danger;
  2125. }
  2126. }
  2127. }
  2128. /* File Upload */
  2129. .fileupload {
  2130. overflow: hidden;
  2131. position: relative;
  2132. input.upload {
  2133. cursor: pointer;
  2134. filter: alpha(opacity=0);
  2135. font-size: 20px;
  2136. margin: 0;
  2137. opacity: 0;
  2138. padding: 0;
  2139. position: absolute;
  2140. right: 0;
  2141. top: 0;
  2142. }
  2143. }
  2144. /**
  2145. Models
  2146. **/
  2147. .model_img {
  2148. cursor:pointer;
  2149. }
  2150. /*Nestable*/
  2151. .myadmin-dd {
  2152. .dd-list {
  2153. .dd-item {
  2154. .dd-handle {
  2155. background: $white;
  2156. border: 1px solid $border;
  2157. padding: 8px 16px;
  2158. height: auto;
  2159. font-weight:$font-bold;
  2160. border-radius:$radius;
  2161. &:hover {
  2162. color: $info;
  2163. }
  2164. }
  2165. button {
  2166. height: auto;
  2167. font-size: 17px;
  2168. margin: 8px auto;
  2169. color: $dark;
  2170. width: 30px;
  2171. }
  2172. }
  2173. }
  2174. }
  2175. .myadmin-dd-empty {
  2176. .dd-list {
  2177. .dd3-handle {
  2178. border: 1px solid $border;
  2179. border-bottom:0px;
  2180. background: $white;
  2181. height: 36px;
  2182. width: 36px;
  2183. &:before {
  2184. color: inherit;
  2185. top: 7px;
  2186. }
  2187. &:hover {
  2188. color: $info;
  2189. }
  2190. }
  2191. .dd3-content {
  2192. height: auto;
  2193. border: 1px solid $border;
  2194. padding: 8px 16px 8px 46px;
  2195. background: $white;
  2196. font-weight: $font-bold;
  2197. &:hover {
  2198. color: $info;
  2199. }
  2200. }
  2201. button {
  2202. width: 26px;
  2203. height: 26px;
  2204. font-size: 16px;
  2205. font-weight: $font-bold;
  2206. }
  2207. }
  2208. }
  2209. /*Setting box*/
  2210. .settings_box{
  2211. position:absolute;
  2212. top:75px;
  2213. right:0px;
  2214. z-index:100;
  2215. a {
  2216. background:$white;
  2217. padding:15px;
  2218. display:inline-block;
  2219. vertical-align:top;
  2220. i {
  2221. display:block;
  2222. -webkit-animation-name: rotate;
  2223. -webkit-animation-duration: 2s;
  2224. -moz-animation-name: rotate;
  2225. -moz-animation-duration: 2s;
  2226. -moz-animation-iteration-count: infinite;
  2227. -moz-animation-timing-function: linear;
  2228. animation-name: rotate;
  2229. font-size:16px;
  2230. animation-duration: 1s;
  2231. animation-iteration-count: infinite;
  2232. animation-timing-function: linear;
  2233. }
  2234. }
  2235. }
  2236. @-webkit-keyframes rotate {
  2237. from {
  2238. -webkit-transform: rotate(0deg);
  2239. }
  2240. to {
  2241. -webkit-transform: rotate(360deg);
  2242. }
  2243. }
  2244. @-moz-keyframes rotate {
  2245. from {-moz-transform: rotate(0deg);}
  2246. to {-moz-transform: rotate(360deg);}
  2247. }
  2248. @keyframes rotate {
  2249. from {transform: rotate(0deg);}
  2250. to {transform: rotate(360deg);}
  2251. }
  2252. .theme_color{
  2253. margin:0px;
  2254. padding:0px;
  2255. display:inline-block;
  2256. overflow:hidden;
  2257. width:0px;
  2258. transition:0.5s ease-out;
  2259. background:$white;
  2260. li{
  2261. list-style:none;
  2262. width:30%;
  2263. float:left;
  2264. margin:0 1.5%;
  2265. a{
  2266. padding:5px;
  2267. height:50px;
  2268. display:block;
  2269. }
  2270. a.theme-green{ background:$success}
  2271. a.theme-red{ background:$danger}
  2272. a.theme-dark{ background:$inverse}
  2273. }
  2274. }
  2275. .theme_block{
  2276. width:200px;
  2277. padding:30px;
  2278. }
  2279. /*Common Ul*/
  2280. ul.common li {
  2281. display: inline-block;
  2282. line-height: 40px;
  2283. list-style: outside none none;
  2284. width: 48%;
  2285. a {
  2286. color: $bodytext;
  2287. &:hover {
  2288. color: $info;
  2289. }
  2290. }
  2291. }