AdminLTE.css 81 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405
  1. @import url(//fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,300italic,400italic,600italic);
  2. @import url(//fonts.googleapis.com/css?family=Kaushan+Script);
  3. /*!
  4. * AdminLTE v1.2
  5. * Author: AlmsaeedStudio.com
  6. * License: Open source - MIT
  7. * Please visit http://opensource.org/licenses/MIT for more information
  8. !*/
  9. /*
  10. Core: General style
  11. ----------------------------
  12. */
  13. html,
  14. body {
  15. overflow-x: hidden!important;
  16. font-family: 'Source Sans Pro', sans-serif;
  17. -webkit-font-smoothing: antialiased;
  18. min-height: 100%;
  19. background: #f9f9f9;
  20. }
  21. a {
  22. color: #3c8dbc;
  23. }
  24. a:hover,
  25. a:active,
  26. a:focus {
  27. outline: none;
  28. text-decoration: none;
  29. color: #72afd2;
  30. }
  31. /* Layouts */
  32. .wrapper {
  33. min-height: 100%;
  34. }
  35. .wrapper:before,
  36. .wrapper:after {
  37. display: table;
  38. content: " ";
  39. }
  40. .wrapper:after {
  41. clear: both;
  42. }
  43. /* Header */
  44. body > .header {
  45. position: absolute;
  46. top: 0;
  47. left: 0;
  48. right: 0;
  49. z-index: 1030;
  50. }
  51. /* Define 2 column template */
  52. .right-side,
  53. .left-side {
  54. min-height: 100%;
  55. display: block;
  56. }
  57. /*right side - contins main content*/
  58. .right-side {
  59. background-color: #f9f9f9;
  60. margin-left: 220px;
  61. }
  62. /*left side - contains sidebar*/
  63. .left-side {
  64. position: absolute;
  65. width: 220px;
  66. top: 0;
  67. }
  68. @media screen and (min-width: 992px) {
  69. .left-side {
  70. top: 50px;
  71. }
  72. /*Right side strech mode*/
  73. .right-side.strech {
  74. margin-left: 0;
  75. }
  76. .right-side.strech > .content-header {
  77. margin-top: 0px;
  78. }
  79. /* Left side collapse */
  80. .left-side.collapse-left {
  81. left: -220px;
  82. }
  83. }
  84. /*Give content full width on xs screens*/
  85. @media screen and (max-width: 992px) {
  86. .right-side {
  87. margin-left: 0;
  88. }
  89. }
  90. /*
  91. By default the layout is not fixed but if you add the class .fixed to the body element
  92. the sidebar and the navbar will automatically become poisitioned fixed
  93. */
  94. body.fixed > .header,
  95. body.fixed .left-side,
  96. body.fixed .navbar {
  97. position: fixed;
  98. }
  99. body.fixed > .header {
  100. top: 0;
  101. right: 0;
  102. left: 0;
  103. }
  104. body.fixed .navbar {
  105. left: 0;
  106. right: 0;
  107. }
  108. body.fixed .wrapper {
  109. margin-top: 50px;
  110. }
  111. /* Content */
  112. .content {
  113. padding: 20px 15px;
  114. background: #f9f9f9;
  115. overflow: auto;
  116. }
  117. /* Utility */
  118. /* H1 - H6 font */
  119. h1,
  120. h2,
  121. h3,
  122. h4,
  123. h5,
  124. h6,
  125. .h1,
  126. .h2,
  127. .h3,
  128. .h4,
  129. .h5,
  130. .h6 {
  131. font-family: 'Source Sans Pro', sans-serif;
  132. }
  133. /* Page Header */
  134. .page-header {
  135. margin: 10px 0 20px 0;
  136. font-size: 22px;
  137. }
  138. .page-header > small {
  139. color: #666;
  140. display: block;
  141. margin-top: 5px;
  142. }
  143. /* All images should be responsive */
  144. img {
  145. max-width: 100%important;
  146. }
  147. .sort-highlight {
  148. background: #f4f4f4;
  149. border: 1px dashed #ddd;
  150. margin-bottom: 10px;
  151. }
  152. /* 10px padding and margins */
  153. .pad {
  154. padding: 10px;
  155. }
  156. .margin {
  157. margin: 10px;
  158. }
  159. /* Display inline */
  160. .inline {
  161. display: inline;
  162. width: auto;
  163. }
  164. /* Background colors */
  165. .bg-red,
  166. .bg-yellow,
  167. .bg-aqua,
  168. .bg-blue,
  169. .bg-light-blue,
  170. .bg-green,
  171. .bg-navy,
  172. .bg-teal,
  173. .bg-olive,
  174. .bg-lime,
  175. .bg-orange,
  176. .bg-fuchsia,
  177. .bg-purple,
  178. .bg-maroon,
  179. .bg-black {
  180. color: #f9f9f9 !important;
  181. }
  182. .bg-gray {
  183. background-color: #eaeaec !important;
  184. }
  185. .bg-black {
  186. background-color: #222222 !important;
  187. }
  188. .bg-red {
  189. background-color: #f56954 !important;
  190. }
  191. .bg-yellow {
  192. background-color: #f39c12 !important;
  193. }
  194. .bg-aqua {
  195. background-color: #00c0ef !important;
  196. }
  197. .bg-blue {
  198. background-color: #0073b7 !important;
  199. }
  200. .bg-light-blue {
  201. background-color: #3c8dbc !important;
  202. }
  203. .bg-green {
  204. background-color: #00a65a !important;
  205. }
  206. .bg-navy {
  207. background-color: #001f3f !important;
  208. }
  209. .bg-teal {
  210. background-color: #39cccc !important;
  211. }
  212. .bg-olive {
  213. background-color: #3d9970 !important;
  214. }
  215. .bg-lime {
  216. background-color: #01ff70 !important;
  217. }
  218. .bg-orange {
  219. background-color: #ff851b !important;
  220. }
  221. .bg-fuchsia {
  222. background-color: #f012be !important;
  223. }
  224. .bg-purple {
  225. background-color: #932ab6 !important;
  226. }
  227. .bg-maroon {
  228. background-color: #85144b !important;
  229. }
  230. /* Text colors */
  231. .text-red {
  232. color: #f56954 !important;
  233. }
  234. .text-yellow {
  235. color: #f39c12 !important;
  236. }
  237. .text-aqua {
  238. color: #00c0ef !important;
  239. }
  240. .text-blue {
  241. color: #0073b7 !important;
  242. }
  243. .text-light-blue {
  244. color: #3c8dbc !important;
  245. }
  246. .text-green {
  247. color: #00a65a !important;
  248. }
  249. .text-navy {
  250. color: #001f3f !important;
  251. }
  252. .text-teal {
  253. color: #39cccc !important;
  254. }
  255. .text-olive {
  256. color: #3d9970 !important;
  257. }
  258. .text-lime {
  259. color: #01ff70 !important;
  260. }
  261. .text-orange {
  262. color: #ff851b !important;
  263. }
  264. .text-fuchsia {
  265. color: #f012be !important;
  266. }
  267. .text-purple {
  268. color: #932ab6 !important;
  269. }
  270. .text-maroon {
  271. color: #85144b !important;
  272. }
  273. /*Hide elements by display none only*/
  274. .hide {
  275. display: none !important;
  276. }
  277. /* Remove borders */
  278. .no-border {
  279. border: 0px !important;
  280. }
  281. /* Remove padding */
  282. .no-padding {
  283. padding: 0px !important;
  284. }
  285. /* Remove margins */
  286. .no-margin {
  287. margin: 0px !important;
  288. }
  289. /* Remove box shadow */
  290. .no-shadow {
  291. box-shadow: none!important;
  292. }
  293. /* Don't display when printing */
  294. @media print {
  295. .no-print {
  296. display: none;
  297. }
  298. .left-side,
  299. .header,
  300. .content-header {
  301. display: none;
  302. }
  303. .right-side {
  304. margin: 0;
  305. }
  306. }
  307. /* Remove border radius */
  308. .flat {
  309. -webkit-border-radius: 0 !important;
  310. -moz-border-radius: 0 !important;
  311. border-radius: 0 !important;
  312. }
  313. /* Change the color of the striped tables */
  314. .table-striped > tbody > tr:nth-child(odd) > td,
  315. .table-striped > tbody > tr:nth-child(odd) > th {
  316. background-color: #f3f4f5;
  317. }
  318. /* .text-center in tables */
  319. table.text-center td,
  320. table.text-center th {
  321. text-align: center;
  322. }
  323. /* _fix for sparkline tooltip */
  324. .jqstooltip {
  325. padding: 5px!important;
  326. width: auto!important;
  327. height: auto!important;
  328. }
  329. /*
  330. Components: navbar, logo and content header
  331. -------------------------------------------------
  332. */
  333. body > .header {
  334. position: relative;
  335. max-height: 100px;
  336. z-index: 1030;
  337. }
  338. body > .header .navbar {
  339. height: 50px;
  340. margin-bottom: 0;
  341. margin-left: 220px;
  342. }
  343. body > .header .navbar .sidebar-toggle {
  344. float: left;
  345. padding: 9px 5px;
  346. margin-top: 8px;
  347. margin-right: 0;
  348. margin-bottom: 8px;
  349. margin-left: 5px;
  350. background-color: transparent;
  351. background-image: none;
  352. border: 1px solid transparent;
  353. -webkit-border-radius: 0 !important;
  354. -moz-border-radius: 0 !important;
  355. border-radius: 0 !important;
  356. }
  357. body > .header .navbar .sidebar-toggle:hover .icon-bar {
  358. background: #f6f6f6;
  359. }
  360. body > .header .navbar .sidebar-toggle .icon-bar {
  361. display: block;
  362. width: 22px;
  363. height: 2px;
  364. -webkit-border-radius: 4px;
  365. -moz-border-radius: 4px;
  366. border-radius: 4px;
  367. }
  368. body > .header .navbar .sidebar-toggle .icon-bar + .icon-bar {
  369. margin-top: 4px;
  370. }
  371. body > .header .navbar .nav > li.user > a {
  372. font-weight: bold;
  373. }
  374. body > .header .navbar .nav > li.user > a > .fa,
  375. body > .header .navbar .nav > li.user > a > .glyphicon,
  376. body > .header .navbar .nav > li.user > a > .ion {
  377. margin-right: 5px;
  378. }
  379. body > .header .navbar .nav > li > a > .label {
  380. -webkit-border-radius: 50%;
  381. -moz-border-radius: 50%;
  382. border-radius: 50%;
  383. position: absolute;
  384. top: 7px;
  385. right: 2px;
  386. font-size: 10px;
  387. font-weight: normal;
  388. width: 15px;
  389. height: 15px;
  390. line-height: 1.0em;
  391. text-align: center;
  392. padding: 2px;
  393. }
  394. body > .header .navbar .nav > li > a:hover > .label {
  395. top: 3px;
  396. }
  397. body > .header .logo {
  398. float: left;
  399. font-size: 20px;
  400. line-height: 50px;
  401. text-align: center;
  402. padding: 0 10px;
  403. width: 220px;
  404. font-family: 'Kaushan Script', cursive;
  405. font-weight: 500;
  406. height: 50px;
  407. display: block;
  408. }
  409. body > .header .logo .icon {
  410. margin-right: 10px;
  411. }
  412. .right-side > .content-header {
  413. position: relative;
  414. padding: 15px 15px 10px 20px;
  415. }
  416. .right-side > .content-header > h1 {
  417. margin: 0;
  418. font-size: 24px;
  419. }
  420. .right-side > .content-header > h1 > small {
  421. font-size: 15px;
  422. display: inline-block;
  423. padding-left: 4px;
  424. font-weight: 300;
  425. }
  426. .right-side > .content-header > .breadcrumb {
  427. float: right;
  428. background: transparent;
  429. margin-top: 0px;
  430. margin-bottom: 0;
  431. font-size: 12px;
  432. padding: 7px 5px;
  433. position: absolute;
  434. top: 15px;
  435. right: 10px;
  436. -webkit-border-radius: 2px;
  437. -moz-border-radius: 2px;
  438. border-radius: 2px;
  439. }
  440. .right-side > .content-header > .breadcrumb > li > a {
  441. color: #444;
  442. text-decoration: none;
  443. }
  444. .right-side > .content-header > .breadcrumb > li > a > .fa,
  445. .right-side > .content-header > .breadcrumb > li > a > .glyphicon,
  446. .right-side > .content-header > .breadcrumb > li > a > .ion {
  447. margin-right: 5px;
  448. }
  449. .right-side > .content-header > .breadcrumb > li + li:before {
  450. content: '>\00a0';
  451. }
  452. @media screen and (max-width: 767px) {
  453. .right-side > .content-header > .breadcrumb {
  454. position: relative;
  455. margin-top: 5px;
  456. top: 0;
  457. right: 0;
  458. float: none;
  459. background: #efefef;
  460. }
  461. }
  462. @media (max-width: 767px) {
  463. .navbar .navbar-nav > li {
  464. float: left;
  465. }
  466. .navbar-nav {
  467. margin: 0;
  468. float: left;
  469. }
  470. .navbar-nav > li > a {
  471. padding-top: 15px;
  472. padding-bottom: 15px;
  473. line-height: 20px;
  474. }
  475. .navbar .navbar-right {
  476. float: right;
  477. }
  478. }
  479. @media screen and (max-width: 560px) {
  480. body > .header {
  481. position: relative;
  482. }
  483. body > .header .logo,
  484. body > .header .navbar {
  485. width: 100%;
  486. float: none;
  487. position: relative!important;
  488. }
  489. body > .header .navbar {
  490. margin: 0;
  491. }
  492. body.fixed > .header {
  493. position: fixed;
  494. }
  495. body.fixed > .wrapper,
  496. body.fixed .sidebar-offcanvas {
  497. margin-top: 100px!important;
  498. }
  499. }
  500. /*
  501. Component: Sidebar
  502. --------------------------
  503. */
  504. .sidebar {
  505. margin-bottom: 5px;
  506. }
  507. .sidebar .sidebar-form input:focus {
  508. -webkit-box-shadow: none;
  509. -moz-box-shadow: none;
  510. box-shadow: none;
  511. border-color: transparent!important;
  512. }
  513. .sidebar .sidebar-menu {
  514. list-style: none;
  515. margin: 0;
  516. padding: 0;
  517. }
  518. .sidebar .sidebar-menu > li {
  519. margin: 0;
  520. padding: 0;
  521. }
  522. .sidebar .sidebar-menu > li > a {
  523. padding: 12px 5px 12px 15px;
  524. display: block;
  525. }
  526. .sidebar .sidebar-menu > li > a > .fa,
  527. .sidebar .sidebar-menu > li > a > .glyphicon,
  528. .sidebar .sidebar-menu > li > a > .ion {
  529. width: 20px;
  530. }
  531. .sidebar .sidebar-menu .treeview-menu {
  532. display: none;
  533. list-style: none;
  534. padding: 0;
  535. margin: 0;
  536. }
  537. .sidebar .sidebar-menu .treeview-menu > li {
  538. margin: 0;
  539. }
  540. .sidebar .sidebar-menu .treeview-menu > li > a {
  541. padding: 5px 5px 5px 15px;
  542. display: block;
  543. font-size: 14px;
  544. margin: 0px 0px;
  545. }
  546. .sidebar .sidebar-menu .treeview-menu > li > a > .fa,
  547. .sidebar .sidebar-menu .treeview-menu > li > a > .glyphicon,
  548. .sidebar .sidebar-menu .treeview-menu > li > a > .ion {
  549. width: 20px;
  550. }
  551. .user-panel {
  552. padding: 10px;
  553. }
  554. .user-panel:before,
  555. .user-panel:after {
  556. display: table;
  557. content: " ";
  558. }
  559. .user-panel:after {
  560. clear: both;
  561. }
  562. .user-panel > .image > img {
  563. width: 45px;
  564. height: 45px;
  565. }
  566. .user-panel > .info {
  567. font-weight: 600;
  568. padding: 5px 5px 5px 15px;
  569. font-size: 14px;
  570. line-height: 1;
  571. }
  572. .user-panel > .info > p {
  573. margin-bottom: 9px;
  574. }
  575. .user-panel > .info > a {
  576. text-decoration: none;
  577. padding-right: 5px;
  578. margin-top: 3px;
  579. font-size: 11px;
  580. font-weight: normal;
  581. }
  582. .user-panel > .info > a > .fa,
  583. .user-panel > .info > a > .ion,
  584. .user-panel > .info > a > .glyphicon {
  585. margin-right: 3px;
  586. }
  587. /*
  588. * Off Canvas
  589. * --------------------------------------------------
  590. * Gives us the push menu effect
  591. */
  592. @media screen and (max-width: 992px) {
  593. .relative {
  594. position: relative;
  595. }
  596. .row-offcanvas-right .sidebar-offcanvas {
  597. right: -220px;
  598. }
  599. .row-offcanvas-left .sidebar-offcanvas {
  600. left: -220px;
  601. }
  602. .row-offcanvas-right.active {
  603. right: 220px;
  604. }
  605. .row-offcanvas-left.active {
  606. left: 220px;
  607. }
  608. .sidebar-offcanvas {
  609. left: 0;
  610. }
  611. body.fixed .sidebar-offcanvas {
  612. margin-top: 50px;
  613. left: -220px;
  614. }
  615. body.fixed .row-offcanvas-left.active .navbar {
  616. left: 220px !important;
  617. right: 0;
  618. }
  619. body.fixed .row-offcanvas-left.active .sidebar-offcanvas {
  620. left: 0px;
  621. }
  622. }
  623. /*
  624. Dropdown menus
  625. ----------------------------
  626. */
  627. /*Dropdowns in general*/
  628. .dropdown-menu {
  629. -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
  630. -moz-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
  631. box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
  632. z-index: 2300;
  633. }
  634. .dropdown-menu > li > a > .glyphicon,
  635. .dropdown-menu > li > a > .fa,
  636. .dropdown-menu > li > a > .ion {
  637. margin-right: 10px;
  638. }
  639. .dropdown-menu > li > a:hover {
  640. background-color: #3c8dbc;
  641. color: #f9f9f9;
  642. }
  643. /*Drodown in navbars*/
  644. .skin-blue .navbar .dropdown-menu > li > a {
  645. color: #444444;
  646. }
  647. /*
  648. Navbar custom dropdown menu
  649. ------------------------------------
  650. */
  651. .navbar-nav > .notifications-menu > .dropdown-menu,
  652. .navbar-nav > .messages-menu > .dropdown-menu,
  653. .navbar-nav > .tasks-menu > .dropdown-menu {
  654. width: 280px;
  655. padding: 0 0 0 0!important;
  656. margin: 0!important;
  657. top: 100%;
  658. border: 1px solid #dfdfdf;
  659. -webkit-border-radius: 4px !important;
  660. -moz-border-radius: 4px !important;
  661. border-radius: 4px !important;
  662. }
  663. .navbar-nav > .notifications-menu > .dropdown-menu > li.header,
  664. .navbar-nav > .messages-menu > .dropdown-menu > li.header,
  665. .navbar-nav > .tasks-menu > .dropdown-menu > li.header {
  666. -webkit-border-top-left-radius: 4px;
  667. -webkit-border-top-right-radius: 4px;
  668. -webkit-border-bottom-right-radius: 0;
  669. -webkit-border-bottom-left-radius: 0;
  670. -moz-border-radius-topleft: 4px;
  671. -moz-border-radius-topright: 4px;
  672. -moz-border-radius-bottomright: 0;
  673. -moz-border-radius-bottomleft: 0;
  674. border-top-left-radius: 4px;
  675. border-top-right-radius: 4px;
  676. border-bottom-right-radius: 0;
  677. border-bottom-left-radius: 0;
  678. background-color: #ffffff;
  679. padding: 7px 10px;
  680. border-bottom: 1px solid #f4f4f4;
  681. color: #444444;
  682. font-size: 14px;
  683. }
  684. .navbar-nav > .notifications-menu > .dropdown-menu > li.header:after,
  685. .navbar-nav > .messages-menu > .dropdown-menu > li.header:after,
  686. .navbar-nav > .tasks-menu > .dropdown-menu > li.header:after {
  687. bottom: 100%;
  688. left: 92%;
  689. border: solid transparent;
  690. content: " ";
  691. height: 0;
  692. width: 0;
  693. position: absolute;
  694. pointer-events: none;
  695. border-color: rgba(255, 255, 255, 0);
  696. border-bottom-color: #ffffff;
  697. border-width: 7px;
  698. margin-left: -7px;
  699. }
  700. .navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a,
  701. .navbar-nav > .messages-menu > .dropdown-menu > li.footer > a,
  702. .navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a {
  703. -webkit-border-top-left-radius: 0px;
  704. -webkit-border-top-right-radius: 0px;
  705. -webkit-border-bottom-right-radius: 4px;
  706. -webkit-border-bottom-left-radius: 4px;
  707. -moz-border-radius-topleft: 0px;
  708. -moz-border-radius-topright: 0px;
  709. -moz-border-radius-bottomright: 4px;
  710. -moz-border-radius-bottomleft: 4px;
  711. border-top-left-radius: 0px;
  712. border-top-right-radius: 0px;
  713. border-bottom-right-radius: 4px;
  714. border-bottom-left-radius: 4px;
  715. font-size: 12px;
  716. background-color: #f4f4f4;
  717. padding: 7px 10px;
  718. border-bottom: 1px solid #eeeeee;
  719. color: #444444;
  720. text-align: center;
  721. }
  722. .navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a:hover,
  723. .navbar-nav > .messages-menu > .dropdown-menu > li.footer > a:hover,
  724. .navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a:hover {
  725. background: #f4f4f4;
  726. text-decoration: none;
  727. font-weight: normal;
  728. }
  729. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu,
  730. .navbar-nav > .messages-menu > .dropdown-menu > li .menu,
  731. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu {
  732. margin: 0;
  733. padding: 0;
  734. list-style: none;
  735. overflow-x: hidden;
  736. }
  737. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a,
  738. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a,
  739. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a {
  740. display: block;
  741. white-space: nowrap;
  742. /* Prevent text from breaking */
  743. border-bottom: 1px solid #f4f4f4;
  744. }
  745. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a:hover,
  746. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:hover,
  747. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a:hover {
  748. background: #f6f6f6;
  749. text-decoration: none;
  750. }
  751. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a {
  752. font-size: 12px;
  753. color: #444444;
  754. }
  755. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon,
  756. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa,
  757. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion {
  758. font-size: 20px;
  759. width: 50px;
  760. text-align: center;
  761. padding: 15px 0px;
  762. margin-right: 5px;
  763. /* Default background and font colors */
  764. background: #00c0ef;
  765. color: #f9f9f9;
  766. /* Fallback for browsers that doesn't support rgba */
  767. color: rgba(255, 255, 255, 0.7);
  768. }
  769. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon.danger,
  770. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa.danger,
  771. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion.danger {
  772. background: #f56954;
  773. }
  774. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon.warning,
  775. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa.warning,
  776. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion.warning {
  777. background: #f39c12;
  778. }
  779. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon.success,
  780. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa.success,
  781. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion.success {
  782. background: #00a65a;
  783. }
  784. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon.info,
  785. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa.info,
  786. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion.info {
  787. background: #00c0ef;
  788. }
  789. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a {
  790. margin: 0px;
  791. line-height: 20px;
  792. padding: 10px 5px 10px 5px;
  793. -webkit-border-radius: 4px;
  794. -moz-border-radius: 4px;
  795. border-radius: 4px;
  796. }
  797. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > div > img {
  798. margin: auto 10px auto auto;
  799. width: 40px;
  800. height: 40px;
  801. border: 1px solid #dddddd;
  802. }
  803. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > h4 {
  804. padding: 0;
  805. margin: 0 0 0 45px;
  806. color: #444444;
  807. font-size: 15px;
  808. }
  809. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > h4 > small {
  810. color: #999999;
  811. font-size: 10px;
  812. float: right;
  813. }
  814. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > p {
  815. margin: 0 0 0 45px;
  816. font-size: 12px;
  817. color: #888888;
  818. }
  819. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:before,
  820. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after {
  821. display: table;
  822. content: " ";
  823. }
  824. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after {
  825. clear: both;
  826. }
  827. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a {
  828. padding: 10px;
  829. }
  830. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a > h3 {
  831. font-size: 14px;
  832. padding: 0;
  833. margin: 0 0 10px 0;
  834. color: #666666;
  835. }
  836. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a > .progress {
  837. padding: 0;
  838. margin: 0;
  839. }
  840. .navbar-nav > .user-menu > .dropdown-menu {
  841. -webkit-border-radius: 0;
  842. -moz-border-radius: 0;
  843. border-radius: 0;
  844. padding: 1px 0 0 0;
  845. border-top-width: 0;
  846. width: 280px;
  847. }
  848. .navbar-nav > .user-menu > .dropdown-menu:after {
  849. bottom: 100%;
  850. right: 10px;
  851. border: solid transparent;
  852. content: " ";
  853. height: 0;
  854. width: 0;
  855. position: absolute;
  856. pointer-events: none;
  857. border-color: rgba(255, 255, 255, 0);
  858. border-bottom-color: #ffffff;
  859. border-width: 10px;
  860. margin-left: -10px;
  861. }
  862. .navbar-nav > .user-menu > .dropdown-menu > li.user-header {
  863. height: 175px;
  864. padding: 10px;
  865. background: #3c8dbc;
  866. text-align: center;
  867. }
  868. .navbar-nav > .user-menu > .dropdown-menu > li.user-header > img {
  869. z-index: 5;
  870. height: 90px;
  871. width: 90px;
  872. border: 8px solid;
  873. border-color: transparent;
  874. border-color: rgba(255, 255, 255, 0.2);
  875. }
  876. .navbar-nav > .user-menu > .dropdown-menu > li.user-header > p {
  877. z-index: 5;
  878. color: #f9f9f9;
  879. color: rgba(255, 255, 255, 0.8);
  880. font-size: 17px;
  881. text-shadow: 2px 2px 3px #333333;
  882. margin-top: 10px;
  883. }
  884. .navbar-nav > .user-menu > .dropdown-menu > li.user-header > p > small {
  885. display: block;
  886. font-size: 12px;
  887. }
  888. .navbar-nav > .user-menu > .dropdown-menu > li.user-body {
  889. padding: 15px;
  890. border-bottom: 1px solid #f4f4f4;
  891. border-top: 1px solid #dddddd;
  892. }
  893. .navbar-nav > .user-menu > .dropdown-menu > li.user-body:before,
  894. .navbar-nav > .user-menu > .dropdown-menu > li.user-body:after {
  895. display: table;
  896. content: " ";
  897. }
  898. .navbar-nav > .user-menu > .dropdown-menu > li.user-body:after {
  899. clear: both;
  900. }
  901. .navbar-nav > .user-menu > .dropdown-menu > li.user-body > div > a {
  902. color: #0073b7;
  903. }
  904. .navbar-nav > .user-menu > .dropdown-menu > li.user-footer {
  905. background-color: #f9f9f9;
  906. padding: 10px;
  907. }
  908. .navbar-nav > .user-menu > .dropdown-menu > li.user-footer:before,
  909. .navbar-nav > .user-menu > .dropdown-menu > li.user-footer:after {
  910. display: table;
  911. content: " ";
  912. }
  913. .navbar-nav > .user-menu > .dropdown-menu > li.user-footer:after {
  914. clear: both;
  915. }
  916. .navbar-nav > .user-menu > .dropdown-menu > li.user-footer .btn-default {
  917. color: #666666;
  918. }
  919. /* Add fade animation to dropdown menus */
  920. .open > .dropdown-menu {
  921. animation-name: fadeAnimation;
  922. animation-duration: .7s;
  923. animation-iteration-count: 1;
  924. animation-timing-function: ease;
  925. animation-fill-mode: forwards;
  926. -webkit-animation-name: fadeAnimation;
  927. -webkit-animation-duration: .7s;
  928. -webkit-animation-iteration-count: 1;
  929. -webkit-animation-timing-function: ease;
  930. -webkit-animation-fill-mode: forwards;
  931. -moz-animation-name: fadeAnimation;
  932. -moz-animation-duration: .7s;
  933. -moz-animation-iteration-count: 1;
  934. -moz-animation-timing-function: ease;
  935. -moz-animation-fill-mode: forwards;
  936. }
  937. @keyframes fadeAnimation {
  938. from {
  939. opacity: 0;
  940. top: 120%;
  941. }
  942. to {
  943. opacity: 1;
  944. top: 100%;
  945. }
  946. }
  947. @-webkit-keyframes fadeAnimation {
  948. from {
  949. opacity: 0;
  950. top: 120%;
  951. }
  952. to {
  953. opacity: 1;
  954. top: 100%;
  955. }
  956. }
  957. /* Fix dropdown menu for small screens to display correctly on small screens */
  958. @media screen and (max-width: 767px) {
  959. .navbar-nav > .notifications-menu > .dropdown-menu,
  960. .navbar-nav > .user-menu > .dropdown-menu,
  961. .navbar-nav > .tasks-menu > .dropdown-menu,
  962. .navbar-nav > .messages-menu > .dropdown-menu {
  963. position: absolute;
  964. top: 100%;
  965. right: 0;
  966. left: auto;
  967. border-right: 1px solid #dddddd;
  968. border-bottom: 1px solid #dddddd;
  969. border-left: 1px solid #dddddd;
  970. background: #ffffff;
  971. }
  972. }
  973. /* Fix menu positions on xs screens to appear correctly and fully */
  974. @media screen and (max-width: 480px) {
  975. .navbar-nav > .notifications-menu > .dropdown-menu > li.header,
  976. .navbar-nav > .tasks-menu > .dropdown-menu > li.header,
  977. .navbar-nav > .messages-menu > .dropdown-menu > li.header {
  978. /* Remove arrow from the top */
  979. }
  980. .navbar-nav > .notifications-menu > .dropdown-menu > li.header:after,
  981. .navbar-nav > .tasks-menu > .dropdown-menu > li.header:after,
  982. .navbar-nav > .messages-menu > .dropdown-menu > li.header:after {
  983. border-width: 0px!important;
  984. }
  985. .navbar-nav > .tasks-menu > .dropdown-menu {
  986. position: absolute;
  987. right: -120px;
  988. left: auto;
  989. }
  990. .navbar-nav > .notifications-menu > .dropdown-menu {
  991. position: absolute;
  992. right: -170px;
  993. left: auto;
  994. }
  995. .navbar-nav > .messages-menu > .dropdown-menu {
  996. position: absolute;
  997. right: -210px;
  998. left: auto;
  999. }
  1000. }
  1001. /*
  1002. All form elements including input, select, textarea etc.
  1003. -----------------------------------------------------------------
  1004. */
  1005. .form-control {
  1006. -webkit-border-radius: 0px !important;
  1007. -moz-border-radius: 0px !important;
  1008. border-radius: 0px !important;
  1009. box-shadow: none;
  1010. }
  1011. .form-control:focus {
  1012. border-color: #3c8dbc !important;
  1013. box-shadow: none;
  1014. }
  1015. .form-group.has-success label {
  1016. color: #00a65a;
  1017. }
  1018. .form-group.has-success .form-control {
  1019. border-color: #00a65a !important;
  1020. box-shadow: none;
  1021. }
  1022. .form-group.has-warning label {
  1023. color: #f39c12;
  1024. }
  1025. .form-group.has-warning .form-control {
  1026. border-color: #f39c12 !important;
  1027. box-shadow: none;
  1028. }
  1029. .form-group.has-error label {
  1030. color: #f56954;
  1031. }
  1032. .form-group.has-error .form-control {
  1033. border-color: #f56954 !important;
  1034. box-shadow: none;
  1035. }
  1036. /* Input group */
  1037. .input-group .input-group-addon {
  1038. border-radius: 0;
  1039. background-color: #f4f4f4;
  1040. }
  1041. /* button groups */
  1042. .btn-group-vertical .btn.btn-flat:first-of-type,
  1043. .btn-group-vertical .btn.btn-flat:last-of-type {
  1044. border-radius: 0;
  1045. }
  1046. /* Checkbox and radio inputs */
  1047. .checkbox,
  1048. .radio {
  1049. padding-left: 0;
  1050. }
  1051. /*
  1052. Compenent: Progress bars
  1053. --------------------------------
  1054. */
  1055. /* size variation */
  1056. .progress.sm {
  1057. height: 10px;
  1058. }
  1059. .progress.xs {
  1060. height: 7px;
  1061. }
  1062. /* Vertical bars */
  1063. .progress.vertical {
  1064. position: relative;
  1065. width: 30px;
  1066. height: 200px;
  1067. display: inline-block;
  1068. margin-right: 10px;
  1069. }
  1070. .progress.vertical > .progress-bar {
  1071. width: 100%!important;
  1072. position: absolute;
  1073. bottom: 0;
  1074. }
  1075. .progress.vertical.sm {
  1076. width: 20px;
  1077. }
  1078. .progress.vertical.xs {
  1079. width: 10px;
  1080. }
  1081. /* Remove margins from progress bars when put in a table */
  1082. .table tr > td .progress {
  1083. margin: 0;
  1084. }
  1085. .progress-bar-light-blue,
  1086. .progress-bar-primary {
  1087. background-color: #3c8dbc;
  1088. }
  1089. .progress-striped .progress-bar-light-blue,
  1090. .progress-striped .progress-bar-primary {
  1091. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  1092. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1093. background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1094. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1095. }
  1096. .progress-bar-green,
  1097. .progress-bar-success {
  1098. background-color: #00a65a;
  1099. }
  1100. .progress-striped .progress-bar-green,
  1101. .progress-striped .progress-bar-success {
  1102. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  1103. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1104. background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1105. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1106. }
  1107. .progress-bar-aqua,
  1108. .progress-bar-info {
  1109. background-color: #00c0ef;
  1110. }
  1111. .progress-striped .progress-bar-aqua,
  1112. .progress-striped .progress-bar-info {
  1113. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  1114. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1115. background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1116. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1117. }
  1118. .progress-bar-yellow,
  1119. .progress-bar-warning {
  1120. background-color: #f39c12;
  1121. }
  1122. .progress-striped .progress-bar-yellow,
  1123. .progress-striped .progress-bar-warning {
  1124. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  1125. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1126. background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1127. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1128. }
  1129. .progress-bar-red,
  1130. .progress-bar-danger {
  1131. background-color: #f56954;
  1132. }
  1133. .progress-striped .progress-bar-red,
  1134. .progress-striped .progress-bar-danger {
  1135. background-image: -webkit-gradient(linear, 0 100%, 100% 0, color-stop(0.25, rgba(255, 255, 255, 0.15)), color-stop(0.25, transparent), color-stop(0.5, transparent), color-stop(0.5, rgba(255, 255, 255, 0.15)), color-stop(0.75, rgba(255, 255, 255, 0.15)), color-stop(0.75, transparent), to(transparent));
  1136. background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1137. background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1138. background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  1139. }
  1140. /*
  1141. Component: Small boxes
  1142. */
  1143. .small-box {
  1144. position: relative;
  1145. display: block;
  1146. -webkit-border-radius: 2px;
  1147. -moz-border-radius: 2px;
  1148. border-radius: 2px;
  1149. margin-bottom: 15px;
  1150. }
  1151. .small-box > .inner {
  1152. padding: 10px;
  1153. }
  1154. .small-box > .small-box-footer {
  1155. position: relative;
  1156. text-align: center;
  1157. padding: 3px 0;
  1158. color: #fff;
  1159. color: rgba(255, 255, 255, 0.8);
  1160. display: block;
  1161. z-index: 10;
  1162. background: rgba(0, 0, 0, 0.1);
  1163. text-decoration: none;
  1164. }
  1165. .small-box > .small-box-footer:hover {
  1166. color: #fff;
  1167. background: rgba(0, 0, 0, 0.15);
  1168. }
  1169. .small-box h3 {
  1170. font-size: 38px;
  1171. font-weight: bold;
  1172. margin: 0 0 10px 0;
  1173. white-space: nowrap;
  1174. padding: 0;
  1175. }
  1176. .small-box p {
  1177. font-size: 15px;
  1178. }
  1179. .small-box p > small {
  1180. display: block;
  1181. color: #f9f9f9;
  1182. font-size: 13px;
  1183. margin-top: 5px;
  1184. }
  1185. .small-box h3,
  1186. .small-box p {
  1187. z-index: 5px;
  1188. }
  1189. .small-box .icon {
  1190. position: absolute;
  1191. top: auto;
  1192. bottom: 5px;
  1193. right: 5px;
  1194. z-index: 0;
  1195. font-size: 90px;
  1196. color: rgba(0, 0, 0, 0.15);
  1197. }
  1198. .small-box:hover {
  1199. text-decoration: none;
  1200. color: #f9f9f9;
  1201. }
  1202. .small-box:hover .icon {
  1203. animation-name: tansformAnimation;
  1204. animation-duration: .5s;
  1205. animation-iteration-count: 1;
  1206. animation-timing-function: ease;
  1207. animation-fill-mode: forwards;
  1208. -webkit-animation-name: tansformAnimation;
  1209. -webkit-animation-duration: .5s;
  1210. -webkit-animation-iteration-count: 1;
  1211. -webkit-animation-timing-function: ease;
  1212. -webkit-animation-fill-mode: forwards;
  1213. -moz-animation-name: tansformAnimation;
  1214. -moz-animation-duration: .5s;
  1215. -moz-animation-iteration-count: 1;
  1216. -moz-animation-timing-function: ease;
  1217. -moz-animation-fill-mode: forwards;
  1218. }
  1219. @keyframes tansformAnimation {
  1220. from {
  1221. font-size: 90px;
  1222. }
  1223. to {
  1224. font-size: 100px;
  1225. }
  1226. }
  1227. @-webkit-keyframes tansformAnimation {
  1228. from {
  1229. font-size: 90px;
  1230. }
  1231. to {
  1232. font-size: 100px;
  1233. }
  1234. }
  1235. @media screen and (max-width: 480px) {
  1236. .small-box {
  1237. text-align: center;
  1238. }
  1239. .small-box .icon {
  1240. display: none;
  1241. }
  1242. .small-box p {
  1243. font-size: 12px;
  1244. }
  1245. }
  1246. /*
  1247. component: Boxes
  1248. -------------------------
  1249. */
  1250. .box {
  1251. position: relative;
  1252. background: #ffffff;
  1253. border-top: 2px solid #c1c1c1;
  1254. margin-bottom: 20px;
  1255. -webkit-border-radius: 3px;
  1256. -moz-border-radius: 3px;
  1257. border-radius: 3px;
  1258. width: 100%;
  1259. box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
  1260. }
  1261. .box.box-primary {
  1262. border-top-color: #3c8dbc;
  1263. }
  1264. .box.box-info {
  1265. border-top-color: #00c0ef;
  1266. }
  1267. .box.box-danger {
  1268. border-top-color: #f56954;
  1269. }
  1270. .box.box-warning {
  1271. border-top-color: #f39c12;
  1272. }
  1273. .box.box-success {
  1274. border-top-color: #00a65a;
  1275. }
  1276. .box.height-control .box-body {
  1277. max-height: 300px;
  1278. overflow: auto;
  1279. }
  1280. .box .box-header {
  1281. position: relative;
  1282. -webkit-border-top-left-radius: 3px;
  1283. -webkit-border-top-right-radius: 3px;
  1284. -webkit-border-bottom-right-radius: 0;
  1285. -webkit-border-bottom-left-radius: 0;
  1286. -moz-border-radius-topleft: 3px;
  1287. -moz-border-radius-topright: 3px;
  1288. -moz-border-radius-bottomright: 0;
  1289. -moz-border-radius-bottomleft: 0;
  1290. border-top-left-radius: 3px;
  1291. border-top-right-radius: 3px;
  1292. border-bottom-right-radius: 0;
  1293. border-bottom-left-radius: 0;
  1294. border-bottom: 0px solid #f4f4f4;
  1295. color: #444;
  1296. padding-bottom: 10px;
  1297. }
  1298. .box .box-header:before,
  1299. .box .box-header:after {
  1300. display: table;
  1301. content: " ";
  1302. }
  1303. .box .box-header:after {
  1304. clear: both;
  1305. }
  1306. .box .box-header > .fa,
  1307. .box .box-header > .glyphicon,
  1308. .box .box-header > .ion,
  1309. .box .box-header .box-title {
  1310. display: inline-block;
  1311. padding: 10px 0px 10px 10px;
  1312. margin: 0;
  1313. font-size: 20px;
  1314. font-weight: 400;
  1315. float: left;
  1316. cursor: default;
  1317. }
  1318. .box .box-header a:not(.btn) {
  1319. color: #444;
  1320. }
  1321. .box .box-header > .box-tools {
  1322. padding: 5px 10px 5px 5px;
  1323. }
  1324. .box .box-body {
  1325. padding: 10px;
  1326. -webkit-border-top-left-radius: 0;
  1327. -webkit-border-top-right-radius: 0;
  1328. -webkit-border-bottom-right-radius: 3px;
  1329. -webkit-border-bottom-left-radius: 3px;
  1330. -moz-border-radius-topleft: 0;
  1331. -moz-border-radius-topright: 0;
  1332. -moz-border-radius-bottomright: 3px;
  1333. -moz-border-radius-bottomleft: 3px;
  1334. border-top-left-radius: 0;
  1335. border-top-right-radius: 0;
  1336. border-bottom-right-radius: 3px;
  1337. border-bottom-left-radius: 3px;
  1338. }
  1339. .box .box-body > table,
  1340. .box .box-body > .table {
  1341. margin-bottom: 0;
  1342. }
  1343. .box .box-body.chart-responsive {
  1344. width: 100%;
  1345. overflow: hidden;
  1346. }
  1347. .box .box-body > .chart {
  1348. position: relative;
  1349. overflow: hidden;
  1350. width: 100%;
  1351. }
  1352. .box .box-body > .chart svg,
  1353. .box .box-body > .chart canvas {
  1354. width: 100%!important;
  1355. }
  1356. .box .box-body .fc {
  1357. margin-top: 5px;
  1358. }
  1359. .box .box-body .fc-header-title h2 {
  1360. font-size: 15px;
  1361. line-height: 1.6em;
  1362. color: #666;
  1363. margin-left: 10px;
  1364. }
  1365. .box .box-body .fc-header-right {
  1366. padding-right: 10px;
  1367. }
  1368. .box .box-body .fc-header-left {
  1369. padding-left: 10px;
  1370. }
  1371. .box .box-body .fc-widget-header {
  1372. background: #fafafa;
  1373. box-shadow: inset 0px -3px 1px rgba(0, 0, 0, 0.02);
  1374. }
  1375. .box .box-body .fc-grid {
  1376. width: 100%;
  1377. border: 0;
  1378. }
  1379. .box .box-body .fc-widget-header:first-of-type,
  1380. .box .box-body .fc-widget-content:first-of-type {
  1381. border-left: 0;
  1382. border-right: 0;
  1383. }
  1384. .box .box-body .fc-widget-header:last-of-type,
  1385. .box .box-body .fc-widget-content:last-of-type {
  1386. border-right: 0;
  1387. }
  1388. .box .box-body .table {
  1389. margin-bottom: 0;
  1390. }
  1391. .box .box-body .full-width-chart {
  1392. margin: -19px;
  1393. }
  1394. .box .box-body.no-padding .full-width-chart {
  1395. margin: -9px;
  1396. }
  1397. .box .box-footer {
  1398. border-top: 1px solid #f4f4f4;
  1399. -webkit-border-top-left-radius: 0;
  1400. -webkit-border-top-right-radius: 0;
  1401. -webkit-border-bottom-right-radius: 3px;
  1402. -webkit-border-bottom-left-radius: 3px;
  1403. -moz-border-radius-topleft: 0;
  1404. -moz-border-radius-topright: 0;
  1405. -moz-border-radius-bottomright: 3px;
  1406. -moz-border-radius-bottomleft: 3px;
  1407. border-top-left-radius: 0;
  1408. border-top-right-radius: 0;
  1409. border-bottom-right-radius: 3px;
  1410. border-bottom-left-radius: 3px;
  1411. padding: 10px;
  1412. background-color: #ffffff;
  1413. }
  1414. .box.box-solid {
  1415. border-top: 0px;
  1416. }
  1417. .box.box-solid > .box-header {
  1418. padding-bottom: 0px!important;
  1419. }
  1420. .box.box-solid > .box-header .btn.btn-default {
  1421. background: transparent;
  1422. }
  1423. .box.box-solid.box-primary > .box-header {
  1424. color: #fff;
  1425. background: #3c8dbc;
  1426. background-color: #3c8dbc;
  1427. }
  1428. .box.box-solid.box-primary > .box-header a {
  1429. color: #444;
  1430. }
  1431. .box.box-solid.box-info > .box-header {
  1432. color: #fff;
  1433. background: #00c0ef;
  1434. background-color: #00c0ef;
  1435. }
  1436. .box.box-solid.box-info > .box-header a {
  1437. color: #444;
  1438. }
  1439. .box.box-solid.box-danger > .box-header {
  1440. color: #fff;
  1441. background: #f56954;
  1442. background-color: #f56954;
  1443. }
  1444. .box.box-solid.box-danger > .box-header a {
  1445. color: #444;
  1446. }
  1447. .box.box-solid.box-warning > .box-header {
  1448. color: #fff;
  1449. background: #f39c12;
  1450. background-color: #f39c12;
  1451. }
  1452. .box.box-solid.box-warning > .box-header a {
  1453. color: #444;
  1454. }
  1455. .box.box-solid.box-success > .box-header {
  1456. color: #fff;
  1457. background: #00a65a;
  1458. background-color: #00a65a;
  1459. }
  1460. .box.box-solid.box-success > .box-header a {
  1461. color: #444;
  1462. }
  1463. .box.box-solid > .box-header > .box-tools > .btn {
  1464. border: 0;
  1465. box-shadow: none;
  1466. }
  1467. .box.box-solid.collapsed-box .box-header {
  1468. -webkit-border-radius: 3px;
  1469. -moz-border-radius: 3px;
  1470. border-radius: 3px;
  1471. }
  1472. .box.box-solid[class*='bg'] > .box-header {
  1473. color: #fff;
  1474. }
  1475. .box .box-group > .box {
  1476. margin-bottom: 5px;
  1477. }
  1478. .box .knob-label {
  1479. text-align: center;
  1480. color: #333;
  1481. font-weight: 100;
  1482. font-size: 12px;
  1483. margin-bottom: 0.3em;
  1484. }
  1485. .box .todo-list {
  1486. margin: 0;
  1487. padding: 0px 0px;
  1488. list-style: none;
  1489. }
  1490. .box .todo-list > li {
  1491. -webkit-border-radius: 2px;
  1492. -moz-border-radius: 2px;
  1493. border-radius: 2px;
  1494. padding: 10px;
  1495. background: #f3f4f5;
  1496. margin-bottom: 2px;
  1497. border-left: 2px solid #e6e7e8;
  1498. color: #444;
  1499. }
  1500. .box .todo-list > li:last-of-type {
  1501. margin-bottom: 0;
  1502. }
  1503. .box .todo-list > li.danger {
  1504. border-left-color: #f56954;
  1505. }
  1506. .box .todo-list > li.warning {
  1507. border-left-color: #f39c12;
  1508. }
  1509. .box .todo-list > li.info {
  1510. border-left-color: #00c0ef;
  1511. }
  1512. .box .todo-list > li.success {
  1513. border-left-color: #00a65a;
  1514. }
  1515. .box .todo-list > li.primary {
  1516. border-left-color: #3c8dbc;
  1517. }
  1518. .box .todo-list > li > input[type='checkbox'] {
  1519. margin: 0 10px 0 5px;
  1520. }
  1521. .box .todo-list > li .text {
  1522. display: inline-block;
  1523. margin-left: 5px;
  1524. font-weight: 600;
  1525. }
  1526. .box .todo-list > li .label {
  1527. margin-left: 10px;
  1528. font-size: 9px;
  1529. }
  1530. .box .todo-list > li .tools {
  1531. display: none;
  1532. float: right;
  1533. color: #f56954;
  1534. }
  1535. .box .todo-list > li .tools > .fa,
  1536. .box .todo-list > li .tools > .glyphicon,
  1537. .box .todo-list > li .tools > .ion {
  1538. margin-right: 5px;
  1539. cursor: pointer;
  1540. }
  1541. .box .todo-list > li:hover .tools {
  1542. display: inline-block;
  1543. }
  1544. .box .todo-list > li.done {
  1545. color: #999;
  1546. }
  1547. .box .todo-list > li.done .text {
  1548. text-decoration: line-through;
  1549. font-weight: 500;
  1550. }
  1551. .box .todo-list > li.done .label {
  1552. background: #eaeaec !important;
  1553. }
  1554. .box .todo-list .handle {
  1555. display: inline-block;
  1556. cursor: move;
  1557. margin: 0 5px;
  1558. }
  1559. .box .chat {
  1560. padding: 5px 20px 5px 10px;
  1561. }
  1562. .box .chat .item {
  1563. margin-bottom: 10px;
  1564. }
  1565. .box .chat .item:before,
  1566. .box .chat .item:after {
  1567. display: table;
  1568. content: " ";
  1569. }
  1570. .box .chat .item:after {
  1571. clear: both;
  1572. }
  1573. .box .chat .item > img {
  1574. width: 40px;
  1575. height: 40px;
  1576. border: 2px solid transparent;
  1577. -webkit-border-radius: 50% !important;
  1578. -moz-border-radius: 50% !important;
  1579. border-radius: 50% !important;
  1580. }
  1581. .box .chat .item > img.online {
  1582. border: 2px solid #00a65a;
  1583. }
  1584. .box .chat .item > img.offline {
  1585. border: 2px solid #f56954;
  1586. }
  1587. .box .chat .item > .message {
  1588. margin-left: 55px;
  1589. margin-top: -40px;
  1590. }
  1591. .box .chat .item > .message > .name {
  1592. display: block;
  1593. font-weight: 600;
  1594. }
  1595. .box .chat .item > .attachment {
  1596. -webkit-border-radius: 3px;
  1597. -moz-border-radius: 3px;
  1598. border-radius: 3px;
  1599. background: #f0f0f0;
  1600. margin-left: 65px;
  1601. margin-right: 15px;
  1602. padding: 10px;
  1603. }
  1604. .box .chat .item > .attachment > h4 {
  1605. margin: 0 0 5px 0;
  1606. font-weight: 600;
  1607. font-size: 14px;
  1608. }
  1609. .box .chat .item > .attachment > p,
  1610. .box .chat .item > .attachment > .filename {
  1611. font-weight: 600;
  1612. font-size: 13px;
  1613. font-style: italic;
  1614. margin: 0;
  1615. }
  1616. .box .chat .item > .attachment:before,
  1617. .box .chat .item > .attachment:after {
  1618. display: table;
  1619. content: " ";
  1620. }
  1621. .box .chat .item > .attachment:after {
  1622. clear: both;
  1623. }
  1624. .box > .overlay,
  1625. .box > .loading-img {
  1626. position: absolute;
  1627. top: 0;
  1628. left: 0;
  1629. width: 100%;
  1630. height: 100%;
  1631. }
  1632. .box > .overlay {
  1633. z-index: 1010;
  1634. background: rgba(255, 255, 255, 0.7);
  1635. }
  1636. .box > .overlay.dark {
  1637. background: rgba(0, 0, 0, 0.5);
  1638. }
  1639. .box > .loading-img {
  1640. z-index: 1020;
  1641. background: transparent url('../img/ajax-loader1.gif') 50% 50% no-repeat;
  1642. }
  1643. /*
  1644. Component: timeline
  1645. --------------------
  1646. */
  1647. .timeline {
  1648. margin: 0 0 30px 0;
  1649. padding: 0;
  1650. list-style: none;
  1651. }
  1652. .timeline:before {
  1653. content: '';
  1654. position: absolute;
  1655. top: 0px;
  1656. bottom: 0;
  1657. width: 5px;
  1658. background: #ddd;
  1659. left: 45px;
  1660. border: 1px solid #eee;
  1661. margin: 0;
  1662. -webkit-border-radius: 2px;
  1663. -moz-border-radius: 2px;
  1664. border-radius: 2px;
  1665. }
  1666. .timeline > li {
  1667. position: relative;
  1668. margin-right: 10px;
  1669. margin-bottom: 15px;
  1670. }
  1671. .timeline > li:before,
  1672. .timeline > li:after {
  1673. display: table;
  1674. content: " ";
  1675. }
  1676. .timeline > li:after {
  1677. clear: both;
  1678. }
  1679. .timeline > li > .timeline-item {
  1680. margin-top: 10px;
  1681. border: 0px solid #dfdfdf;
  1682. background: #fff;
  1683. color: #555;
  1684. margin-left: 60px;
  1685. margin-right: 15px;
  1686. padding: 5px;
  1687. position: relative;
  1688. box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
  1689. }
  1690. .timeline > li > .timeline-item > .time {
  1691. color: #999;
  1692. float: right;
  1693. margin: 2px 0 0 0;
  1694. }
  1695. .timeline > li > .timeline-item > .timeline-header {
  1696. margin: 0;
  1697. color: #555;
  1698. border-bottom: 1px solid #f4f4f4;
  1699. padding: 5px;
  1700. font-size: 16px;
  1701. line-height: 1.1;
  1702. }
  1703. .timeline > li > .timeline-item > .timeline-header > a {
  1704. font-weight: 600;
  1705. }
  1706. .timeline > li > .timeline-item > .timeline-body,
  1707. .timeline > li > .timeline-item > .timeline-footer {
  1708. padding: 10px;
  1709. }
  1710. .timeline > li.time-label > span {
  1711. font-weight: 600;
  1712. padding: 5px;
  1713. display: inline-block;
  1714. background-color: #fff;
  1715. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  1716. -webkit-border-radius: 4px;
  1717. -moz-border-radius: 4px;
  1718. border-radius: 4px;
  1719. }
  1720. .timeline > li > .fa,
  1721. .timeline > li > .glyphicon,
  1722. .timeline > li > .ion {
  1723. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  1724. width: 30px;
  1725. height: 30px;
  1726. font-size: 15px;
  1727. line-height: 30px;
  1728. position: absolute;
  1729. color: #666;
  1730. background: #eee;
  1731. border-radius: 50%;
  1732. text-align: center;
  1733. left: 18px;
  1734. top: 0;
  1735. }
  1736. /*
  1737. Component: Buttons
  1738. -------------------------
  1739. */
  1740. .btn {
  1741. font-weight: 500;
  1742. -webkit-border-radius: 3px;
  1743. -moz-border-radius: 3px;
  1744. border-radius: 3px;
  1745. border: 1px solid transparent;
  1746. -webkit-box-shadow: inset 0px -2px 0px 0px rgba(0, 0, 0, 0.09);
  1747. -moz-box-shadow: inset 0px -2px 0px 0px rgba(0, 0, 0, 0.09);
  1748. box-shadow: inset 0px -1px 0px 0px rgba(0, 0, 0, 0.09);
  1749. }
  1750. .btn.btn-default {
  1751. background-color: #fafafa;
  1752. color: #666;
  1753. border-color: #ddd;
  1754. border-bottom-color: #ddd;
  1755. }
  1756. .btn.btn-default:hover,
  1757. .btn.btn-default:active,
  1758. .btn.btn-default.hover {
  1759. background-color: #f4f4f4!important;
  1760. }
  1761. .btn.btn-default.btn-flat {
  1762. border-bottom-color: #d9dadc;
  1763. }
  1764. .btn.btn-primary {
  1765. background-color: #3c8dbc;
  1766. border-color: #367fa9;
  1767. }
  1768. .btn.btn-primary:hover,
  1769. .btn.btn-primary:active,
  1770. .btn.btn-primary.hover {
  1771. background-color: #367fa9;
  1772. }
  1773. .btn.btn-success {
  1774. background-color: #00a65a;
  1775. border-color: #008d4c;
  1776. }
  1777. .btn.btn-success:hover,
  1778. .btn.btn-success:active,
  1779. .btn.btn-success.hover {
  1780. background-color: #008d4c;
  1781. }
  1782. .btn.btn-info {
  1783. background-color: #00c0ef;
  1784. border-color: #00acd6;
  1785. }
  1786. .btn.btn-info:hover,
  1787. .btn.btn-info:active,
  1788. .btn.btn-info.hover {
  1789. background-color: #00acd6;
  1790. }
  1791. .btn.btn-danger {
  1792. background-color: #f56954;
  1793. border-color: #f4543c;
  1794. }
  1795. .btn.btn-danger:hover,
  1796. .btn.btn-danger:active,
  1797. .btn.btn-danger.hover {
  1798. background-color: #f4543c;
  1799. }
  1800. .btn.btn-warning {
  1801. background-color: #f39c12;
  1802. border-color: #e08e0b;
  1803. }
  1804. .btn.btn-warning:hover,
  1805. .btn.btn-warning:active,
  1806. .btn.btn-warning.hover {
  1807. background-color: #e08e0b;
  1808. }
  1809. .btn.btn-flat {
  1810. -webkit-border-radius: 0;
  1811. -moz-border-radius: 0;
  1812. border-radius: 0;
  1813. -webkit-box-shadow: none;
  1814. -moz-box-shadow: none;
  1815. box-shadow: none;
  1816. border-width: 1px;
  1817. }
  1818. .btn:active {
  1819. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  1820. -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  1821. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  1822. }
  1823. .btn:focus {
  1824. outline: none;
  1825. }
  1826. .btn.btn-file {
  1827. position: relative;
  1828. width: 120px;
  1829. height: 35px;
  1830. overflow: hidden;
  1831. }
  1832. .btn.btn-file > input[type='file'] {
  1833. display: block !important;
  1834. width: 100% !important;
  1835. height: 35px !important;
  1836. opacity: 0 !important;
  1837. position: absolute;
  1838. top: -10px;
  1839. cursor: pointer;
  1840. }
  1841. .btn.btn-app {
  1842. position: relative;
  1843. padding: 15px 5px;
  1844. margin: 0 0 10px 10px;
  1845. min-width: 80px;
  1846. height: 60px;
  1847. -webkit-box-shadow: none;
  1848. -moz-box-shadow: none;
  1849. box-shadow: none;
  1850. -webkit-border-radius: 0;
  1851. -moz-border-radius: 0;
  1852. border-radius: 0;
  1853. text-align: center;
  1854. color: #666;
  1855. border: 1px solid #ddd;
  1856. background-color: #fafafa;
  1857. font-size: 12px;
  1858. }
  1859. .btn.btn-app > .fa,
  1860. .btn.btn-app > .glyphicon,
  1861. .btn.btn-app > .ion {
  1862. font-size: 20px;
  1863. display: block;
  1864. }
  1865. .btn.btn-app:hover {
  1866. background: #f4f4f4;
  1867. color: #444;
  1868. border-color: #aaa;
  1869. }
  1870. .btn.btn-app:active,
  1871. .btn.btn-app:focus {
  1872. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  1873. -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  1874. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  1875. }
  1876. .btn.btn-app > .badge {
  1877. position: absolute;
  1878. top: -3px;
  1879. right: -10px;
  1880. font-size: 10px;
  1881. font-weight: 400;
  1882. }
  1883. .btn.btn-social-old {
  1884. -webkit-box-shadow: none;
  1885. -moz-box-shadow: none;
  1886. box-shadow: none;
  1887. opacity: 0.9;
  1888. padding: 0;
  1889. }
  1890. .btn.btn-social-old > .fa {
  1891. padding: 10px 0;
  1892. width: 40px;
  1893. }
  1894. .btn.btn-social-old > .fa + span {
  1895. border-left: 1px solid rgba(255, 255, 255, 0.3);
  1896. }
  1897. .btn.btn-social-old span {
  1898. padding: 10px;
  1899. }
  1900. .btn.btn-social-old:hover {
  1901. opacity: 1;
  1902. }
  1903. .btn.btn-circle {
  1904. width: 30px;
  1905. height: 30px;
  1906. line-height: 30px;
  1907. padding: 0;
  1908. -webkit-border-radius: 50%;
  1909. -moz-border-radius: 50%;
  1910. border-radius: 50%;
  1911. }
  1912. /*
  1913. Component: callout
  1914. ------------------------
  1915. */
  1916. .callout {
  1917. margin: 0 0 20px 0;
  1918. padding: 15px 30px 15px 15px;
  1919. border-left: 5px solid #eee;
  1920. }
  1921. .callout h4 {
  1922. margin-top: 0;
  1923. }
  1924. .callout p:last-child {
  1925. margin-bottom: 0;
  1926. }
  1927. .callout code,
  1928. .callout .highlight {
  1929. background-color: #fff;
  1930. }
  1931. .callout.callout-danger {
  1932. background-color: #fcf2f2;
  1933. border-color: #dFb5b4;
  1934. }
  1935. .callout.callout-warning {
  1936. background-color: #fefbed;
  1937. border-color: #f1e7bc;
  1938. }
  1939. .callout.callout-info {
  1940. background-color: #f0f7fd;
  1941. border-color: #d0e3f0;
  1942. }
  1943. .callout.callout-danger h4 {
  1944. color: #B94A48;
  1945. }
  1946. .callout.callout-warning h4 {
  1947. color: #C09853;
  1948. }
  1949. .callout.callout-info h4 {
  1950. color: #3A87AD;
  1951. }
  1952. /*
  1953. Component: alert
  1954. ------------------------
  1955. */
  1956. .alert {
  1957. padding-left: 30px;
  1958. margin-left: 15px;
  1959. position: relative;
  1960. }
  1961. .alert > .fa,
  1962. .alert > .glyphicon {
  1963. position: absolute;
  1964. left: -15px;
  1965. top: -15px;
  1966. width: 35px;
  1967. height: 35px;
  1968. -webkit-border-radius: 50%;
  1969. -moz-border-radius: 50%;
  1970. border-radius: 50%;
  1971. line-height: 35px;
  1972. text-align: center;
  1973. background: inherit;
  1974. border: inherit;
  1975. }
  1976. /*
  1977. Component: Navs
  1978. */
  1979. /* NAV PILLS */
  1980. .nav.nav-pills > li > a {
  1981. border-top: 3px solid transparent;
  1982. -webkit-border-radius: 0;
  1983. -moz-border-radius: 0;
  1984. border-radius: 0;
  1985. color: #444;
  1986. }
  1987. .nav.nav-pills > li > a > .fa,
  1988. .nav.nav-pills > li > a > .glyphicon,
  1989. .nav.nav-pills > li > a > .ion {
  1990. margin-right: 5px;
  1991. }
  1992. .nav.nav-pills > li.active > a,
  1993. .nav.nav-pills > li.active > a:hover {
  1994. background-color: #f6f6f6;
  1995. border-top-color: #3c8dbc;
  1996. color: #444;
  1997. }
  1998. .nav.nav-pills > li.active > a {
  1999. font-weight: 600;
  2000. }
  2001. .nav.nav-pills > li > a:hover {
  2002. background-color: #f6f6f6;
  2003. }
  2004. .nav.nav-pills.nav-stacked > li > a {
  2005. border-top: 0;
  2006. border-left: 3px solid transparent;
  2007. -webkit-border-radius: 0;
  2008. -moz-border-radius: 0;
  2009. border-radius: 0;
  2010. color: #444;
  2011. }
  2012. .nav.nav-pills.nav-stacked > li.active > a,
  2013. .nav.nav-pills.nav-stacked > li.active > a:hover {
  2014. background-color: #f6f6f6;
  2015. border-left-color: #3c8dbc;
  2016. color: #444;
  2017. }
  2018. .nav.nav-pills.nav-stacked > li.header {
  2019. border-bottom: 1px solid #ddd;
  2020. color: #777;
  2021. margin-bottom: 10px;
  2022. padding: 5px 10px;
  2023. text-transform: uppercase;
  2024. }
  2025. /* NAV TABS */
  2026. .nav-tabs-custom {
  2027. margin-bottom: 20px;
  2028. background: #fff;
  2029. box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
  2030. }
  2031. .nav-tabs-custom > .nav-tabs {
  2032. margin: 0;
  2033. border-bottom-color: #f4f4f4;
  2034. }
  2035. .nav-tabs-custom > .nav-tabs > li {
  2036. border-top: 3px solid transparent;
  2037. margin-bottom: -2px;
  2038. margin-right: 5px;
  2039. }
  2040. .nav-tabs-custom > .nav-tabs > li > a {
  2041. -webkit-border-radius: 0 !important;
  2042. -moz-border-radius: 0 !important;
  2043. border-radius: 0 !important;
  2044. }
  2045. .nav-tabs-custom > .nav-tabs > li > a,
  2046. .nav-tabs-custom > .nav-tabs > li > a:hover {
  2047. background: transparent;
  2048. margin: 0;
  2049. }
  2050. .nav-tabs-custom > .nav-tabs > li:not(.active) > a:hover,
  2051. .nav-tabs-custom > .nav-tabs > li:not(.active) > a:focus,
  2052. .nav-tabs-custom > .nav-tabs > li:not(.active) > a:active {
  2053. border-color: transparent;
  2054. }
  2055. .nav-tabs-custom > .nav-tabs > li.active {
  2056. border-top-color: #3c8dbc;
  2057. }
  2058. .nav-tabs-custom > .nav-tabs > li.active > a,
  2059. .nav-tabs-custom > .nav-tabs > li.active:hover > a {
  2060. background-color: #fff;
  2061. }
  2062. .nav-tabs-custom > .nav-tabs > li.active > a {
  2063. border-top: 0;
  2064. border-left-color: #f4f4f4;
  2065. border-right-color: #f4f4f4;
  2066. }
  2067. .nav-tabs-custom > .nav-tabs > li:first-of-type {
  2068. margin-left: 0px;
  2069. }
  2070. .nav-tabs-custom > .nav-tabs > li:first-of-type.active > a {
  2071. border-left-width: 0;
  2072. }
  2073. .nav-tabs-custom > .nav-tabs.pull-right {
  2074. float: none!important;
  2075. }
  2076. .nav-tabs-custom > .nav-tabs.pull-right > li {
  2077. float: right;
  2078. }
  2079. .nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type {
  2080. margin-right: 0px;
  2081. }
  2082. .nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type.active > a {
  2083. border-left-width: 1px;
  2084. border-right-width: 0px;
  2085. }
  2086. .nav-tabs-custom > .nav-tabs > li.header {
  2087. font-weight: 400;
  2088. line-height: 35px;
  2089. padding: 0 10px;
  2090. font-size: 20px;
  2091. color: #444;
  2092. cursor: default;
  2093. }
  2094. .nav-tabs-custom > .nav-tabs > li.header > .fa,
  2095. .nav-tabs-custom > .nav-tabs > li.header > .glyphicon,
  2096. .nav-tabs-custom > .nav-tabs > li.header > .ion {
  2097. margin-right: 10px;
  2098. }
  2099. .nav-tabs-custom > .tab-content {
  2100. background: #fff;
  2101. padding: 10px;
  2102. }
  2103. /* PAGINATION */
  2104. .pagination > li > a {
  2105. background: #fafafa;
  2106. color: #666;
  2107. -webkit-box-shadow: inset 0px -2px 0px 0px rgba(0, 0, 0, 0.09);
  2108. -moz-box-shadow: inset 0px -2px 0px 0px rgba(0, 0, 0, 0.09);
  2109. box-shadow: inset 0px -1px 0px 0px rgba(0, 0, 0, 0.09);
  2110. }
  2111. .pagination > li:first-of-type a,
  2112. .pagination > li:last-of-type a {
  2113. -webkit-border-radius: 0;
  2114. -moz-border-radius: 0;
  2115. border-radius: 0;
  2116. }
  2117. /*
  2118. Component: Mailbox
  2119. */
  2120. .mailbox .table-mailbox {
  2121. border-left: 1px solid #ddd;
  2122. border-right: 1px solid #ddd;
  2123. border-bottom: 1px solid #ddd;
  2124. }
  2125. .mailbox .table-mailbox tr.unread > td {
  2126. background-color: rgba(0, 0, 0, 0.05);
  2127. color: #000;
  2128. font-weight: 600;
  2129. }
  2130. .mailbox .table-mailbox tr > td > .fa.fa-star,
  2131. .mailbox .table-mailbox tr > td > .fa.fa-star-o,
  2132. .mailbox .table-mailbox tr > td > .glyphicon.glyphicon-star,
  2133. .mailbox .table-mailbox tr > td > .glyphicon.glyphicon-star-empty {
  2134. color: #f39c12;
  2135. cursor: pointer;
  2136. }
  2137. .mailbox .table-mailbox tr > td.small-col {
  2138. width: 30px;
  2139. }
  2140. .mailbox .table-mailbox tr > td.name {
  2141. width: 150px;
  2142. font-weight: 600;
  2143. }
  2144. .mailbox .table-mailbox tr > td.time {
  2145. text-align: right;
  2146. width: 100px;
  2147. }
  2148. .mailbox .table-mailbox tr > td {
  2149. white-space: nowrap;
  2150. }
  2151. .mailbox .table-mailbox tr > td > a {
  2152. color: #444;
  2153. }
  2154. @media screen and (max-width: 767px) {
  2155. .mailbox .nav-stacked > li:not(.header) {
  2156. float: left;
  2157. width: 50%;
  2158. }
  2159. .mailbox .nav-stacked > li:not(.header).header {
  2160. border: 0!important;
  2161. }
  2162. .mailbox .search-form {
  2163. margin-top: 10px;
  2164. }
  2165. }
  2166. /*
  2167. Page: locked screen
  2168. */
  2169. /* ADD THIS CLASS TO THE <HTML> TAG */
  2170. .lockscreen {
  2171. background: url(../img/blur-background09.jpg) repeat center center fixed;
  2172. -webkit-background-size: cover;
  2173. -moz-background-size: cover;
  2174. -o-background-size: cover;
  2175. background-size: cover;
  2176. }
  2177. /* Remove the background from the body element */
  2178. .lockscreen > body {
  2179. background: transparent;
  2180. }
  2181. /* We will put the dynamically generated digital clock here */
  2182. .lockscreen .headline {
  2183. color: #fff;
  2184. text-shadow: 1px 3px 5px rgba(0, 0, 0, 0.5);
  2185. font-weight: 300;
  2186. -webkit-font-smoothing: antialiased !important;
  2187. opacity: 0.8;
  2188. margin: 10px 0 30px 0;
  2189. font-size: 90px;
  2190. }
  2191. @media screen and (max-width: 480px) {
  2192. .lockscreen .headline {
  2193. font-size: 60px;
  2194. margin-bottom: 40px;
  2195. }
  2196. }
  2197. /* User name [optional] */
  2198. .lockscreen .lockscreen-name {
  2199. text-align: center;
  2200. font-weight: 600;
  2201. font-size: 16px;
  2202. }
  2203. /* Will contain the image and the sign in form */
  2204. .lockscreen-item {
  2205. padding: 0;
  2206. background: #fff;
  2207. position: relative;
  2208. -webkit-border-radius: 4px;
  2209. -moz-border-radius: 4px;
  2210. border-radius: 4px;
  2211. margin: 10px auto;
  2212. width: 290px;
  2213. }
  2214. .lockscreen-item:before,
  2215. .lockscreen-item:after {
  2216. display: table;
  2217. content: " ";
  2218. }
  2219. .lockscreen-item:after {
  2220. clear: both;
  2221. }
  2222. /* User image */
  2223. .lockscreen-item > .lockscreen-image {
  2224. position: absolute;
  2225. left: -10px;
  2226. top: -30px;
  2227. background: #fff;
  2228. padding: 10px;
  2229. -webkit-border-radius: 50%;
  2230. -moz-border-radius: 50%;
  2231. border-radius: 50%;
  2232. z-index: 10;
  2233. }
  2234. .lockscreen-item > .lockscreen-image > img {
  2235. width: 70px;
  2236. height: 70px;
  2237. -webkit-border-radius: 50%;
  2238. -moz-border-radius: 50%;
  2239. border-radius: 50%;
  2240. }
  2241. /* Contains the password input and the login button */
  2242. .lockscreen-item > .lockscreen-credentials {
  2243. margin-left: 80px;
  2244. }
  2245. .lockscreen-item > .lockscreen-credentials input {
  2246. border: 0 !important;
  2247. }
  2248. .lockscreen-item > .lockscreen-credentials .btn {
  2249. background-color: #fff;
  2250. border: 0;
  2251. }
  2252. /* Extra to give the user an option to navigate the website [optional]*/
  2253. .lockscreen-link {
  2254. margin-top: 30px;
  2255. text-align: center;
  2256. }
  2257. /*
  2258. Page: register and login
  2259. */
  2260. .form-box {
  2261. width: 360px;
  2262. margin: 90px auto 0 auto;
  2263. }
  2264. .form-box .header {
  2265. -webkit-border-top-left-radius: 4px;
  2266. -webkit-border-top-right-radius: 4px;
  2267. -webkit-border-bottom-right-radius: 0;
  2268. -webkit-border-bottom-left-radius: 0;
  2269. -moz-border-radius-topleft: 4px;
  2270. -moz-border-radius-topright: 4px;
  2271. -moz-border-radius-bottomright: 0;
  2272. -moz-border-radius-bottomleft: 0;
  2273. border-top-left-radius: 4px;
  2274. border-top-right-radius: 4px;
  2275. border-bottom-right-radius: 0;
  2276. border-bottom-left-radius: 0;
  2277. background: #3d9970;
  2278. box-shadow: inset 0px -3px 0px rgba(0, 0, 0, 0.2);
  2279. padding: 20px 10px;
  2280. text-align: center;
  2281. font-size: 26px;
  2282. font-weight: 300;
  2283. color: #fff;
  2284. }
  2285. .form-box .body,
  2286. .form-box .footer {
  2287. padding: 10px 20px;
  2288. background: #fff;
  2289. color: #444;
  2290. }
  2291. .form-box .body > .form-group,
  2292. .form-box .footer > .form-group {
  2293. margin-top: 20px;
  2294. }
  2295. .form-box .body > .form-group > input,
  2296. .form-box .footer > .form-group > input {
  2297. border: #fff;
  2298. }
  2299. .form-box .body > .btn,
  2300. .form-box .footer > .btn {
  2301. margin-bottom: 10px;
  2302. }
  2303. .form-box .footer {
  2304. -webkit-border-top-left-radius: 0;
  2305. -webkit-border-top-right-radius: 0;
  2306. -webkit-border-bottom-right-radius: 4px;
  2307. -webkit-border-bottom-left-radius: 4px;
  2308. -moz-border-radius-topleft: 0;
  2309. -moz-border-radius-topright: 0;
  2310. -moz-border-radius-bottomright: 4px;
  2311. -moz-border-radius-bottomleft: 4px;
  2312. border-top-left-radius: 0;
  2313. border-top-right-radius: 0;
  2314. border-bottom-right-radius: 4px;
  2315. border-bottom-left-radius: 4px;
  2316. }
  2317. @media (max-width: 767px) {
  2318. .form-box {
  2319. width: 90%;
  2320. }
  2321. }
  2322. /*
  2323. Page: 404 and 500 error pages
  2324. ------------------------------------
  2325. */
  2326. .error-page {
  2327. width: 600px;
  2328. margin: 20px auto 0 auto;
  2329. }
  2330. @media screen and (max-width: 767px) {
  2331. .error-page {
  2332. width: 100%;
  2333. }
  2334. }
  2335. .error-page > .headline {
  2336. float: left;
  2337. font-size: 100px;
  2338. font-weight: 300;
  2339. }
  2340. @media screen and (max-width: 767px) {
  2341. .error-page > .headline {
  2342. float: none;
  2343. text-align: center;
  2344. }
  2345. }
  2346. .error-page > .error-content {
  2347. margin-left: 190px;
  2348. display: block;
  2349. }
  2350. @media screen and (max-width: 767px) {
  2351. .error-page > .error-content {
  2352. margin-left: 0;
  2353. }
  2354. }
  2355. .error-page > .error-content > h3 {
  2356. font-weight: 300;
  2357. font-size: 25px;
  2358. }
  2359. @media screen and (max-width: 767px) {
  2360. .error-page > .error-content > h3 {
  2361. text-align: center;
  2362. }
  2363. }
  2364. .error-page:before,
  2365. .error-page:after {
  2366. display: table;
  2367. content: " ";
  2368. }
  2369. .error-page:after {
  2370. clear: both;
  2371. }
  2372. /*
  2373. Page: Invoice
  2374. */
  2375. .invoice {
  2376. position: relative;
  2377. width: 90%;
  2378. margin: 10px auto;
  2379. background: #fff;
  2380. border: 1px solid #f4f4f4;
  2381. }
  2382. .invoice-title {
  2383. margin-top: 0;
  2384. }
  2385. /* Enhancement for printing */
  2386. @media print {
  2387. .invoice {
  2388. width: 100%;
  2389. border: 0;
  2390. margin: 0;
  2391. padding: 0;
  2392. }
  2393. .invoice-col {
  2394. float: left;
  2395. width: 33.3333333%;
  2396. }
  2397. .table-responsive {
  2398. overflow: auto;
  2399. }
  2400. .table-responsive > .table tr th,
  2401. .table-responsive > .table tr td {
  2402. white-space: normal!important;
  2403. }
  2404. }
  2405. /*
  2406. Skins
  2407. -----
  2408. */
  2409. /*
  2410. Skin Blue
  2411. ---------
  2412. */
  2413. /* skin-blue navbar */
  2414. .skin-blue .navbar {
  2415. background-color: #3c8dbc;
  2416. }
  2417. .skin-blue .navbar .nav a {
  2418. color: rgba(255, 255, 255, 0.8);
  2419. }
  2420. .skin-blue .navbar .nav > li > a:hover,
  2421. .skin-blue .navbar .nav > li > a:active,
  2422. .skin-blue .navbar .nav > li > a:focus,
  2423. .skin-blue .navbar .nav .open > a,
  2424. .skin-blue .navbar .nav .open > a:hover,
  2425. .skin-blue .navbar .nav .open > a:focus {
  2426. background: rgba(0, 0, 0, 0.1);
  2427. color: #f6f6f6;
  2428. }
  2429. .skin-blue .navbar .navbar-right > .nav {
  2430. margin-right: 10px;
  2431. }
  2432. .skin-blue .navbar .sidebar-toggle .icon-bar {
  2433. background: rgba(255, 255, 255, 0.8);
  2434. }
  2435. .skin-blue .navbar .sidebar-toggle:hover .icon-bar {
  2436. background: #f6f6f6 !important;
  2437. }
  2438. /* skin-blue logo */
  2439. .skin-blue .logo {
  2440. background-color: #367fa9;
  2441. color: #f9f9f9;
  2442. }
  2443. .skin-blue .logo > a {
  2444. color: #f9f9f9;
  2445. }
  2446. .skin-blue .logo:hover {
  2447. background: #357ca5;
  2448. }
  2449. /* skin-blue content header */
  2450. .skin-blue .right-side > .content-header {
  2451. background: #fbfbfb;
  2452. box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  2453. }
  2454. /* Skin-blue user panel */
  2455. .skin-blue .user-panel > .image > img {
  2456. border: 1px solid #dfdfdf;
  2457. }
  2458. .skin-blue .user-panel > .info,
  2459. .skin-blue .user-panel > .info > a {
  2460. color: #555555;
  2461. }
  2462. /* skin-blue sidebar */
  2463. .skin-blue .sidebar {
  2464. border-bottom: 1px solid #fff;
  2465. }
  2466. .skin-blue .sidebar > .sidebar-menu > li {
  2467. border-top: 1px solid #fff;
  2468. border-bottom: 1px solid #dbdbdb;
  2469. }
  2470. .skin-blue .sidebar > .sidebar-menu > li:first-of-type {
  2471. border-top: 1px solid #dbdbdb;
  2472. }
  2473. .skin-blue .sidebar > .sidebar-menu > li:first-of-type > a {
  2474. border-top: 1px solid #fff;
  2475. }
  2476. .skin-blue .sidebar > .sidebar-menu > li > a {
  2477. margin-right: 1px;
  2478. }
  2479. .skin-blue .sidebar > .sidebar-menu > li > a:hover,
  2480. .skin-blue .sidebar > .sidebar-menu > li.active > a {
  2481. color: #222;
  2482. background: #f9f9f9;
  2483. }
  2484. .skin-blue .sidebar > .sidebar-menu > li > .treeview-menu {
  2485. margin: 0 1px;
  2486. background: #f9f9f9;
  2487. }
  2488. .skin-blue .left-side {
  2489. background: #f4f4f4;
  2490. -webkit-box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.1);
  2491. -moz-box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.1);
  2492. box-shadow: inset -3px 0px 8px -4px rgba(0, 0, 0, 0.07);
  2493. }
  2494. .skin-blue .sidebar a {
  2495. color: #555555;
  2496. }
  2497. .skin-blue .sidebar a:hover {
  2498. text-decoration: none;
  2499. }
  2500. .skin-blue .treeview-menu > li > a {
  2501. color: #777;
  2502. }
  2503. .skin-blue .treeview-menu > li.active > a,
  2504. .skin-blue .treeview-menu > li > a:hover {
  2505. color: #111;
  2506. }
  2507. .skin-blue .sidebar-form {
  2508. -webkit-border-radius: 2px;
  2509. -moz-border-radius: 2px;
  2510. border-radius: 2px;
  2511. border: 1px solid #dbdbdb;
  2512. margin: 10px 10px;
  2513. }
  2514. .skin-blue .sidebar-form input[type="text"],
  2515. .skin-blue .sidebar-form .btn {
  2516. box-shadow: none;
  2517. background-color: #fafafa;
  2518. border: 1px solid #fafafa;
  2519. height: 35px;
  2520. }
  2521. .skin-blue .sidebar-form input[type="text"] {
  2522. color: #666;
  2523. -webkit-border-top-left-radius: 2px !important;
  2524. -webkit-border-top-right-radius: 0 !important;
  2525. -webkit-border-bottom-right-radius: 0 !important;
  2526. -webkit-border-bottom-left-radius: 2px !important;
  2527. -moz-border-radius-topleft: 2px !important;
  2528. -moz-border-radius-topright: 0 !important;
  2529. -moz-border-radius-bottomright: 0 !important;
  2530. -moz-border-radius-bottomleft: 2px !important;
  2531. border-top-left-radius: 2px !important;
  2532. border-top-right-radius: 0 !important;
  2533. border-bottom-right-radius: 0 !important;
  2534. border-bottom-left-radius: 2px !important;
  2535. }
  2536. .skin-blue .sidebar-form input[type="text"]:focus,
  2537. .skin-blue .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  2538. background-color: #fff;
  2539. color: #666;
  2540. }
  2541. .skin-blue .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  2542. border-left-color: #fff;
  2543. }
  2544. .skin-blue .sidebar-form .btn {
  2545. color: #999;
  2546. -webkit-border-top-left-radius: 0 !important;
  2547. -webkit-border-top-right-radius: 2px !important;
  2548. -webkit-border-bottom-right-radius: 2px !important;
  2549. -webkit-border-bottom-left-radius: 0 !important;
  2550. -moz-border-radius-topleft: 0 !important;
  2551. -moz-border-radius-topright: 2px !important;
  2552. -moz-border-radius-bottomright: 2px !important;
  2553. -moz-border-radius-bottomleft: 0 !important;
  2554. border-top-left-radius: 0 !important;
  2555. border-top-right-radius: 2px !important;
  2556. border-bottom-right-radius: 2px !important;
  2557. border-bottom-left-radius: 0 !important;
  2558. }
  2559. /*
  2560. Skin Black
  2561. --------
  2562. */
  2563. /* skin-black navbar */
  2564. .skin-black .navbar {
  2565. background-color: #ffffff;
  2566. border-bottom: 1px solid #eee;
  2567. }
  2568. .skin-black .navbar .nav a {
  2569. color: #333333;
  2570. }
  2571. .skin-black .navbar .nav > li > a:hover,
  2572. .skin-black .navbar .nav > li > a:active,
  2573. .skin-black .navbar .nav > li > a:focus,
  2574. .skin-black .navbar .nav .open > a,
  2575. .skin-black .navbar .nav .open > a:hover,
  2576. .skin-black .navbar .nav .open > a:focus {
  2577. background: #ffffff;
  2578. color: #999999;
  2579. }
  2580. .skin-black .navbar .navbar-right > .nav {
  2581. margin-right: 10px;
  2582. }
  2583. .skin-black .navbar .sidebar-toggle .icon-bar {
  2584. background: #333333;
  2585. }
  2586. .skin-black .navbar .sidebar-toggle:hover .icon-bar {
  2587. background: #999999 !important;
  2588. }
  2589. /* skin-black logo */
  2590. .skin-black .logo {
  2591. background-color: #333333;
  2592. color: #f9f9f9;
  2593. }
  2594. .skin-black .logo > a {
  2595. color: #f9f9f9;
  2596. }
  2597. .skin-black .logo:hover {
  2598. background: #303030;
  2599. }
  2600. /* skin-black content header */
  2601. .skin-black .right-side > .content-header {
  2602. background: transparent;
  2603. box-shadow: none;
  2604. }
  2605. /* Skin-red user panel */
  2606. .skin-black .user-panel > .image > img {
  2607. border: 1px solid #444;
  2608. }
  2609. .skin-black .user-panel > .info,
  2610. .skin-black .user-panel > .info > a {
  2611. color: #eee;
  2612. }
  2613. /* skin-black sidebar */
  2614. .skin-black .sidebar {
  2615. border-bottom: 1px solid #333;
  2616. }
  2617. .skin-black .sidebar > .sidebar-menu > li {
  2618. border-top: 1px solid #333;
  2619. border-bottom: 0px solid #444;
  2620. }
  2621. .skin-black .sidebar > .sidebar-menu > li:first-of-type {
  2622. border-top: 1px solid #444;
  2623. }
  2624. .skin-black .sidebar > .sidebar-menu > li:first-of-type > a {
  2625. border-top: 0px solid #333;
  2626. }
  2627. .skin-black .sidebar > .sidebar-menu > li > a {
  2628. margin-right: 1px;
  2629. }
  2630. .skin-black .sidebar > .sidebar-menu > li > a:hover,
  2631. .skin-black .sidebar > .sidebar-menu > li.active > a {
  2632. color: #f6f6f6;
  2633. background: #444;
  2634. }
  2635. .skin-black .sidebar > .sidebar-menu > li > .treeview-menu {
  2636. margin: 0 1px;
  2637. background: #444;
  2638. }
  2639. .skin-black .left-side {
  2640. background: #333;
  2641. }
  2642. .skin-black .sidebar a {
  2643. color: #eee;
  2644. }
  2645. .skin-black .sidebar a:hover {
  2646. text-decoration: none;
  2647. }
  2648. .skin-black .treeview-menu > li > a {
  2649. color: #ccc;
  2650. }
  2651. .skin-black .treeview-menu > li.active > a,
  2652. .skin-black .treeview-menu > li > a:hover {
  2653. color: #fff;
  2654. }
  2655. .skin-black .sidebar-form {
  2656. -webkit-border-radius: 2px;
  2657. -moz-border-radius: 2px;
  2658. border-radius: 2px;
  2659. border: 0px solid #555;
  2660. margin: 10px 10px;
  2661. }
  2662. .skin-black .sidebar-form input[type="text"],
  2663. .skin-black .sidebar-form .btn {
  2664. box-shadow: none;
  2665. background-color: rgba(255, 255, 255, 0.1);
  2666. border: 0 solid rgba(255, 255, 255, 0.1);
  2667. height: 35px;
  2668. outline: none;
  2669. }
  2670. .skin-black .sidebar-form input[type="text"] {
  2671. color: #666;
  2672. -webkit-border-top-left-radius: 2px !important;
  2673. -webkit-border-top-right-radius: 0 !important;
  2674. -webkit-border-bottom-right-radius: 0 !important;
  2675. -webkit-border-bottom-left-radius: 2px !important;
  2676. -moz-border-radius-topleft: 2px !important;
  2677. -moz-border-radius-topright: 0 !important;
  2678. -moz-border-radius-bottomright: 0 !important;
  2679. -moz-border-radius-bottomleft: 2px !important;
  2680. border-top-left-radius: 2px !important;
  2681. border-top-right-radius: 0 !important;
  2682. border-bottom-right-radius: 0 !important;
  2683. border-bottom-left-radius: 2px !important;
  2684. }
  2685. .skin-black .sidebar-form input[type="text"]:focus,
  2686. .skin-black .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  2687. background-color: #444;
  2688. border: 0;
  2689. }
  2690. .skin-black .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  2691. border-left: 0;
  2692. }
  2693. .skin-black .sidebar-form .btn {
  2694. color: #999;
  2695. -webkit-border-top-left-radius: 0 !important;
  2696. -webkit-border-top-right-radius: 2px !important;
  2697. -webkit-border-bottom-right-radius: 2px !important;
  2698. -webkit-border-bottom-left-radius: 0 !important;
  2699. -moz-border-radius-topleft: 0 !important;
  2700. -moz-border-radius-topright: 2px !important;
  2701. -moz-border-radius-bottomright: 2px !important;
  2702. -moz-border-radius-bottomleft: 0 !important;
  2703. border-top-left-radius: 0 !important;
  2704. border-top-right-radius: 2px !important;
  2705. border-bottom-right-radius: 2px !important;
  2706. border-bottom-left-radius: 0 !important;
  2707. border-left: 0;
  2708. }
  2709. /*!
  2710. * iCheck v1.0.1, http://git.io/arlzeA
  2711. * =================================
  2712. * Powerful jQuery and Zepto plugin for checkboxes and radio buttons customization
  2713. *
  2714. * (c) 2013 Damir Sultanov, http://fronteed.com
  2715. * MIT Licensed
  2716. */
  2717. /* iCheck plugin Minimal skin, black
  2718. ----------------------------------- */
  2719. .icheckbox_minimal,
  2720. .iradio_minimal {
  2721. display: inline-block;
  2722. *display: inline;
  2723. vertical-align: middle;
  2724. margin: 0;
  2725. padding: 0;
  2726. width: 18px;
  2727. height: 18px;
  2728. background: rgba(255, 255, 255, 0.7) url(iCheck/minimal/minimal.png) no-repeat;
  2729. border: none;
  2730. cursor: pointer;
  2731. }
  2732. .icheckbox_minimal {
  2733. background-position: 0 0;
  2734. }
  2735. .icheckbox_minimal.hover {
  2736. background-position: -20px 0;
  2737. }
  2738. .icheckbox_minimal.checked {
  2739. background-position: -40px 0;
  2740. }
  2741. .icheckbox_minimal.disabled {
  2742. background-position: -60px 0;
  2743. cursor: default;
  2744. }
  2745. .icheckbox_minimal.checked.disabled {
  2746. background-position: -80px 0;
  2747. }
  2748. .iradio_minimal {
  2749. background-position: -100px 0;
  2750. }
  2751. .iradio_minimal.hover {
  2752. background-position: -120px 0;
  2753. }
  2754. .iradio_minimal.checked {
  2755. background-position: -140px 0;
  2756. }
  2757. .iradio_minimal.disabled {
  2758. background-position: -160px 0;
  2759. cursor: default;
  2760. }
  2761. .iradio_minimal.checked.disabled {
  2762. background-position: -180px 0;
  2763. }
  2764. /* Retina support */
  2765. @media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (-moz-min-device-pixel-ratio: 1.5), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (min-device-pixel-ratio: 1.5) {
  2766. .icheckbox_minimal,
  2767. .iradio_minimal {
  2768. background-image: url('iCheck/minimal/minimal@2x.png');
  2769. -webkit-background-size: 200px 20px;
  2770. background-size: 200px 20px;
  2771. }
  2772. }
  2773. .pace .pace-progress {
  2774. background: #00c0ef;
  2775. position: fixed;
  2776. z-index: 2000;
  2777. top: 0;
  2778. left: 0;
  2779. height: 2px;
  2780. -webkit-transition: width 1s;
  2781. -moz-transition: width 1s;
  2782. -o-transition: width 1s;
  2783. transition: width 1s;
  2784. }
  2785. .pace-inactive {
  2786. display: none;
  2787. }
  2788. /*
  2789. * Social Buttons for Bootstrap
  2790. *
  2791. * Copyright 2013-2014 Panayiotis Lipiridis
  2792. * Licensed under the MIT License
  2793. *
  2794. * https://github.com/lipis/bootstrap-social
  2795. *
  2796. * Note: this file has been altered to work correctly with AdminLTE
  2797. */
  2798. .btn-social {
  2799. position: relative;
  2800. padding-left: 44px !important;
  2801. text-align: left;
  2802. white-space: nowrap;
  2803. overflow: hidden;
  2804. text-overflow: ellipsis;
  2805. }
  2806. .btn-social :first-child {
  2807. position: absolute;
  2808. left: 0;
  2809. top: 0;
  2810. bottom: 0;
  2811. width: 32px !important;
  2812. line-height: 34px !important;
  2813. font-size: 1.6em!important;
  2814. text-align: center;
  2815. border-right: 1px solid rgba(0, 0, 0, 0.2);
  2816. }
  2817. .btn-social.btn-lg {
  2818. padding-left: 60px !important;
  2819. }
  2820. .btn-social.btn-lg :first-child {
  2821. line-height: 45px;
  2822. width: 45px;
  2823. font-size: 1.8em;
  2824. }
  2825. .btn-social.btn-sm {
  2826. padding-left: 38px !important;
  2827. }
  2828. .btn-social.btn-sm :first-child {
  2829. line-height: 28px;
  2830. width: 28px;
  2831. font-size: 1.4em;
  2832. }
  2833. .btn-social.btn-xs {
  2834. padding-left: 30px !important;
  2835. }
  2836. .btn-social.btn-xs :first-child {
  2837. line-height: 20px;
  2838. width: 20px;
  2839. font-size: 1.2em;
  2840. }
  2841. .btn-social-icon {
  2842. position: relative;
  2843. padding-left: 44px !important;
  2844. text-align: left;
  2845. white-space: nowrap;
  2846. overflow: hidden;
  2847. text-overflow: ellipsis;
  2848. height: 34px;
  2849. width: 34px;
  2850. padding: 0;
  2851. }
  2852. .btn-social-icon :first-child {
  2853. position: absolute;
  2854. left: 0;
  2855. top: 0;
  2856. bottom: 0;
  2857. width: 32px !important;
  2858. line-height: 34px !important;
  2859. font-size: 1.6em!important;
  2860. text-align: center;
  2861. border-right: 1px solid rgba(0, 0, 0, 0.2);
  2862. }
  2863. .btn-social-icon.btn-lg {
  2864. padding-left: 60px !important;
  2865. }
  2866. .btn-social-icon.btn-lg :first-child {
  2867. line-height: 45px;
  2868. width: 45px;
  2869. font-size: 1.8em;
  2870. }
  2871. .btn-social-icon.btn-sm {
  2872. padding-left: 38px !important;
  2873. }
  2874. .btn-social-icon.btn-sm :first-child {
  2875. line-height: 28px;
  2876. width: 28px;
  2877. font-size: 1.4em;
  2878. }
  2879. .btn-social-icon.btn-xs {
  2880. padding-left: 30px !important;
  2881. }
  2882. .btn-social-icon.btn-xs :first-child {
  2883. line-height: 20px;
  2884. width: 20px;
  2885. font-size: 1.2em;
  2886. }
  2887. .btn-social-icon :first-child {
  2888. border: none;
  2889. text-align: center;
  2890. width: 100%!important;
  2891. }
  2892. .btn-social-icon.btn-lg {
  2893. height: 45px;
  2894. width: 45px;
  2895. padding-left: 0;
  2896. padding-right: 0;
  2897. }
  2898. .btn-social-icon.btn-sm {
  2899. height: 30px;
  2900. width: 30px;
  2901. padding-left: 0;
  2902. padding-right: 0;
  2903. }
  2904. .btn-social-icon.btn-xs {
  2905. height: 22px;
  2906. width: 22px;
  2907. padding-left: 0;
  2908. padding-right: 0;
  2909. }
  2910. .btn-bitbucket {
  2911. color: #ffffff;
  2912. background-color: #205081;
  2913. border-color: rgba(0, 0, 0, 0.2);
  2914. }
  2915. .btn-bitbucket:hover,
  2916. .btn-bitbucket:focus,
  2917. .btn-bitbucket:active,
  2918. .btn-bitbucket.active,
  2919. .open .dropdown-toggle.btn-bitbucket {
  2920. color: #ffffff;
  2921. background-color: #183c60;
  2922. border-color: rgba(0, 0, 0, 0.2);
  2923. }
  2924. .btn-bitbucket:active,
  2925. .btn-bitbucket.active,
  2926. .open .dropdown-toggle.btn-bitbucket {
  2927. background-image: none;
  2928. }
  2929. .btn-bitbucket.disabled,
  2930. .btn-bitbucket[disabled],
  2931. fieldset[disabled] .btn-bitbucket,
  2932. .btn-bitbucket.disabled:hover,
  2933. .btn-bitbucket[disabled]:hover,
  2934. fieldset[disabled] .btn-bitbucket:hover,
  2935. .btn-bitbucket.disabled:focus,
  2936. .btn-bitbucket[disabled]:focus,
  2937. fieldset[disabled] .btn-bitbucket:focus,
  2938. .btn-bitbucket.disabled:active,
  2939. .btn-bitbucket[disabled]:active,
  2940. fieldset[disabled] .btn-bitbucket:active,
  2941. .btn-bitbucket.disabled.active,
  2942. .btn-bitbucket[disabled].active,
  2943. fieldset[disabled] .btn-bitbucket.active {
  2944. background-color: #205081;
  2945. border-color: rgba(0, 0, 0, 0.2);
  2946. }
  2947. .btn-bitbucket .badge {
  2948. color: #205081;
  2949. background-color: #ffffff;
  2950. }
  2951. .btn-dropbox {
  2952. color: #ffffff;
  2953. background-color: #1087dd;
  2954. border-color: rgba(0, 0, 0, 0.2);
  2955. }
  2956. .btn-dropbox:hover,
  2957. .btn-dropbox:focus,
  2958. .btn-dropbox:active,
  2959. .btn-dropbox.active,
  2960. .open .dropdown-toggle.btn-dropbox {
  2961. color: #ffffff;
  2962. background-color: #0d70b7;
  2963. border-color: rgba(0, 0, 0, 0.2);
  2964. }
  2965. .btn-dropbox:active,
  2966. .btn-dropbox.active,
  2967. .open .dropdown-toggle.btn-dropbox {
  2968. background-image: none;
  2969. }
  2970. .btn-dropbox.disabled,
  2971. .btn-dropbox[disabled],
  2972. fieldset[disabled] .btn-dropbox,
  2973. .btn-dropbox.disabled:hover,
  2974. .btn-dropbox[disabled]:hover,
  2975. fieldset[disabled] .btn-dropbox:hover,
  2976. .btn-dropbox.disabled:focus,
  2977. .btn-dropbox[disabled]:focus,
  2978. fieldset[disabled] .btn-dropbox:focus,
  2979. .btn-dropbox.disabled:active,
  2980. .btn-dropbox[disabled]:active,
  2981. fieldset[disabled] .btn-dropbox:active,
  2982. .btn-dropbox.disabled.active,
  2983. .btn-dropbox[disabled].active,
  2984. fieldset[disabled] .btn-dropbox.active {
  2985. background-color: #1087dd;
  2986. border-color: rgba(0, 0, 0, 0.2);
  2987. }
  2988. .btn-dropbox .badge {
  2989. color: #1087dd;
  2990. background-color: #ffffff;
  2991. }
  2992. .btn-facebook {
  2993. color: #ffffff;
  2994. background-color: #3b5998;
  2995. border-color: rgba(0, 0, 0, 0.2);
  2996. }
  2997. .btn-facebook:hover,
  2998. .btn-facebook:focus,
  2999. .btn-facebook:active,
  3000. .btn-facebook.active,
  3001. .open .dropdown-toggle.btn-facebook {
  3002. color: #ffffff;
  3003. background-color: #30487b;
  3004. border-color: rgba(0, 0, 0, 0.2);
  3005. }
  3006. .btn-facebook:active,
  3007. .btn-facebook.active,
  3008. .open .dropdown-toggle.btn-facebook {
  3009. background-image: none;
  3010. }
  3011. .btn-facebook.disabled,
  3012. .btn-facebook[disabled],
  3013. fieldset[disabled] .btn-facebook,
  3014. .btn-facebook.disabled:hover,
  3015. .btn-facebook[disabled]:hover,
  3016. fieldset[disabled] .btn-facebook:hover,
  3017. .btn-facebook.disabled:focus,
  3018. .btn-facebook[disabled]:focus,
  3019. fieldset[disabled] .btn-facebook:focus,
  3020. .btn-facebook.disabled:active,
  3021. .btn-facebook[disabled]:active,
  3022. fieldset[disabled] .btn-facebook:active,
  3023. .btn-facebook.disabled.active,
  3024. .btn-facebook[disabled].active,
  3025. fieldset[disabled] .btn-facebook.active {
  3026. background-color: #3b5998;
  3027. border-color: rgba(0, 0, 0, 0.2);
  3028. }
  3029. .btn-facebook .badge {
  3030. color: #3b5998;
  3031. background-color: #ffffff;
  3032. }
  3033. .btn-flickr {
  3034. color: #ffffff;
  3035. background-color: #ff0084;
  3036. border-color: rgba(0, 0, 0, 0.2);
  3037. }
  3038. .btn-flickr:hover,
  3039. .btn-flickr:focus,
  3040. .btn-flickr:active,
  3041. .btn-flickr.active,
  3042. .open .dropdown-toggle.btn-flickr {
  3043. color: #ffffff;
  3044. background-color: #d6006f;
  3045. border-color: rgba(0, 0, 0, 0.2);
  3046. }
  3047. .btn-flickr:active,
  3048. .btn-flickr.active,
  3049. .open .dropdown-toggle.btn-flickr {
  3050. background-image: none;
  3051. }
  3052. .btn-flickr.disabled,
  3053. .btn-flickr[disabled],
  3054. fieldset[disabled] .btn-flickr,
  3055. .btn-flickr.disabled:hover,
  3056. .btn-flickr[disabled]:hover,
  3057. fieldset[disabled] .btn-flickr:hover,
  3058. .btn-flickr.disabled:focus,
  3059. .btn-flickr[disabled]:focus,
  3060. fieldset[disabled] .btn-flickr:focus,
  3061. .btn-flickr.disabled:active,
  3062. .btn-flickr[disabled]:active,
  3063. fieldset[disabled] .btn-flickr:active,
  3064. .btn-flickr.disabled.active,
  3065. .btn-flickr[disabled].active,
  3066. fieldset[disabled] .btn-flickr.active {
  3067. background-color: #ff0084;
  3068. border-color: rgba(0, 0, 0, 0.2);
  3069. }
  3070. .btn-flickr .badge {
  3071. color: #ff0084;
  3072. background-color: #ffffff;
  3073. }
  3074. .btn-foursquare {
  3075. color: #ffffff;
  3076. background-color: #0072b1;
  3077. border-color: rgba(0, 0, 0, 0.2);
  3078. }
  3079. .btn-foursquare:hover,
  3080. .btn-foursquare:focus,
  3081. .btn-foursquare:active,
  3082. .btn-foursquare.active,
  3083. .open .dropdown-toggle.btn-foursquare {
  3084. color: #ffffff;
  3085. background-color: #005888;
  3086. border-color: rgba(0, 0, 0, 0.2);
  3087. }
  3088. .btn-foursquare:active,
  3089. .btn-foursquare.active,
  3090. .open .dropdown-toggle.btn-foursquare {
  3091. background-image: none;
  3092. }
  3093. .btn-foursquare.disabled,
  3094. .btn-foursquare[disabled],
  3095. fieldset[disabled] .btn-foursquare,
  3096. .btn-foursquare.disabled:hover,
  3097. .btn-foursquare[disabled]:hover,
  3098. fieldset[disabled] .btn-foursquare:hover,
  3099. .btn-foursquare.disabled:focus,
  3100. .btn-foursquare[disabled]:focus,
  3101. fieldset[disabled] .btn-foursquare:focus,
  3102. .btn-foursquare.disabled:active,
  3103. .btn-foursquare[disabled]:active,
  3104. fieldset[disabled] .btn-foursquare:active,
  3105. .btn-foursquare.disabled.active,
  3106. .btn-foursquare[disabled].active,
  3107. fieldset[disabled] .btn-foursquare.active {
  3108. background-color: #0072b1;
  3109. border-color: rgba(0, 0, 0, 0.2);
  3110. }
  3111. .btn-foursquare .badge {
  3112. color: #0072b1;
  3113. background-color: #ffffff;
  3114. }
  3115. .btn-github {
  3116. color: #ffffff;
  3117. background-color: #444444;
  3118. border-color: rgba(0, 0, 0, 0.2);
  3119. }
  3120. .btn-github:hover,
  3121. .btn-github:focus,
  3122. .btn-github:active,
  3123. .btn-github.active,
  3124. .open .dropdown-toggle.btn-github {
  3125. color: #ffffff;
  3126. background-color: #303030;
  3127. border-color: rgba(0, 0, 0, 0.2);
  3128. }
  3129. .btn-github:active,
  3130. .btn-github.active,
  3131. .open .dropdown-toggle.btn-github {
  3132. background-image: none;
  3133. }
  3134. .btn-github.disabled,
  3135. .btn-github[disabled],
  3136. fieldset[disabled] .btn-github,
  3137. .btn-github.disabled:hover,
  3138. .btn-github[disabled]:hover,
  3139. fieldset[disabled] .btn-github:hover,
  3140. .btn-github.disabled:focus,
  3141. .btn-github[disabled]:focus,
  3142. fieldset[disabled] .btn-github:focus,
  3143. .btn-github.disabled:active,
  3144. .btn-github[disabled]:active,
  3145. fieldset[disabled] .btn-github:active,
  3146. .btn-github.disabled.active,
  3147. .btn-github[disabled].active,
  3148. fieldset[disabled] .btn-github.active {
  3149. background-color: #444444;
  3150. border-color: rgba(0, 0, 0, 0.2);
  3151. }
  3152. .btn-github .badge {
  3153. color: #444444;
  3154. background-color: #ffffff;
  3155. }
  3156. .btn-google-plus {
  3157. color: #ffffff;
  3158. background-color: #dd4b39;
  3159. border-color: rgba(0, 0, 0, 0.2);
  3160. }
  3161. .btn-google-plus:hover,
  3162. .btn-google-plus:focus,
  3163. .btn-google-plus:active,
  3164. .btn-google-plus.active,
  3165. .open .dropdown-toggle.btn-google-plus {
  3166. color: #ffffff;
  3167. background-color: #ca3523;
  3168. border-color: rgba(0, 0, 0, 0.2);
  3169. }
  3170. .btn-google-plus:active,
  3171. .btn-google-plus.active,
  3172. .open .dropdown-toggle.btn-google-plus {
  3173. background-image: none;
  3174. }
  3175. .btn-google-plus.disabled,
  3176. .btn-google-plus[disabled],
  3177. fieldset[disabled] .btn-google-plus,
  3178. .btn-google-plus.disabled:hover,
  3179. .btn-google-plus[disabled]:hover,
  3180. fieldset[disabled] .btn-google-plus:hover,
  3181. .btn-google-plus.disabled:focus,
  3182. .btn-google-plus[disabled]:focus,
  3183. fieldset[disabled] .btn-google-plus:focus,
  3184. .btn-google-plus.disabled:active,
  3185. .btn-google-plus[disabled]:active,
  3186. fieldset[disabled] .btn-google-plus:active,
  3187. .btn-google-plus.disabled.active,
  3188. .btn-google-plus[disabled].active,
  3189. fieldset[disabled] .btn-google-plus.active {
  3190. background-color: #dd4b39;
  3191. border-color: rgba(0, 0, 0, 0.2);
  3192. }
  3193. .btn-google-plus .badge {
  3194. color: #dd4b39;
  3195. background-color: #ffffff;
  3196. }
  3197. .btn-instagram {
  3198. color: #ffffff;
  3199. background-color: #3f729b;
  3200. border-color: rgba(0, 0, 0, 0.2);
  3201. }
  3202. .btn-instagram:hover,
  3203. .btn-instagram:focus,
  3204. .btn-instagram:active,
  3205. .btn-instagram.active,
  3206. .open .dropdown-toggle.btn-instagram {
  3207. color: #ffffff;
  3208. background-color: #335d7e;
  3209. border-color: rgba(0, 0, 0, 0.2);
  3210. }
  3211. .btn-instagram:active,
  3212. .btn-instagram.active,
  3213. .open .dropdown-toggle.btn-instagram {
  3214. background-image: none;
  3215. }
  3216. .btn-instagram.disabled,
  3217. .btn-instagram[disabled],
  3218. fieldset[disabled] .btn-instagram,
  3219. .btn-instagram.disabled:hover,
  3220. .btn-instagram[disabled]:hover,
  3221. fieldset[disabled] .btn-instagram:hover,
  3222. .btn-instagram.disabled:focus,
  3223. .btn-instagram[disabled]:focus,
  3224. fieldset[disabled] .btn-instagram:focus,
  3225. .btn-instagram.disabled:active,
  3226. .btn-instagram[disabled]:active,
  3227. fieldset[disabled] .btn-instagram:active,
  3228. .btn-instagram.disabled.active,
  3229. .btn-instagram[disabled].active,
  3230. fieldset[disabled] .btn-instagram.active {
  3231. background-color: #3f729b;
  3232. border-color: rgba(0, 0, 0, 0.2);
  3233. }
  3234. .btn-instagram .badge {
  3235. color: #3f729b;
  3236. background-color: #ffffff;
  3237. }
  3238. .btn-linkedin {
  3239. color: #ffffff;
  3240. background-color: #007bb6;
  3241. border-color: rgba(0, 0, 0, 0.2);
  3242. }
  3243. .btn-linkedin:hover,
  3244. .btn-linkedin:focus,
  3245. .btn-linkedin:active,
  3246. .btn-linkedin.active,
  3247. .open .dropdown-toggle.btn-linkedin {
  3248. color: #ffffff;
  3249. background-color: #005f8d;
  3250. border-color: rgba(0, 0, 0, 0.2);
  3251. }
  3252. .btn-linkedin:active,
  3253. .btn-linkedin.active,
  3254. .open .dropdown-toggle.btn-linkedin {
  3255. background-image: none;
  3256. }
  3257. .btn-linkedin.disabled,
  3258. .btn-linkedin[disabled],
  3259. fieldset[disabled] .btn-linkedin,
  3260. .btn-linkedin.disabled:hover,
  3261. .btn-linkedin[disabled]:hover,
  3262. fieldset[disabled] .btn-linkedin:hover,
  3263. .btn-linkedin.disabled:focus,
  3264. .btn-linkedin[disabled]:focus,
  3265. fieldset[disabled] .btn-linkedin:focus,
  3266. .btn-linkedin.disabled:active,
  3267. .btn-linkedin[disabled]:active,
  3268. fieldset[disabled] .btn-linkedin:active,
  3269. .btn-linkedin.disabled.active,
  3270. .btn-linkedin[disabled].active,
  3271. fieldset[disabled] .btn-linkedin.active {
  3272. background-color: #007bb6;
  3273. border-color: rgba(0, 0, 0, 0.2);
  3274. }
  3275. .btn-linkedin .badge {
  3276. color: #007bb6;
  3277. background-color: #ffffff;
  3278. }
  3279. .btn-tumblr {
  3280. color: #ffffff;
  3281. background-color: #2c4762;
  3282. border-color: rgba(0, 0, 0, 0.2);
  3283. }
  3284. .btn-tumblr:hover,
  3285. .btn-tumblr:focus,
  3286. .btn-tumblr:active,
  3287. .btn-tumblr.active,
  3288. .open .dropdown-toggle.btn-tumblr {
  3289. color: #ffffff;
  3290. background-color: #1f3346;
  3291. border-color: rgba(0, 0, 0, 0.2);
  3292. }
  3293. .btn-tumblr:active,
  3294. .btn-tumblr.active,
  3295. .open .dropdown-toggle.btn-tumblr {
  3296. background-image: none;
  3297. }
  3298. .btn-tumblr.disabled,
  3299. .btn-tumblr[disabled],
  3300. fieldset[disabled] .btn-tumblr,
  3301. .btn-tumblr.disabled:hover,
  3302. .btn-tumblr[disabled]:hover,
  3303. fieldset[disabled] .btn-tumblr:hover,
  3304. .btn-tumblr.disabled:focus,
  3305. .btn-tumblr[disabled]:focus,
  3306. fieldset[disabled] .btn-tumblr:focus,
  3307. .btn-tumblr.disabled:active,
  3308. .btn-tumblr[disabled]:active,
  3309. fieldset[disabled] .btn-tumblr:active,
  3310. .btn-tumblr.disabled.active,
  3311. .btn-tumblr[disabled].active,
  3312. fieldset[disabled] .btn-tumblr.active {
  3313. background-color: #2c4762;
  3314. border-color: rgba(0, 0, 0, 0.2);
  3315. }
  3316. .btn-tumblr .badge {
  3317. color: #2c4762;
  3318. background-color: #ffffff;
  3319. }
  3320. .btn-twitter {
  3321. color: #ffffff;
  3322. background-color: #55acee;
  3323. border-color: rgba(0, 0, 0, 0.2);
  3324. }
  3325. .btn-twitter:hover,
  3326. .btn-twitter:focus,
  3327. .btn-twitter:active,
  3328. .btn-twitter.active,
  3329. .open .dropdown-toggle.btn-twitter {
  3330. color: #ffffff;
  3331. background-color: #309aea;
  3332. border-color: rgba(0, 0, 0, 0.2);
  3333. }
  3334. .btn-twitter:active,
  3335. .btn-twitter.active,
  3336. .open .dropdown-toggle.btn-twitter {
  3337. background-image: none;
  3338. }
  3339. .btn-twitter.disabled,
  3340. .btn-twitter[disabled],
  3341. fieldset[disabled] .btn-twitter,
  3342. .btn-twitter.disabled:hover,
  3343. .btn-twitter[disabled]:hover,
  3344. fieldset[disabled] .btn-twitter:hover,
  3345. .btn-twitter.disabled:focus,
  3346. .btn-twitter[disabled]:focus,
  3347. fieldset[disabled] .btn-twitter:focus,
  3348. .btn-twitter.disabled:active,
  3349. .btn-twitter[disabled]:active,
  3350. fieldset[disabled] .btn-twitter:active,
  3351. .btn-twitter.disabled.active,
  3352. .btn-twitter[disabled].active,
  3353. fieldset[disabled] .btn-twitter.active {
  3354. background-color: #55acee;
  3355. border-color: rgba(0, 0, 0, 0.2);
  3356. }
  3357. .btn-twitter .badge {
  3358. color: #55acee;
  3359. background-color: #ffffff;
  3360. }
  3361. .btn-vk {
  3362. color: #ffffff;
  3363. background-color: #587ea3;
  3364. border-color: rgba(0, 0, 0, 0.2);
  3365. }
  3366. .btn-vk:hover,
  3367. .btn-vk:focus,
  3368. .btn-vk:active,
  3369. .btn-vk.active,
  3370. .open .dropdown-toggle.btn-vk {
  3371. color: #ffffff;
  3372. background-color: #4a6a89;
  3373. border-color: rgba(0, 0, 0, 0.2);
  3374. }
  3375. .btn-vk:active,
  3376. .btn-vk.active,
  3377. .open .dropdown-toggle.btn-vk {
  3378. background-image: none;
  3379. }
  3380. .btn-vk.disabled,
  3381. .btn-vk[disabled],
  3382. fieldset[disabled] .btn-vk,
  3383. .btn-vk.disabled:hover,
  3384. .btn-vk[disabled]:hover,
  3385. fieldset[disabled] .btn-vk:hover,
  3386. .btn-vk.disabled:focus,
  3387. .btn-vk[disabled]:focus,
  3388. fieldset[disabled] .btn-vk:focus,
  3389. .btn-vk.disabled:active,
  3390. .btn-vk[disabled]:active,
  3391. fieldset[disabled] .btn-vk:active,
  3392. .btn-vk.disabled.active,
  3393. .btn-vk[disabled].active,
  3394. fieldset[disabled] .btn-vk.active {
  3395. background-color: #587ea3;
  3396. border-color: rgba(0, 0, 0, 0.2);
  3397. }
  3398. .btn-vk .badge {
  3399. color: #587ea3;
  3400. background-color: #ffffff;
  3401. }