style-responsive.css 25 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268
  1. @media (min-width: 980px) {
  2. /* sidebar */
  3. #sidebar {
  4. position: absolute;
  5. width: 180px;
  6. }
  7. #sidebar ul{
  8. margin-top:1px !important;
  9. width: 100%;
  10. }
  11. /* body container */
  12. #main-content {
  13. margin-top: 0px !important;
  14. }
  15. .fixed-top #main-content {
  16. margin-top: 20px;
  17. }
  18. }
  19. /* phones and tablets */
  20. @media (max-width:979px) {
  21. /*---lock page----*/
  22. .lock .lock-wrap {
  23. width: 95%;
  24. }
  25. .lock-wrap .single-size, .lock-wrap .double-size {
  26. width: 32% !important;
  27. }
  28. .double-size i {
  29. /*display: block;*/
  30. }
  31. /*--------*/
  32. /* header bar */
  33. #header .navbar-inner li.dropdown i {
  34. display: inline-block;
  35. position: relative;
  36. top:1px;
  37. right:-2px;
  38. }
  39. #header.navbar {
  40. margin-bottom: 0px !important;
  41. }
  42. #header .navbar-search {
  43. margin-left: 80px !important;
  44. }
  45. /* page title*/
  46. .page-title {
  47. margin: 4px 0px 7px 0px !important;
  48. }
  49. /* body */
  50. .fixed-top #main-content {
  51. margin-top: 0px;
  52. }
  53. /* container */
  54. #container {
  55. margin-top: 0px !important;
  56. }
  57. .fixed-top #container {
  58. margin-top: 0px !important;
  59. }
  60. /*sidebar*/
  61. #sidebar .sidebar-toggler {
  62. display: none;
  63. }
  64. #sidebar.in {
  65. margin-top: 9px !important;
  66. }
  67. #sidebar ul {
  68. margin-top:0px !important;
  69. width:100%;
  70. }
  71. .top-nav .text {
  72. display: none;
  73. }
  74. /* sidebar menu */
  75. #sidebar .triangle {
  76. display: none;
  77. }
  78. #sidebar {
  79. -webkit-border-radius: 4px !important;
  80. -moz-border-radius: 4px !important;
  81. border-radius: 4px !important;
  82. }
  83. #sidebar > ul > li:first-child > a{
  84. border-top:0px !important;
  85. }
  86. #sidebar > ul > li:last-child > a {
  87. border-bottom:0px !important;
  88. }
  89. #sidebar > ul > li:first-child > a:hover, #sidebar > ul > li.active:first-child > a{
  90. -webkit-border-radius: 4px 4px 0 0 !important;
  91. -moz-border-radius: 4px 4px 0 0 !important;
  92. border-radius: 4px 4px 0 0 !important;
  93. border-top:0px !important;
  94. }
  95. #sidebar > ul > li:last-child > a:hover, #sidebar > ul > li.active:last-child > a {
  96. -webkit-border-radius: 0 0 4px 4px !important;
  97. -moz-border-radius: 0 0 4px 4px !important;
  98. border-radius: 0 0 4px 4px !important;
  99. border-bottom:0px !important;
  100. }
  101. #sidebar > ul > li > a > span {
  102. line-height: 35px;
  103. }
  104. #sidebar > ul > li {
  105. margin: 0 0 1px;
  106. }
  107. #sidebar > ul > li > a {
  108. height:35px;
  109. line-height:35px;
  110. padding: 0 10px;
  111. text-align: left;
  112. }
  113. #sidebar > ul > li > a i{
  114. display: none !important;
  115. }
  116. #sidebar ul > li > a .arrow, #sidebar > ul > li > a .arrow.open {
  117. margin-right: 25px;
  118. }
  119. #sidebar > ul > li > a, #sidebar > ul > li > ul.sub > li {
  120. width: 100%;
  121. }
  122. #sidebar > ul > li > ul.sub > li > a {
  123. background: transparent !important ;
  124. }
  125. #sidebar > ul > li > ul.sub > li > a:hover {
  126. background: #4A8BC2 !important ;
  127. }
  128. /* stat overview containers */
  129. .stats-overview-cont {
  130. margin: 0px;
  131. }
  132. .stats-overview {
  133. margin: 0px;
  134. padding: 10px 10px 0px 10px;
  135. margin-bottom: 20px;
  136. }
  137. .stats-overview .details .title {
  138. font-size: 13px;
  139. }
  140. /* cirlce stats */
  141. .circle-stat .details {
  142. margin-top: 0px !important;
  143. }
  144. .circle-stat .details .title {
  145. margin: 0px !important;
  146. }
  147. /* style switcher */
  148. #theme-change {
  149. top:55px;
  150. right:28px;
  151. }
  152. }
  153. @media (min-width: 768px) and (max-width: 1280px) {
  154. /*---lock page----*/
  155. .lock .lock-wrap {
  156. /*width: 95%;*/
  157. }
  158. .lock-wrap .double-size {
  159. width: 38% !important;
  160. }
  161. .lock-wrap .single-size {
  162. width: 20% !important;
  163. }
  164. .double-size i {
  165. /*display: block;*/
  166. }
  167. /*--------*/
  168. /***
  169. Form wizard
  170. ***/
  171. .form-wizard .step .desc {
  172. margin-top: 10px;
  173. display: inline;
  174. }
  175. /***
  176. Pricing tables
  177. ***/
  178. .pricing-table .rate .price,
  179. .pricing-table2 .rate .price {
  180. width: 100%;
  181. display: block;
  182. text-align: center;
  183. margin-bottom: 10px;
  184. }
  185. .metro-fix-view .metro-nav-block.long {
  186. height: 237px !important;
  187. }
  188. }
  189. /* tablet to landscape and desktop */
  190. @media (min-width: 768px) and (max-width: 979px) {
  191. /*---lock page----*/
  192. .lock .lock-wrap {
  193. width: 95%;
  194. }
  195. .lock-wrap .single-size, .lock-wrap .double-size {
  196. width: 48% !important;
  197. }
  198. .double-size i {
  199. /*display: block;*/
  200. }
  201. /*--------*/
  202. /* body */
  203. body {
  204. padding-top: 0px;
  205. }
  206. /*sidebar*/
  207. .sidebar-scroll {
  208. height: auto;
  209. overflow: none;
  210. position: absolute;
  211. width: 100%;
  212. z-index: none;
  213. }
  214. #sidebar > ul > li > a > span {
  215. line-height: 35px;
  216. }
  217. #sidebar > ul > li {
  218. margin: 0 0 1px;
  219. }
  220. #sidebar > ul > li > a {
  221. height:35px;
  222. line-height:35px;
  223. padding: 0 10px;
  224. text-align: left;
  225. }
  226. #sidebar > ul > li > a i{
  227. display: none !important;
  228. }
  229. #sidebar ul > li > a .arrow, #sidebar > ul > li > a .arrow.open {
  230. margin-right: 25px;
  231. margin-top: -20px;
  232. }
  233. #sidebar > ul > li > a, #sidebar > ul > li > ul.sub > li {
  234. width: 100%;
  235. }
  236. #sidebar > ul > li > ul.sub > li > a {
  237. background: transparent !important ;
  238. }
  239. #sidebar > ul > li > ul.sub > li > a:hover {
  240. background: #4A8BC2 !important ;
  241. }
  242. /* body container */
  243. #main-content {
  244. margin: 7px !important;
  245. position: none !important;
  246. }
  247. /* sidebar */
  248. #sidebar {
  249. margin: 0px 7px 10px 7px !important;
  250. }
  251. /* sidebar collabler */
  252. #sidebar .btn-navbar.collapsed .arrow {
  253. display: none;
  254. }
  255. #sidebar .btn-navbar .arrow {
  256. position: absolute;
  257. right: 35px;
  258. width: 0;
  259. height: 0;
  260. top:48px;
  261. border-bottom: 15px solid #282e36;
  262. border-left: 15px solid transparent;
  263. border-right: 15px solid transparent;
  264. }
  265. #theme-change {
  266. top: 70px !important;
  267. }
  268. .metro-fix-view .metro-nav-block.long {
  269. height: 237px !important;
  270. }
  271. /*blog*/
  272. .blog-side-bar.blue-box ul li a, .blog-side-bar.orange-box ul li a {
  273. width: 78px;
  274. height: 78px;
  275. }
  276. /*login page*/
  277. .login-wrap {
  278. width: 100%;
  279. }
  280. .login-wrap .double-size, .login-wrap .single-size {
  281. width: 48%;
  282. }
  283. .login-wrap .double-size span, .login-wrap .single-size span {
  284. padding: 0;
  285. }
  286. .login-wrap .double-size input {
  287. /*width: 90%;*/
  288. }
  289. .login-wrap .metro {
  290. margin: 0 5px 5px 0;
  291. }
  292. /*-------*/
  293. /*error page*/
  294. .error-wrap.error-wrap-404 {
  295. width: 100%;
  296. }
  297. .error-wrap.error-wrap-404 .metro.big {
  298. width: 98% !important;
  299. }
  300. .error-wrap.error-wrap-404 .metro {
  301. width: 31.8%;
  302. }
  303. .error-wrap.error-wrap-404 .metro.double {
  304. height: 165px !important;
  305. width: 98% !important;
  306. }
  307. .fc-header-title {
  308. margin-top: -102px !important;
  309. }
  310. .fc-button-content{
  311. padding: 0 !important;
  312. }
  313. }
  314. /* Landscape phones and down */
  315. @media (max-width: 767px) {
  316. #header.navbar-inverse .navbar-inner {
  317. height: 185px !important;
  318. }
  319. #main-content {
  320. margin: 1px !important;
  321. }
  322. /*login page*/
  323. .login-wrap {
  324. width: 100%;
  325. }
  326. .login-wrap .double-size, .login-wrap .single-size {
  327. width: 48%;
  328. }
  329. .login-wrap .double-size span, .login-wrap .single-size span {
  330. padding: 0;
  331. }
  332. .login-wrap .double-size input {
  333. width: 90%;
  334. }
  335. .login-wrap .metro {
  336. margin: 0 5px 5px 0;
  337. }
  338. /*-------*/
  339. /*---lock page----*/
  340. .lock .lock-wrap {
  341. width: 95%;
  342. }
  343. .lock-wrap .single-size, .lock-wrap .double-size {
  344. width: 47% !important;
  345. }
  346. .double-size i {
  347. display: block;
  348. }
  349. /*----sidebar----*/
  350. .sidebar-scroll {
  351. height: auto;
  352. overflow: none;
  353. position: absolute;
  354. width: 97%;
  355. z-index: none;
  356. }
  357. #sidebar > ul > li > a > span {
  358. line-height: 35px;
  359. }
  360. #sidebar > ul > li {
  361. margin: 0 0 1px;
  362. }
  363. #sidebar > ul > li > a {
  364. height:35px;
  365. line-height:35px;
  366. padding: 0 10px;
  367. text-align: left;
  368. }
  369. #sidebar > ul > li > a i{
  370. display: none !important;
  371. }
  372. #sidebar ul > li > a .arrow, #sidebar > ul > li > a .arrow.open {
  373. margin-right: 25px;
  374. }
  375. #sidebar > ul > li > a, #sidebar > ul > li > ul.sub > li {
  376. width: 100%;
  377. }
  378. #sidebar > ul > li > ul.sub > li > a {
  379. background: transparent !important ;
  380. }
  381. #sidebar > ul > li > ul.sub > li > a:hover {
  382. background: #4A8BC2 !important ;
  383. }
  384. /* body */
  385. body {
  386. padding: 0px 5px 5px 5px !important;
  387. }
  388. #header .brand {
  389. margin-top: -5px !important;
  390. padding: 22px 35px !important;
  391. }
  392. #header.navbar-inverse .navbar-inner {
  393. height: 135px !important;
  394. }
  395. .navbar-inverse .brand, .navbar-inverse .nav > li > a{
  396. color: #fff !important;
  397. }
  398. .navbar-inverse .nav li.dropdown > .dropdown-toggle .caret {
  399. border-bottom-color: #FFF !important;
  400. border-top-color: #FFF !important;
  401. }
  402. #theme-change {
  403. border-radius: 5px !important;
  404. -webkit-border-radius: 5px !important;
  405. -moz-border-radius: 5px !important;
  406. top: 80px !important;
  407. }
  408. /* header */
  409. #header {
  410. padding-left: 0px;
  411. padding-right: 0px;
  412. margin: 0px;
  413. margin-left: -5px;
  414. margin-right: -5px;
  415. }
  416. #footer {
  417. padding-left: 0px;
  418. padding-right: 0px;
  419. }
  420. #header .navbar-inner {
  421. padding-top: 0px !important;
  422. margin-top: 0px !important;
  423. height: 50px !important;
  424. }
  425. /* sidebar */
  426. #sidebar > ul > li:first-child > a:hover, #sidebar > ul > li.active:first-child > a {
  427. -webkit-border-radius: 0px !important;
  428. -moz-border-radius: 0px !important;
  429. border-radius: 0px !important;
  430. }
  431. /* sidebar */
  432. #sidebar .btn-navbar .arrow {
  433. display: none;
  434. }
  435. #sidebar {
  436. margin: 0px 0px 8px 0px !important;
  437. }
  438. #sidebar .navbar-search {
  439. width: 100% !important;
  440. }
  441. #sidebar.in {
  442. margin-top: 7px !important;
  443. }
  444. /* header */
  445. #header .top-nav .nav{
  446. margin-top: 0px;
  447. margin-right: 5px;
  448. }
  449. #header .navbar-inner {
  450. padding-top: 0px !important;
  451. margin-top: 0px !important;
  452. }
  453. .container-fluid {
  454. margin: 0px;
  455. padding:5px;
  456. }
  457. /* main container */
  458. #container {
  459. margin-top: 0px !important;
  460. }
  461. /* body container */
  462. #main-content {
  463. margin: 0px !important;
  464. }
  465. /* style switcher */
  466. #theme-change {
  467. top:58px;
  468. right:12px;
  469. }
  470. .breadcrumb {
  471. padding-left: 10px;
  472. padding-right: 10px;
  473. margin-left: -5px;
  474. margin-right: -5px;
  475. }
  476. #header.navbar .nav > li > .dropdown-menu.notification::after {
  477. margin-right: 110px;
  478. }
  479. #header.navbar .nav > li > .dropdown-menu.notification {
  480. margin-right: -105px;
  481. }
  482. #header.navbar .nav > li > .dropdown-menu.inbox::after {
  483. margin-right: 85px;
  484. }
  485. #header.navbar .nav > li > .dropdown-menu.inbox {
  486. margin-right: -80px;
  487. }
  488. /* main container */
  489. #container {
  490. margin-top: 1px !important;
  491. }
  492. .fixed-top #container {
  493. margin-top: 2px !important;
  494. }
  495. .widget-body.form .form-actions{
  496. padding-left: 15px;
  497. }
  498. /* gritter notification fix */
  499. #gritter-notice-wrapper {
  500. right:1px !important;
  501. }
  502. .circle-stats {
  503. margin: 0px 0px !important;
  504. }
  505. /* cirlce stats */
  506. .circle-stat .details .title {
  507. margin: 10px 0px !important;
  508. }
  509. /*input error states*/
  510. .input-icon .input-error, .input-icon .input-warning, .input-icon .input-success {
  511. top:-25px;
  512. float: right;
  513. right:10px !important;
  514. }
  515. /*table advance*/
  516. .table-advance tr td.highlight:first-child a {
  517. margin-left: 8px;
  518. }
  519. /* full calendar fix */
  520. .fc-header-right {
  521. left:25px;
  522. position: absolute;
  523. }
  524. .fc-header-left .fc-button {
  525. margin: 0px !important;
  526. top: -10px !important;
  527. }
  528. .fc-header-right .fc-button {
  529. margin: 0px !important;
  530. top: -50px !important;
  531. }
  532. .fc-state-active, .fc-state-active .fc-button-inner, .fc-state-hover, .fc-state-hover .fc-button-inner {
  533. background: none !important;
  534. color: #FFFFFF !important;
  535. }
  536. .fc-state-default, .fc-state-default .fc-button-inner {
  537. background: none !important;
  538. }
  539. .fc-button {
  540. border: none !important;
  541. margin-right: 2px;
  542. }
  543. .fc-view {
  544. top: 0px !important;
  545. }
  546. .fc-button .fc-button-inner {
  547. margin: 0px !important;
  548. padding: 2px !important;
  549. border: none !important;
  550. margin-right: 2px !important;
  551. background-color: #fafafa !important;
  552. background-image: -moz-linear-gradient(top, #fafafa, #efefef) !important;
  553. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fafafa), to(#efefef)) !important;
  554. background-image: -webkit-linear-gradient(top, #fafafa, #efefef) !important;
  555. background-image: -o-linear-gradient(top, #fafafa, #efefef) !important;
  556. background-image: linear-gradient(to bottom, #fafafa, #efefef) !important;
  557. filter: progid:dximagetransform.microsoft.gradient(startColorstr='#fafafa', endColorstr='#efefef', GradientType=0) !important;
  558. -webkit-box-shadow: 0 1px 0px rgba(255, 255, 255, .8) !important;
  559. -moz-box-shadow: 0 1px 0px rgba(255, 255, 255, .8) !important;
  560. box-shadow: 0 1px 0px rgba(255, 255, 255, .8) !important;
  561. -webkit-border-radius: 3px !important;
  562. -moz-border-radius: 3px !important;
  563. border-radius: 3px !important;
  564. color: #646464 !important;
  565. border: 1px solid #ddd !important;
  566. text-shadow: 0 1px 0px rgba(255, 255, 255, .6) !important;
  567. text-align: center;
  568. }
  569. .fc-button.fc-state-disabled .fc-button-inner {
  570. color: #bcbbbb !important;
  571. }
  572. .fc-button.fc-state-active .fc-button-inner {
  573. background-color: #e5e4e4 !important;
  574. background-image: -moz-linear-gradient(top, #e5e4e4, #dddcdc) !important;
  575. background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#e5e4e4), to(#dddcdc)) !important;
  576. background-image: -webkit-linear-gradient(top, #e5e4e4, #dddcdc) !important;
  577. background-image: -o-linear-gradient(top, #e5e4e4, #dddcdc) !important;
  578. background-image: linear-gradient(to bottom, #e5e4e4, #dddcdc) !important;
  579. filter: progid:dximagetransform.microsoft.gradient(startColorstr='#e5e4e4', endColorstr='#dddcdc', GradientType=0) !important;
  580. }
  581. .fc-content {
  582. margin-top: 50px;
  583. }
  584. .fc-header-title h2 {
  585. line-height: 40px !important;
  586. font-size: 12px !important;
  587. }
  588. .fc-header {
  589. margin-bottom:0px !important;
  590. }
  591. /* footer */
  592. #footer .go-top {
  593. float: right;
  594. display: block;
  595. margin-top: -22px;
  596. margin-right: 0px;
  597. margin-bottom: 5px !important;
  598. }
  599. #counter {
  600. width: 300px !important;
  601. }
  602. .points {
  603. display: none ;
  604. }
  605. .countDays, .countHours, .countMinutes, .countSeconds {
  606. margin: 10px;
  607. }
  608. /*metro*/
  609. .metro-nav .metro-nav-block, .metro-nav .metro-nav-block.double {
  610. width: 49%;
  611. }
  612. .metro-nav .metro-nav-block:last-child {
  613. margin-right: 1%;
  614. }
  615. .metro-nav .metro-nav-block a {
  616. width: 94%;
  617. }
  618. .metro-fix-view .metro-nav-block.long {
  619. height: 237px !important;
  620. }
  621. .error-wrap .metro {
  622. width: 120px;
  623. height: 120px;
  624. }
  625. .error-wrap .metro span {
  626. font-size: 60px;
  627. padding-top: 50px;
  628. display: inline-block;
  629. }
  630. /*error page*/
  631. .error-wrap.error-wrap-404 {
  632. width: 100%;
  633. }
  634. .error-wrap.error-wrap-404 .metro.big {
  635. width: 98% !important;
  636. }
  637. .error-wrap.error-wrap-404 .metro {
  638. width: 31.2%;
  639. }
  640. .error-wrap.error-wrap-404 .metro.double {
  641. height: 165px !important;
  642. width: 98% !important;
  643. }
  644. }
  645. /* Landscape phones and down */
  646. @media (max-width: 430px) {
  647. .error-wrap .metro {
  648. width: 165px;
  649. height: 165px;
  650. }
  651. .error-wrap .metro span {
  652. font-size: 70px;
  653. padding-top: 70px;
  654. display: inline-block;
  655. }
  656. .sidebar-scroll {
  657. height: auto;
  658. overflow: none;
  659. position: absolute;
  660. width: 97%;
  661. z-index: none;
  662. }
  663. #header.navbar-inverse .navbar-inner {
  664. height: 185px !important;
  665. }
  666. #main-content {
  667. margin: 1px !important;
  668. }
  669. /*login page*/
  670. .login-wrap {
  671. width: 100%;
  672. }
  673. .login-wrap .double-size, .login-wrap .single-size {
  674. width: 48%;
  675. }
  676. .login-wrap .double-size span, .login-wrap .single-size span {
  677. padding: 0;
  678. }
  679. .login-wrap .double-size input {
  680. width: 80%;
  681. }
  682. .login-wrap .metro {
  683. margin: 0 5px 5px 0;
  684. }
  685. /*-------*/
  686. /*---lock page----*/
  687. .lock .lock-wrap {
  688. width: 95%;
  689. }
  690. .lock-wrap .single-size, .lock-wrap .double-size {
  691. width: 100% !important;
  692. }
  693. .double-size i {
  694. display: block;
  695. }
  696. /*--------*/
  697. #sidebar > ul > li > a > span {
  698. line-height: 35px;
  699. }
  700. #sidebar > ul > li {
  701. margin: 0 0 1px;
  702. }
  703. #sidebar > ul > li > a {
  704. height:35px;
  705. line-height:35px;
  706. padding: 0 10px;
  707. text-align: left;
  708. }
  709. #sidebar > ul > li > a i{
  710. display: none !important;
  711. }
  712. #sidebar ul > li > a .arrow, #sidebar > ul > li > a .arrow.open {
  713. margin-right: 25px;
  714. }
  715. #sidebar > ul > li > a, #sidebar > ul > li > ul.sub > li {
  716. width: 100%;
  717. }
  718. #sidebar > ul > li > ul.sub > li > a {
  719. background: transparent !important ;
  720. }
  721. #sidebar > ul > li > ul.sub > li > a:hover {
  722. background: #4A8BC2 !important ;
  723. }
  724. #login .lock{
  725. display: none !important;
  726. }
  727. #login, #lock {
  728. width: 260px !important;
  729. margin: 50px auto 0 !important;
  730. }
  731. #counter {
  732. width: 300px !important;
  733. }
  734. .points {
  735. display: none ;
  736. }
  737. .countDays, .countHours, .countMinutes, .countSeconds {
  738. margin: 10px;
  739. }
  740. #header .brand {
  741. margin-top: -5px !important;
  742. padding: 22px 35px !important;
  743. }
  744. .dashboard-report-li {
  745. float: left;
  746. width: 100%;
  747. padding: 0px !important;
  748. }
  749. #header.navbar-inverse .navbar-inner {
  750. height: 68px !important;
  751. }
  752. .navbar-inverse .brand, .navbar-inverse .nav > li > a{
  753. color: #fff !important;
  754. }
  755. .navbar-inverse .nav li.dropdown > .dropdown-toggle .caret {
  756. border-bottom-color: #FFF !important;
  757. border-top-color: #FFF !important;
  758. }
  759. /*metro*/
  760. .metro-nav .metro-nav-block, .metro-nav .metro-nav-block.double {
  761. width: 49%;
  762. }
  763. .metro-nav .metro-nav-block:last-child {
  764. margin-right: 1%;
  765. }
  766. .metro-nav .metro-nav-block a {
  767. width: 94%;
  768. }
  769. .metro-fix-view .metro-nav-block {
  770. width: 124px !important;
  771. }
  772. .metro-fix-view .metro-nav-block a {
  773. width: 84% !important;
  774. }
  775. /*error page*/
  776. .error-wrap.error-wrap-404 {
  777. width: 98%;
  778. }
  779. .error-wrap.error-wrap-404 .metro {
  780. width: 31.2%;
  781. }
  782. .error-wrap.error-wrap-404 .metro.double {
  783. height: 120px !important;
  784. width: 98% !important;
  785. }
  786. }
  787. /* Landscape phones and down */
  788. @media (max-width: 385px) {
  789. .sidebar-scroll {
  790. height: auto;
  791. overflow: none;
  792. position: absolute;
  793. width: 97%;
  794. z-index: none;
  795. }
  796. #header.navbar-inverse .navbar-inner {
  797. height: 185px !important;
  798. }
  799. #main-content {
  800. margin: 1px !important;
  801. }
  802. /*login page*/
  803. .login-wrap {
  804. width: 100%;
  805. }
  806. .login-wrap .double-size, .login-wrap .single-size {
  807. width: 48%;
  808. }
  809. .login-wrap .double-size span, .login-wrap .single-size span {
  810. padding: 0;
  811. }
  812. .login-wrap .double-size input {
  813. width: 80%;
  814. }
  815. .login-wrap .metro {
  816. margin: 0 5px 5px 0;
  817. }
  818. /*-------*/
  819. /*---lock page----*/
  820. .lock .lock-wrap {
  821. width: 95%;
  822. }
  823. .lock-wrap .single-size, .lock-wrap .double-size {
  824. width: 100% !important;
  825. }
  826. .double-size i {
  827. display: block;
  828. }
  829. /*--------*/
  830. #sidebar > ul > li > a > span {
  831. line-height: 35px;
  832. }
  833. #sidebar > ul > li {
  834. margin: 0 0 1px;
  835. }
  836. #sidebar > ul > li > a {
  837. height:35px;
  838. line-height:35px;
  839. padding: 0 10px;
  840. text-align: left;
  841. }
  842. #sidebar > ul > li > a i{
  843. display: none !important;
  844. }
  845. #sidebar ul > li > a .arrow, #sidebar > ul > li > a .arrow.open {
  846. margin-right: 25px;
  847. }
  848. #sidebar > ul > li > a, #sidebar > ul > li > ul.sub > li {
  849. width: 100%;
  850. }
  851. #sidebar > ul > li > ul.sub > li > a {
  852. background: transparent !important ;
  853. }
  854. #sidebar > ul > li > ul.sub > li > a:hover {
  855. background: #4A8BC2 !important ;
  856. }
  857. #theme-change {
  858. top:92px !important;
  859. right:12px !important;
  860. }
  861. #login .lock{
  862. display: none !important;
  863. }
  864. #login, #lock {
  865. width: 260px !important;
  866. margin: 50px auto 0 !important;
  867. }
  868. .m-wrap {
  869. width: 175px !important;
  870. }
  871. #counter {
  872. width: 300px !important;
  873. }
  874. .points {
  875. display: none ;
  876. }
  877. .countDays, .countHours, .countMinutes, .countSeconds {
  878. margin: 10px;
  879. }
  880. #forgotform #input-email {
  881. width: 203px;
  882. }
  883. /* page title*/
  884. .page-title small {
  885. display: block;
  886. margin: 0px 0px 18px 0px;
  887. }
  888. /* sidebar */
  889. #sidebar.in {
  890. margin-top: 7px !important;
  891. }
  892. #header .navbar-inner {
  893. padding-top: 0px !important;
  894. margin-top: 0px !important;
  895. height: 84px !important;
  896. }
  897. .navbar-inverse .brand, .navbar-inverse .nav > li > a{
  898. color: #fff !important;
  899. }
  900. .navbar-inverse .nav li.dropdown > .dropdown-toggle .caret {
  901. border-bottom-color: #FFF !important;
  902. border-top-color: #FFF !important;
  903. }
  904. /*metro*/
  905. .metro-nav .metro-nav-block, .metro-nav .metro-nav-block.double {
  906. width: 49%;
  907. }
  908. .metro-nav .metro-nav-block:last-child {
  909. margin-right: 1%;
  910. }
  911. .metro-nav .metro-nav-block a {
  912. width: 94%;
  913. }
  914. .metro-fix-view .metro-nav-block {
  915. width: 124px !important;
  916. }
  917. .metro-fix-view .metro-nav-block a {
  918. width: 84% !important;
  919. }
  920. /*error page*/
  921. .error-wrap.error-wrap-404 {
  922. width: 100%;
  923. }
  924. .error-wrap.error-wrap-404 .metro.big, .error-wrap.error-wrap-404 .metro.double, .error-wrap.error-wrap-404 .metro {
  925. width: 98%;
  926. }
  927. .error-wrap.error-wrap-404 .metro.double {
  928. height: 165px !important;
  929. }
  930. }
  931. /* Landscape phones and down */
  932. @media (max-width: 320px) {
  933. .sidebar-scroll {
  934. height: auto;
  935. overflow: none;
  936. position: absolute;
  937. width: 97%;
  938. z-index: none;
  939. }
  940. #header.navbar-inverse .navbar-inner {
  941. height: 185px !important;
  942. }
  943. #main-content {
  944. margin: 1px !important;
  945. }
  946. /*---lock page----*/
  947. .lock .lock-wrap {
  948. width: 95%;
  949. }
  950. .lock-wrap .single-size, .lock-wrap .double-size {
  951. width: 100% !important;
  952. }
  953. .double-size i {
  954. display: block;
  955. }
  956. /*----menu----*/
  957. #sidebar > ul > li > a > span {
  958. line-height: 35px;
  959. }
  960. #sidebar > ul > li {
  961. margin: 0 0 1px;
  962. }
  963. #sidebar > ul > li > a {
  964. height:35px;
  965. line-height:35px;
  966. padding: 0 10px;
  967. text-align: left;
  968. }
  969. #sidebar > ul > li > a i{
  970. display: none !important;
  971. }
  972. #sidebar ul > li > a .arrow, #sidebar > ul > li > a .arrow.open {
  973. margin-right: 25px;
  974. }
  975. #sidebar > ul > li > a, #sidebar > ul > li > ul.sub > li {
  976. width: 100%;
  977. }
  978. #sidebar > ul > li > ul.sub > li > a {
  979. background: transparent !important ;
  980. }
  981. #sidebar > ul > li > ul.sub > li > a:hover {
  982. background: #4A8BC2 !important ;
  983. }
  984. /*login page*/
  985. .login-wrap {
  986. width: 100%;
  987. }
  988. .login-wrap .double-size, .login-wrap .single-size {
  989. width: 48%;
  990. }
  991. .login-wrap .double-size span, .login-wrap .single-size span {
  992. padding: 0;
  993. }
  994. .login-wrap .double-size input {
  995. width: 80%;
  996. }
  997. .login-wrap .metro {
  998. margin: 0 5px 5px 0;
  999. }
  1000. /*-------*/
  1001. #login .lock{
  1002. display: none !important;
  1003. }
  1004. #login, #lock {
  1005. width: 260px !important;
  1006. margin: 50px auto 0 !important;
  1007. }
  1008. .m-wrap {
  1009. width: 175px !important;
  1010. }
  1011. #counter {
  1012. width: 300px !important;
  1013. }
  1014. .points {
  1015. display: none ;
  1016. }
  1017. #forgotform #input-email {
  1018. width: 203px;
  1019. }
  1020. #header .brand {
  1021. margin-top: -5px !important;
  1022. padding: 22px 22px !important;
  1023. }
  1024. .navbar-inverse .brand, .navbar-inverse .nav > li > a{
  1025. color: #fff !important;
  1026. }
  1027. .navbar-inverse .nav li.dropdown > .dropdown-toggle .caret {
  1028. border-bottom-color: #FFF !important;
  1029. border-top-color: #FFF !important;
  1030. }
  1031. /*metro*/
  1032. .metro-nav .metro-nav-block, .metro-nav .metro-nav-block.double {
  1033. width: 49%;
  1034. }
  1035. .metro-nav .metro-nav-block:last-child {
  1036. margin-right: 1%;
  1037. }
  1038. .metro-nav .metro-nav-block a {
  1039. width: 94%;
  1040. }
  1041. .metro-fix-view .metro-nav-block {
  1042. width: 124px !important;
  1043. }
  1044. .metro-fix-view .metro-nav-block a {
  1045. width: 84% !important;
  1046. }
  1047. /*error page*/
  1048. .error-wrap.error-wrap-404 {
  1049. width: 100%;
  1050. }
  1051. .error-wrap.error-wrap-404 .metro.big, .error-wrap.error-wrap-404 .metro.double, .error-wrap.error-wrap-404 .metro {
  1052. width: 98%;
  1053. }
  1054. /*notification*/
  1055. ul.item-list li .pull-right {
  1056. display: none;
  1057. }
  1058. }