AdminLTE.css 81 KB

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