AdminLTE.css 121 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232
  1. @import url(//fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,300italic,400italic,600italic);
  2. /*!
  3. * AdminLTE v1.2
  4. * Author: Almsaeed Studio
  5. * Website: Almsaeed Studio <http://almsaeedstudio.com>
  6. * License: Open source - MIT
  7. * Please visit http://opensource.org/licenses/MIT for more information
  8. !*/
  9. /*
  10. * Core: Genral Layout Style
  11. * -------------------------
  12. */
  13. html,
  14. body {
  15. min-height: 100%;
  16. }
  17. .layout-boxed html,
  18. .layout-boxed body {
  19. height: 100%;
  20. }
  21. body {
  22. -webkit-font-smoothing: antialiased;
  23. -moz-osx-font-smoothing: grayscale;
  24. font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  25. font-weight: 400;
  26. overflow-x: hidden;
  27. overflow-y: auto;
  28. }
  29. /* Layout */
  30. .wrapper {
  31. min-height: 100%;
  32. position: static;
  33. overflow: hidden;
  34. }
  35. .wrapper:before,
  36. .wrapper:after {
  37. content: " ";
  38. display: table;
  39. }
  40. .wrapper:after {
  41. clear: both;
  42. }
  43. .layout-boxed .wrapper {
  44. max-width: 1250px;
  45. margin: 0 auto;
  46. min-height: 100%;
  47. box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  48. position: relative;
  49. }
  50. .layout-boxed {
  51. background: url('../img/boxed-bg.jpg') repeat fixed;
  52. }
  53. /*
  54. * Content Wrapper - contins main content
  55. * ```.right-side has been deprecated as of v2.0 in favor of .content-wrapper ```
  56. */
  57. .content-wrapper,
  58. .right-side,
  59. .main-footer {
  60. -webkit-transition: all 0.3s ease;
  61. -o-transition: all 0.3s ease;
  62. transition: all 0.3s ease;
  63. margin-left: 230px;
  64. }
  65. .layout-top-nav .content-wrapper,
  66. .layout-top-nav .right-side,
  67. .layout-top-nav .main-footer {
  68. margin-left: 0!important;
  69. }
  70. @media (max-width: 767px) {
  71. .content-wrapper,
  72. .right-side,
  73. .main-footer {
  74. margin-left: 0;
  75. }
  76. }
  77. @media (min-width: 768px) {
  78. .sidebar-collapse .content-wrapper,
  79. .sidebar-collapse .right-side,
  80. .sidebar-collapse .main-footer {
  81. margin-left: 0;
  82. }
  83. }
  84. @media (max-width: 767px) {
  85. .sidebar-open .content-wrapper,
  86. .sidebar-open .right-side,
  87. .sidebar-open .main-footer {
  88. -webkit-transform: translate(230px, 0);
  89. -ms-transform: translate(230px, 0);
  90. -o-transform: translate(230px, 0);
  91. transform: translate(230px, 0);
  92. }
  93. }
  94. .content-wrapper,
  95. .right-side {
  96. min-height: 100%;
  97. background-color: #f4f5f7;
  98. z-index: 800;
  99. }
  100. @media print {
  101. .content-wrapper,
  102. .right-side {
  103. margin: 0!important;
  104. }
  105. }
  106. .main-footer {
  107. background: #fff;
  108. padding: 15px;
  109. color: #444;
  110. border-top: 1px solid #eee;
  111. }
  112. /* Fixed layout */
  113. .fixed .main-header,
  114. .fixed .main-sidebar,
  115. .fixed .left-side {
  116. position: fixed;
  117. }
  118. .fixed .main-header {
  119. top: 0;
  120. right: 0;
  121. left: 0;
  122. }
  123. .fixed .content-wrapper,
  124. .fixed .right-side {
  125. padding-top: 50px;
  126. }
  127. @media (max-width: 767px) {
  128. .fixed .content-wrapper,
  129. .fixed .right-side {
  130. padding-top: 100px;
  131. }
  132. }
  133. .fixed.layout-boxed .wrapper {
  134. max-width: 100%;
  135. }
  136. /* Content */
  137. .content {
  138. min-height: 250px;
  139. padding: 15px;
  140. margin-right: auto;
  141. margin-left: auto;
  142. padding-left: 15px;
  143. padding-right: 15px;
  144. }
  145. /* H1 - H6 font */
  146. h1,
  147. h2,
  148. h3,
  149. h4,
  150. h5,
  151. h6,
  152. .h1,
  153. .h2,
  154. .h3,
  155. .h4,
  156. .h5,
  157. .h6 {
  158. font-family: 'Source Sans Pro', sans-serif;
  159. }
  160. /* General Links */
  161. a {
  162. color: #3c8dbc;
  163. }
  164. a:hover,
  165. a:active,
  166. a:focus {
  167. outline: none;
  168. text-decoration: none;
  169. color: #72afd2;
  170. }
  171. /* Page Header */
  172. .page-header {
  173. margin: 10px 0 20px 0;
  174. font-size: 22px;
  175. }
  176. .page-header > small {
  177. color: #666;
  178. display: block;
  179. margin-top: 5px;
  180. }
  181. /* Don't display when printing */
  182. @media print {
  183. .no-print {
  184. display: none;
  185. }
  186. .main-sidebar,
  187. .left-side,
  188. .header,
  189. .content-header {
  190. display: none;
  191. }
  192. .content-wrapper,
  193. .right-side {
  194. margin: 0!important;
  195. }
  196. }
  197. /*
  198. * Component: Main Header
  199. * ----------------------
  200. */
  201. .main-header {
  202. position: relative;
  203. max-height: 100px;
  204. z-index: 1030;
  205. }
  206. .main-header .navbar {
  207. margin-bottom: 0;
  208. margin-left: 230px;
  209. border: none;
  210. min-height: 50px;
  211. }
  212. .main-header .navbar-custom-menu,
  213. .main-header .navbar-right {
  214. margin-right: 5px;
  215. float: right;
  216. }
  217. @media (max-width: 767px) {
  218. .main-header .navbar-right {
  219. float: none;
  220. }
  221. .navbar-collapse .main-header .navbar-right {
  222. margin: 7.5px -15px;
  223. }
  224. .main-header .navbar-right > li {
  225. color: inherit;
  226. border: 0;
  227. }
  228. }
  229. .main-header .sidebar-toggle {
  230. float: left;
  231. background-color: transparent;
  232. background-image: none;
  233. padding: 15px 15px;
  234. font-family: fontAwesome;
  235. }
  236. .main-header .sidebar-toggle:before {
  237. content: "\f0c9";
  238. }
  239. .main-header .sidebar-toggle:hover {
  240. color: #fff;
  241. }
  242. .main-header .sidebar-toggle .icon-bar {
  243. display: none;
  244. }
  245. .main-header .navbar .nav > li.user > a > .fa,
  246. .main-header .navbar .nav > li.user > a > .glyphicon,
  247. .main-header .navbar .nav > li.user > a > .ion {
  248. margin-right: 5px;
  249. }
  250. .main-header .navbar .nav > li > a > .label {
  251. position: absolute;
  252. top: 9px;
  253. right: 7px;
  254. text-align: center;
  255. font-size: 9px;
  256. padding: 2px 3px;
  257. line-height: .9;
  258. }
  259. .main-header .logo {
  260. -webkit-transition: background-color 0.3s;
  261. -o-transition: background-color 0.3s;
  262. transition: background-color 0.3s;
  263. display: block;
  264. float: left;
  265. height: 50px;
  266. font-size: 20px;
  267. line-height: 50px;
  268. text-align: center;
  269. width: 230px;
  270. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  271. padding: 0 15px;
  272. }
  273. .content-header {
  274. position: relative;
  275. padding: 15px 15px 0 15px;
  276. }
  277. .content-header > h1 {
  278. margin: 0;
  279. font-size: 24px;
  280. }
  281. .content-header > h1 > small {
  282. font-size: 15px;
  283. display: inline-block;
  284. padding-left: 4px;
  285. font-weight: 300;
  286. }
  287. .content-header > .breadcrumb {
  288. float: right;
  289. background: transparent;
  290. margin-top: 0px;
  291. margin-bottom: 0;
  292. font-size: 12px;
  293. padding: 7px 5px;
  294. position: absolute;
  295. top: 15px;
  296. right: 10px;
  297. border-radius: 2px;
  298. }
  299. .content-header > .breadcrumb > li > a {
  300. color: #444;
  301. text-decoration: none;
  302. }
  303. .content-header > .breadcrumb > li > a > .fa,
  304. .content-header > .breadcrumb > li > a > .glyphicon,
  305. .content-header > .breadcrumb > li > a > .ion {
  306. margin-right: 5px;
  307. }
  308. .content-header > .breadcrumb > li + li:before {
  309. content: '>\00a0';
  310. }
  311. @media screen and (max-width: 768px) {
  312. .content-header > .breadcrumb {
  313. position: relative;
  314. margin-top: 5px;
  315. top: 0;
  316. right: 0;
  317. float: none;
  318. background: #d2d6de;
  319. padding-left: 10px;
  320. }
  321. .content-header > .breadcrumb li:before {
  322. color: #97a0b3;
  323. }
  324. }
  325. .navbar-toggle {
  326. color: #fff;
  327. border: 0;
  328. margin: 0;
  329. padding: 15px 15px;
  330. }
  331. @media (max-width: 991px) {
  332. .navbar-custom-menu .navbar-nav > li {
  333. float: left;
  334. }
  335. .navbar-custom-menu .navbar-nav {
  336. margin: 0;
  337. float: left;
  338. }
  339. .navbar-custom-menu .navbar-nav > li > a {
  340. padding-top: 15px;
  341. padding-bottom: 15px;
  342. line-height: 20px;
  343. }
  344. }
  345. @media (max-width: 767px) {
  346. .main-header {
  347. position: relative;
  348. }
  349. .main-header .logo,
  350. .main-header .navbar {
  351. width: 100%;
  352. float: none;
  353. position: relative!important;
  354. }
  355. .main-header .navbar {
  356. margin: 0;
  357. }
  358. .main-header .navbar-custom-menu {
  359. float: right;
  360. }
  361. .main-sidebar,
  362. .left-side {
  363. padding-top: 50px!important;
  364. margin-top: 0!important;
  365. }
  366. }
  367. /*
  368. * Component: Sidebar
  369. * ------------------
  370. */
  371. .main-sidebar,
  372. .left-side {
  373. position: absolute;
  374. top: 50px;
  375. left: 0;
  376. width: 230px;
  377. z-index: 810;
  378. -webkit-transition: transform 0.3s ease;
  379. -o-transition: transform 0.3s ease;
  380. transition: transform 0.3s ease;
  381. }
  382. @media (max-width: 767px) {
  383. .main-sidebar,
  384. .left-side {
  385. -webkit-transform: translate(-230px, 0);
  386. -ms-transform: translate(-230px, 0);
  387. -o-transform: translate(-230px, 0);
  388. transform: translate(-230px, 0);
  389. }
  390. }
  391. @media (min-width: 768px) {
  392. .sidebar-collapse .main-sidebar,
  393. .sidebar-collapse .left-side {
  394. -webkit-transform: translate(-230px, 0);
  395. -ms-transform: translate(-230px, 0);
  396. -o-transform: translate(-230px, 0);
  397. transform: translate(-230px, 0);
  398. }
  399. }
  400. @media (max-width: 767px) {
  401. .sidebar-open .main-sidebar,
  402. .sidebar-open .left-side {
  403. -webkit-transform: translate(0, 0);
  404. -ms-transform: translate(0, 0);
  405. -o-transform: translate(0, 0);
  406. transform: translate(0, 0);
  407. }
  408. }
  409. .sidebar {
  410. padding-bottom: 10px;
  411. }
  412. .fixed .sidebar {
  413. overflow: auto;
  414. height: 100%;
  415. }
  416. .sidebar-form input:focus {
  417. border-color: transparent!important;
  418. }
  419. .user-panel {
  420. padding: 10px;
  421. }
  422. .user-panel:before,
  423. .user-panel:after {
  424. content: " ";
  425. display: table;
  426. }
  427. .user-panel:after {
  428. clear: both;
  429. }
  430. .user-panel > .image > img {
  431. width: 45px;
  432. height: 45px;
  433. }
  434. .user-panel > .info {
  435. font-weight: 600;
  436. padding: 5px 5px 5px 15px;
  437. font-size: 14px;
  438. line-height: 1;
  439. }
  440. .user-panel > .info > p {
  441. margin-bottom: 9px;
  442. }
  443. .user-panel > .info > a {
  444. text-decoration: none;
  445. padding-right: 5px;
  446. margin-top: 3px;
  447. font-size: 11px;
  448. font-weight: normal;
  449. }
  450. .user-panel > .info > a > .fa,
  451. .user-panel > .info > a > .ion,
  452. .user-panel > .info > a > .glyphicon {
  453. margin-right: 3px;
  454. }
  455. .sidebar-menu {
  456. list-style: none;
  457. margin: 0;
  458. padding: 0;
  459. }
  460. .sidebar-menu > li {
  461. position: relative;
  462. margin: 0;
  463. padding: 0;
  464. }
  465. .sidebar-menu > li > a {
  466. padding: 12px 5px 12px 15px;
  467. display: block;
  468. }
  469. .sidebar-menu > li > a > .fa,
  470. .sidebar-menu > li > a > .glyphicon,
  471. .sidebar-menu > li > a > .ion {
  472. width: 20px;
  473. }
  474. .sidebar-menu > li .label,
  475. .sidebar-menu > li .badge {
  476. margin-top: 3px;
  477. margin-right: 5px;
  478. }
  479. .sidebar-menu li.header {
  480. padding: 10px 25px 10px 15px;
  481. font-size: 12px;
  482. }
  483. .sidebar-menu li > a > .fa-angle-left {
  484. width: auto;
  485. height: auto;
  486. padding: 0;
  487. margin-right: 10px;
  488. margin-top: 3px;
  489. }
  490. .sidebar-menu li.active > a > .fa-angle-left {
  491. -webkit-transform: rotate(-90deg);
  492. -ms-transform: rotate(-90deg);
  493. -o-transform: rotate(-90deg);
  494. transform: rotate(-90deg);
  495. }
  496. .sidebar-menu li.active > .treeview-menu {
  497. display: block;
  498. }
  499. .sidebar-menu .treeview-menu {
  500. display: none;
  501. list-style: none;
  502. padding: 0;
  503. margin: 0;
  504. padding-left: 5px;
  505. }
  506. .sidebar-menu .treeview-menu .treeview-menu {
  507. padding-left: 20px;
  508. }
  509. .sidebar-menu .treeview-menu > li {
  510. margin: 0;
  511. }
  512. .sidebar-menu .treeview-menu > li > a {
  513. padding: 5px 5px 5px 15px;
  514. display: block;
  515. font-size: 14px;
  516. }
  517. .sidebar-menu .treeview-menu > li > a > .fa,
  518. .sidebar-menu .treeview-menu > li > a > .glyphicon,
  519. .sidebar-menu .treeview-menu > li > a > .ion {
  520. width: 20px;
  521. }
  522. .sidebar-menu .treeview-menu > li > a > .fa-angle-left,
  523. .sidebar-menu .treeview-menu > li > a > .fa-angle-down {
  524. width: auto;
  525. }
  526. /*
  527. * Component: Dropdown menus
  528. * -------------------------
  529. */
  530. /*Dropdowns in general*/
  531. .dropdown-menu {
  532. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  533. border-color: #eee;
  534. }
  535. .dropdown-menu > li > a {
  536. color: #444;
  537. }
  538. .dropdown-menu > li > a > .glyphicon,
  539. .dropdown-menu > li > a > .fa,
  540. .dropdown-menu > li > a > .ion {
  541. margin-right: 10px;
  542. }
  543. .dropdown-menu > li > a:hover {
  544. background-color: #d2d6de;
  545. color: #ffffff;
  546. }
  547. .dropdown-menu > .divider {
  548. background-color: #eee;
  549. }
  550. /*
  551. Navbar custom dropdown menu
  552. ------------------------------------
  553. */
  554. .navbar-nav > .notifications-menu,
  555. .navbar-nav > .messages-menu,
  556. .navbar-nav > .tasks-menu {
  557. position: relative;
  558. }
  559. .navbar-nav > .notifications-menu > .dropdown-menu,
  560. .navbar-nav > .messages-menu > .dropdown-menu,
  561. .navbar-nav > .tasks-menu > .dropdown-menu {
  562. width: 280px;
  563. padding: 0 0 0 0!important;
  564. margin: 0!important;
  565. top: 100%;
  566. }
  567. .navbar-nav > .notifications-menu > .dropdown-menu > li,
  568. .navbar-nav > .messages-menu > .dropdown-menu > li,
  569. .navbar-nav > .tasks-menu > .dropdown-menu > li {
  570. position: relative;
  571. }
  572. .navbar-nav > .notifications-menu > .dropdown-menu > li.header,
  573. .navbar-nav > .messages-menu > .dropdown-menu > li.header,
  574. .navbar-nav > .tasks-menu > .dropdown-menu > li.header {
  575. border-top-left-radius: 4px;
  576. border-top-right-radius: 4px;
  577. border-bottom-right-radius: 0;
  578. border-bottom-left-radius: 0;
  579. background-color: #ffffff;
  580. padding: 7px 10px;
  581. border-bottom: 1px solid #f4f4f4;
  582. color: #444444;
  583. font-size: 14px;
  584. }
  585. .navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a,
  586. .navbar-nav > .messages-menu > .dropdown-menu > li.footer > a,
  587. .navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a {
  588. border-top-left-radius: 0px;
  589. border-top-right-radius: 0px;
  590. border-bottom-right-radius: 4px;
  591. border-bottom-left-radius: 4px;
  592. font-size: 12px;
  593. background-color: #fff;
  594. padding: 7px 10px;
  595. border-bottom: 1px solid #eeeeee;
  596. color: #444444;
  597. text-align: center;
  598. }
  599. .navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a:hover,
  600. .navbar-nav > .messages-menu > .dropdown-menu > li.footer > a:hover,
  601. .navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a:hover {
  602. text-decoration: none;
  603. font-weight: normal;
  604. }
  605. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu,
  606. .navbar-nav > .messages-menu > .dropdown-menu > li .menu,
  607. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu {
  608. max-height: 200px;
  609. margin: 0;
  610. padding: 0;
  611. list-style: none;
  612. overflow-x: hidden;
  613. }
  614. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a,
  615. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a,
  616. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a {
  617. display: block;
  618. white-space: nowrap;
  619. /* Prevent text from breaking */
  620. border-bottom: 1px solid #f4f4f4;
  621. }
  622. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a:hover,
  623. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:hover,
  624. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a:hover {
  625. background: #f6f6f6;
  626. text-decoration: none;
  627. }
  628. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a {
  629. font-size: 12px;
  630. color: #444444;
  631. }
  632. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon,
  633. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa,
  634. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion {
  635. font-size: 20px;
  636. width: 50px;
  637. text-align: center;
  638. padding: 15px 0px;
  639. margin-right: 5px;
  640. /* Default background and font colors */
  641. background: #00c0ef;
  642. color: #f9f9f9;
  643. /* Fallback for browsers that doesn't support rgba */
  644. color: rgba(255, 255, 255, 0.7);
  645. }
  646. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon.danger,
  647. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa.danger,
  648. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion.danger {
  649. background: #dd4b39;
  650. }
  651. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon.warning,
  652. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa.warning,
  653. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion.warning {
  654. background: #f39c12;
  655. }
  656. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon.success,
  657. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa.success,
  658. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion.success {
  659. background: #00a65a;
  660. }
  661. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon.info,
  662. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa.info,
  663. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion.info {
  664. background: #00c0ef;
  665. }
  666. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a {
  667. margin: 0px;
  668. line-height: 20px;
  669. padding: 10px 5px 10px 5px;
  670. }
  671. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > div > img {
  672. margin: auto 10px auto auto;
  673. width: 40px;
  674. height: 40px;
  675. }
  676. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > h4 {
  677. padding: 0;
  678. margin: 0 0 0 45px;
  679. color: #444444;
  680. font-size: 15px;
  681. }
  682. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > h4 > small {
  683. color: #999999;
  684. font-size: 10px;
  685. float: right;
  686. }
  687. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > p {
  688. margin: 0 0 0 45px;
  689. font-size: 12px;
  690. color: #888888;
  691. }
  692. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:before,
  693. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after {
  694. content: " ";
  695. display: table;
  696. }
  697. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after {
  698. clear: both;
  699. }
  700. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a {
  701. padding: 10px;
  702. }
  703. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a > h3 {
  704. font-size: 14px;
  705. padding: 0;
  706. margin: 0 0 10px 0;
  707. color: #666666;
  708. }
  709. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a > .progress {
  710. padding: 0;
  711. margin: 0;
  712. }
  713. .navbar-nav > .user-menu > .dropdown-menu {
  714. border-radius: 0;
  715. padding: 1px 0 0 0;
  716. border-top-width: 0;
  717. width: 280px;
  718. }
  719. .navbar-nav > .user-menu > .dropdown-menu > li.user-header {
  720. height: 175px;
  721. padding: 10px;
  722. text-align: center;
  723. }
  724. .navbar-nav > .user-menu > .dropdown-menu > li.user-header > img {
  725. z-index: 5;
  726. height: 90px;
  727. width: 90px;
  728. border: 3px solid;
  729. border-color: transparent;
  730. border-color: rgba(255, 255, 255, 0.2);
  731. }
  732. .navbar-nav > .user-menu > .dropdown-menu > li.user-header > p {
  733. z-index: 5;
  734. color: #fff;
  735. color: rgba(255, 255, 255, 0.8);
  736. font-size: 17px;
  737. margin-top: 10px;
  738. }
  739. .navbar-nav > .user-menu > .dropdown-menu > li.user-header > p > small {
  740. display: block;
  741. font-size: 12px;
  742. }
  743. .navbar-nav > .user-menu > .dropdown-menu > .user-body {
  744. padding: 15px;
  745. border-bottom: 1px solid #f4f4f4;
  746. border-top: 1px solid #dddddd;
  747. }
  748. .navbar-nav > .user-menu > .dropdown-menu > .user-body:before,
  749. .navbar-nav > .user-menu > .dropdown-menu > .user-body:after {
  750. content: " ";
  751. display: table;
  752. }
  753. .navbar-nav > .user-menu > .dropdown-menu > .user-body:after {
  754. clear: both;
  755. }
  756. .navbar-nav > .user-menu > .dropdown-menu > .user-body > div > a {
  757. color: #3c8dbc;
  758. }
  759. .navbar-nav > .user-menu > .dropdown-menu > .user-footer {
  760. background-color: #f9f9f9;
  761. padding: 10px;
  762. }
  763. .navbar-nav > .user-menu > .dropdown-menu > .user-footer:before,
  764. .navbar-nav > .user-menu > .dropdown-menu > .user-footer:after {
  765. content: " ";
  766. display: table;
  767. }
  768. .navbar-nav > .user-menu > .dropdown-menu > .user-footer:after {
  769. clear: both;
  770. }
  771. .navbar-nav > .user-menu > .dropdown-menu > .user-footer .btn-default {
  772. color: #666666;
  773. }
  774. .navbar-nav > .user-menu .user-image {
  775. float: left;
  776. width: 25px;
  777. height: 25px;
  778. border-radius: 50%;
  779. margin-right: 10px;
  780. margin-top: -2px;
  781. }
  782. @media (max-width: 767px) {
  783. .navbar-nav > .user-menu .user-image {
  784. float: none;
  785. margin-right: 0;
  786. margin-top: -8px;
  787. line-height: 10px;
  788. }
  789. }
  790. /* Add fade animation to dropdown menus */
  791. .open:not(.dropup) > .animated-dropdown-menu {
  792. backface-visibility: visible !important;
  793. -webkit-animation: flipInX 0.7s both;
  794. -o-animation: flipInX 0.7s both;
  795. animation: flipInX 0.7s both;
  796. }
  797. @keyframes flipInX {
  798. 0% {
  799. transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  800. transition-timing-function: ease-in;
  801. opacity: 0;
  802. }
  803. 40% {
  804. transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  805. transition-timing-function: ease-in;
  806. }
  807. 60% {
  808. transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  809. opacity: 1;
  810. }
  811. 80% {
  812. transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  813. }
  814. 100% {
  815. transform: perspective(400px);
  816. }
  817. }
  818. @-webkit-keyframes flipInX {
  819. 0% {
  820. transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
  821. transition-timing-function: ease-in;
  822. opacity: 0;
  823. }
  824. 40% {
  825. transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
  826. transition-timing-function: ease-in;
  827. }
  828. 60% {
  829. transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
  830. opacity: 1;
  831. }
  832. 80% {
  833. transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  834. }
  835. 100% {
  836. transform: perspective(400px);
  837. }
  838. }
  839. /* Fix dropdown menu in navbars */
  840. .navbar-custom-menu > .navbar-nav > li {
  841. position: relative;
  842. }
  843. .navbar-custom-menu > .navbar-nav > li > .dropdown-menu {
  844. position: absolute;
  845. right: 0;
  846. left: auto;
  847. }
  848. @media (max-width: 768px) {
  849. .navbar-custom-menu > .navbar-nav {
  850. float: right;
  851. }
  852. .navbar-custom-menu > .navbar-nav > li {
  853. position: static;
  854. }
  855. .navbar-custom-menu > .navbar-nav > li > .dropdown-menu {
  856. position: absolute;
  857. right: 5%;
  858. left: auto;
  859. border-right: 1px solid #ddd;
  860. border-bottom: 1px solid #ddd;
  861. border-left: 1px solid #ddd;
  862. background: #fff;
  863. }
  864. }
  865. /* Fix menu positions on xs screens to appear correctly and fully */
  866. @media (max-width: 768px) {
  867. .navbar-nav > li > .dropdown-menu {
  868. /* Remove arrow from the top */
  869. }
  870. .navbar-nav > li > .dropdown-menu:after,
  871. .navbar-nav > li > .dropdown-menu > li.header:after {
  872. border-width: 0px!important;
  873. }
  874. }
  875. /*
  876. * Component: Form
  877. * ---------------
  878. */
  879. .form-control {
  880. border-radius: 0px !important;
  881. -webkit-appearance: none;
  882. -moz-appearance: none;
  883. appearance: none;
  884. box-shadow: none;
  885. border-color: #d2d6de;
  886. }
  887. .form-control:focus {
  888. border-color: #3c8dbc !important;
  889. box-shadow: none;
  890. }
  891. .form-control::-moz-placeholder {
  892. color: #bbb;
  893. opacity: 1;
  894. }
  895. .form-control:-ms-input-placeholder {
  896. color: #bbb;
  897. }
  898. .form-control::-webkit-input-placeholder {
  899. color: #bbb;
  900. }
  901. .form-group.has-success label {
  902. color: #00a65a;
  903. }
  904. .form-group.has-success .form-control {
  905. border-color: #00a65a !important;
  906. box-shadow: none;
  907. }
  908. .form-group.has-warning label {
  909. color: #f39c12;
  910. }
  911. .form-group.has-warning .form-control {
  912. border-color: #f39c12 !important;
  913. box-shadow: none;
  914. }
  915. .form-group.has-error label {
  916. color: #dd4b39;
  917. }
  918. .form-group.has-error .form-control {
  919. border-color: #dd4b39 !important;
  920. box-shadow: none;
  921. }
  922. /* Input group */
  923. .input-group .input-group-addon {
  924. border-radius: 0px;
  925. border-color: #d2d6de;
  926. background-color: #fff;
  927. }
  928. /* button groups */
  929. .btn-group-vertical .btn.btn-flat:first-of-type,
  930. .btn-group-vertical .btn.btn-flat:last-of-type {
  931. border-radius: 0;
  932. }
  933. /* Checkbox and radio inputs */
  934. .checkbox,
  935. .radio {
  936. padding-left: 0;
  937. }
  938. /*
  939. * Component: Progress Bar
  940. * -----------------------
  941. */
  942. .progress,
  943. .progress > .progress-bar {
  944. -webkit-box-shadow: none;
  945. box-shadow: none;
  946. }
  947. .progress,
  948. .progress > .progress-bar,
  949. .progress .progress-bar,
  950. .progress > .progress-bar .progress-bar {
  951. border-radius: 1px;
  952. }
  953. /* size variation */
  954. .progress.sm,
  955. .progress-sm {
  956. height: 10px;
  957. }
  958. .progress.sm,
  959. .progress-sm,
  960. .progress.sm .progress-bar,
  961. .progress-sm .progress-bar {
  962. border-radius: 1px;
  963. }
  964. .progress.xs,
  965. .progress-xs {
  966. height: 7px;
  967. }
  968. .progress.xs,
  969. .progress-xs,
  970. .progress.xs .progress-bar,
  971. .progress-xs .progress-bar {
  972. border-radius: 1px;
  973. }
  974. .progress.xxs,
  975. .progress-xxs {
  976. height: 3px;
  977. }
  978. .progress.xxs,
  979. .progress-xxs,
  980. .progress.xxs .progress-bar,
  981. .progress-xxs .progress-bar {
  982. border-radius: 1px;
  983. }
  984. /* Vertical bars */
  985. .progress.vertical {
  986. position: relative;
  987. width: 30px;
  988. height: 200px;
  989. display: inline-block;
  990. margin-right: 10px;
  991. }
  992. .progress.vertical > .progress-bar {
  993. width: 100%!important;
  994. position: absolute;
  995. bottom: 0;
  996. }
  997. .progress.vertical.sm,
  998. .progress.vertical.progress-sm {
  999. width: 20px;
  1000. }
  1001. .progress.vertical.xs,
  1002. .progress.vertical.progress-xs {
  1003. width: 10px;
  1004. }
  1005. .progress.vertical.xxs,
  1006. .progress.vertical.progress-xxs {
  1007. width: 3px;
  1008. }
  1009. .progress-group .progress-text {
  1010. font-weight: 600;
  1011. }
  1012. .progress-group .progress-number {
  1013. float: right;
  1014. }
  1015. /* Remove margins from progress bars when put in a table */
  1016. .table tr > td .progress {
  1017. margin: 0;
  1018. }
  1019. .progress-bar-light-blue,
  1020. .progress-bar-primary {
  1021. background-color: #3c8dbc;
  1022. }
  1023. .progress-striped .progress-bar-light-blue,
  1024. .progress-striped .progress-bar-primary {
  1025. 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);
  1026. background-image: -o-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);
  1027. 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);
  1028. }
  1029. .progress-bar-green,
  1030. .progress-bar-success {
  1031. background-color: #00a65a;
  1032. }
  1033. .progress-striped .progress-bar-green,
  1034. .progress-striped .progress-bar-success {
  1035. 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);
  1036. background-image: -o-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);
  1037. 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);
  1038. }
  1039. .progress-bar-aqua,
  1040. .progress-bar-info {
  1041. background-color: #00c0ef;
  1042. }
  1043. .progress-striped .progress-bar-aqua,
  1044. .progress-striped .progress-bar-info {
  1045. 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);
  1046. background-image: -o-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);
  1047. 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);
  1048. }
  1049. .progress-bar-yellow,
  1050. .progress-bar-warning {
  1051. background-color: #f39c12;
  1052. }
  1053. .progress-striped .progress-bar-yellow,
  1054. .progress-striped .progress-bar-warning {
  1055. 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);
  1056. background-image: -o-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);
  1057. 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);
  1058. }
  1059. .progress-bar-red,
  1060. .progress-bar-danger {
  1061. background-color: #dd4b39;
  1062. }
  1063. .progress-striped .progress-bar-red,
  1064. .progress-striped .progress-bar-danger {
  1065. 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);
  1066. background-image: -o-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);
  1067. 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);
  1068. }
  1069. /*
  1070. * Component: Small Box
  1071. * --------------------
  1072. */
  1073. .small-box {
  1074. border-radius: 2px;
  1075. position: relative;
  1076. display: block;
  1077. margin-bottom: 20px;
  1078. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  1079. }
  1080. .small-box > .inner {
  1081. padding: 10px;
  1082. }
  1083. .small-box > .small-box-footer {
  1084. position: relative;
  1085. text-align: center;
  1086. padding: 3px 0;
  1087. color: #fff;
  1088. color: rgba(255, 255, 255, 0.8);
  1089. display: block;
  1090. z-index: 10;
  1091. background: rgba(0, 0, 0, 0.1);
  1092. text-decoration: none;
  1093. }
  1094. .small-box > .small-box-footer:hover {
  1095. color: #fff;
  1096. background: rgba(0, 0, 0, 0.15);
  1097. }
  1098. .small-box h3 {
  1099. font-size: 38px;
  1100. font-weight: bold;
  1101. margin: 0 0 10px 0;
  1102. white-space: nowrap;
  1103. padding: 0;
  1104. }
  1105. .small-box p {
  1106. font-size: 15px;
  1107. }
  1108. .small-box p > small {
  1109. display: block;
  1110. color: #f9f9f9;
  1111. font-size: 13px;
  1112. margin-top: 5px;
  1113. }
  1114. .small-box h3,
  1115. .small-box p {
  1116. z-index: 5px;
  1117. }
  1118. .small-box .icon {
  1119. -webkit-transition: all 0.3s ease;
  1120. -o-transition: all 0.3s ease;
  1121. transition: all 0.3s ease;
  1122. position: absolute;
  1123. top: -10px;
  1124. right: 10px;
  1125. z-index: 0;
  1126. font-size: 90px;
  1127. color: rgba(0, 0, 0, 0.15);
  1128. }
  1129. .small-box:hover {
  1130. text-decoration: none;
  1131. color: #f9f9f9;
  1132. }
  1133. .small-box:hover .icon {
  1134. font-size: 95px;
  1135. }
  1136. @media screen and (max-width: 480px) {
  1137. .small-box {
  1138. text-align: center;
  1139. }
  1140. .small-box .icon {
  1141. display: none;
  1142. }
  1143. .small-box p {
  1144. font-size: 12px;
  1145. }
  1146. }
  1147. /*
  1148. * Component: Box
  1149. * --------------
  1150. */
  1151. .box {
  1152. position: relative;
  1153. border-radius: 3px;
  1154. background: #ffffff;
  1155. border-top: 3px solid #d2d6de;
  1156. margin-bottom: 20px;
  1157. width: 100%;
  1158. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  1159. }
  1160. .box.box-primary {
  1161. border-top-color: #3c8dbc;
  1162. }
  1163. .box.box-info {
  1164. border-top-color: #00c0ef;
  1165. }
  1166. .box.box-danger {
  1167. border-top-color: #dd4b39;
  1168. }
  1169. .box.box-warning {
  1170. border-top-color: #f39c12;
  1171. }
  1172. .box.box-success {
  1173. border-top-color: #00a65a;
  1174. }
  1175. .box.box-black {
  1176. border-top-color: #222222;
  1177. }
  1178. .box .nav-stacked > li {
  1179. border-bottom: 1px solid #f4f4f4;
  1180. margin: 0;
  1181. }
  1182. .box .nav-stacked > li:last-of-type {
  1183. border-bottom: none;
  1184. }
  1185. .box.height-control .box-body {
  1186. max-height: 300px;
  1187. overflow: auto;
  1188. }
  1189. .box .border-right {
  1190. border-right: 1px solid #f4f4f4;
  1191. }
  1192. .box .border-left {
  1193. border-left: 1px solid #f4f4f4;
  1194. }
  1195. .box.box-solid {
  1196. border-top: 0px;
  1197. }
  1198. .box.box-solid > .box-header .btn.btn-default {
  1199. background: transparent;
  1200. }
  1201. .box.box-solid.box-default {
  1202. border: 1px solid #222d32;
  1203. }
  1204. .box.box-solid.box-default > .box-header {
  1205. color: #ffffff;
  1206. background: #222d32;
  1207. background-color: #222d32;
  1208. }
  1209. .box.box-solid.box-default > .box-header a,
  1210. .box.box-solid.box-default > .box-header .btn {
  1211. color: #ffffff;
  1212. }
  1213. .box.box-solid.box-primary {
  1214. border: 1px solid #3c8dbc;
  1215. }
  1216. .box.box-solid.box-primary > .box-header {
  1217. color: #ffffff;
  1218. background: #3c8dbc;
  1219. background-color: #3c8dbc;
  1220. }
  1221. .box.box-solid.box-primary > .box-header a,
  1222. .box.box-solid.box-primary > .box-header .btn {
  1223. color: #ffffff;
  1224. }
  1225. .box.box-solid.box-info {
  1226. border: 1px solid #00c0ef;
  1227. }
  1228. .box.box-solid.box-info > .box-header {
  1229. color: #ffffff;
  1230. background: #00c0ef;
  1231. background-color: #00c0ef;
  1232. }
  1233. .box.box-solid.box-info > .box-header a,
  1234. .box.box-solid.box-info > .box-header .btn {
  1235. color: #ffffff;
  1236. }
  1237. .box.box-solid.box-danger {
  1238. border: 1px solid #dd4b39;
  1239. }
  1240. .box.box-solid.box-danger > .box-header {
  1241. color: #ffffff;
  1242. background: #dd4b39;
  1243. background-color: #dd4b39;
  1244. }
  1245. .box.box-solid.box-danger > .box-header a,
  1246. .box.box-solid.box-danger > .box-header .btn {
  1247. color: #ffffff;
  1248. }
  1249. .box.box-solid.box-warning {
  1250. border: 1px solid #f39c12;
  1251. }
  1252. .box.box-solid.box-warning > .box-header {
  1253. color: #ffffff;
  1254. background: #f39c12;
  1255. background-color: #f39c12;
  1256. }
  1257. .box.box-solid.box-warning > .box-header a,
  1258. .box.box-solid.box-warning > .box-header .btn {
  1259. color: #ffffff;
  1260. }
  1261. .box.box-solid.box-success {
  1262. border: 1px solid #00a65a;
  1263. }
  1264. .box.box-solid.box-success > .box-header {
  1265. color: #ffffff;
  1266. background: #00a65a;
  1267. background-color: #00a65a;
  1268. }
  1269. .box.box-solid.box-success > .box-header a,
  1270. .box.box-solid.box-success > .box-header .btn {
  1271. color: #ffffff;
  1272. }
  1273. .box.box-solid > .box-header > .box-tools .btn {
  1274. border: 0;
  1275. box-shadow: none;
  1276. }
  1277. .box.box-solid.collapsed-box .box-body,
  1278. .box.box-solid.collapsed-box .box-footer {
  1279. display: none;
  1280. }
  1281. .box.box-solid[class*='bg'] > .box-header {
  1282. color: #fff;
  1283. }
  1284. .box .box-group > .box {
  1285. margin-bottom: 5px;
  1286. }
  1287. .box .knob-label {
  1288. text-align: center;
  1289. color: #333;
  1290. font-weight: 100;
  1291. font-size: 12px;
  1292. margin-bottom: 0.3em;
  1293. }
  1294. .box > .overlay,
  1295. .box > .loading-img {
  1296. position: absolute;
  1297. top: -3px;
  1298. left: 0;
  1299. width: 100%;
  1300. height: 100%;
  1301. }
  1302. .box .overlay {
  1303. z-index: 1010;
  1304. background: rgba(255, 255, 255, 0.7);
  1305. border-radius: 3px;
  1306. }
  1307. .box .overlay > .fa {
  1308. position: absolute;
  1309. top: 50%;
  1310. left: 50%;
  1311. margin-left: -15px;
  1312. margin-top: -15px;
  1313. color: #000;
  1314. font-size: 30px;
  1315. }
  1316. .box .overlay.dark {
  1317. background: rgba(0, 0, 0, 0.5);
  1318. }
  1319. .box-header {
  1320. color: #444;
  1321. display: block;
  1322. padding: 10px;
  1323. position: relative;
  1324. }
  1325. .box-header:before,
  1326. .box-header:after {
  1327. content: " ";
  1328. display: table;
  1329. }
  1330. .box-header:after {
  1331. clear: both;
  1332. }
  1333. .box-header.with-border {
  1334. border-bottom: 1px solid #f4f4f4;
  1335. }
  1336. .collapsed-box .box-header.with-border {
  1337. border-bottom: none;
  1338. }
  1339. .box-header > .fa,
  1340. .box-header > .glyphicon,
  1341. .box-header > .ion,
  1342. .box-header .box-title {
  1343. display: inline-block;
  1344. font-size: 18px;
  1345. margin: 0;
  1346. line-height: 1;
  1347. }
  1348. .box-header > .fa,
  1349. .box-header > .glyphicon,
  1350. .box-header > .ion {
  1351. margin-right: 5px;
  1352. }
  1353. .box-header > .box-tools {
  1354. position: absolute;
  1355. right: 10px;
  1356. top: 5px;
  1357. }
  1358. .box-header > .box-tools [data-toggle="tooltip"] {
  1359. position: relative;
  1360. }
  1361. .box-header > .box-tools.pull-right .dropdown-menu {
  1362. right: 0;
  1363. left: auto;
  1364. }
  1365. .btn-box-tool {
  1366. padding: 5px;
  1367. font-size: 12px;
  1368. background: transparent;
  1369. box-shadow: none!important;
  1370. color: #97a0b3;
  1371. }
  1372. .open .btn-box-tool,
  1373. .btn-box-tool:hover {
  1374. color: #606c84;
  1375. }
  1376. .btn-box-tool:active {
  1377. outline: none!important;
  1378. }
  1379. .box-body {
  1380. border-top-left-radius: 0;
  1381. border-top-right-radius: 0;
  1382. border-bottom-right-radius: 3px;
  1383. border-bottom-left-radius: 3px;
  1384. padding: 10px;
  1385. }
  1386. .no-header .box-body {
  1387. border-top-right-radius: 3px;
  1388. border-top-left-radius: 3px;
  1389. }
  1390. .box-body > .table {
  1391. margin-bottom: 0;
  1392. }
  1393. .box-body > .chart {
  1394. position: relative;
  1395. overflow: hidden;
  1396. width: 100%;
  1397. }
  1398. .box-body > .chart svg,
  1399. .box-body > .chart canvas {
  1400. width: 100%!important;
  1401. }
  1402. .box-body .fc {
  1403. margin-top: 5px;
  1404. }
  1405. .box-body .full-width-chart {
  1406. margin: -19px;
  1407. }
  1408. .box-body.no-padding .full-width-chart {
  1409. margin: -9px;
  1410. }
  1411. .box-body .box-pane {
  1412. border-top-left-radius: 0;
  1413. border-top-right-radius: 0;
  1414. border-bottom-right-radius: 0;
  1415. border-bottom-left-radius: 3px;
  1416. }
  1417. .box-body .box-pane-right {
  1418. border-top-left-radius: 0;
  1419. border-top-right-radius: 0;
  1420. border-bottom-right-radius: 3px;
  1421. border-bottom-left-radius: 0;
  1422. }
  1423. .box-footer {
  1424. border-top-left-radius: 0;
  1425. border-top-right-radius: 0;
  1426. border-bottom-right-radius: 3px;
  1427. border-bottom-left-radius: 3px;
  1428. border-top: 1px solid #f4f4f4;
  1429. padding: 10px;
  1430. background-color: #ffffff;
  1431. }
  1432. .chart-legend {
  1433. margin: 10px 0;
  1434. }
  1435. @media (max-width: 991px) {
  1436. .chart-legend > li {
  1437. float: left;
  1438. margin-right: 10px;
  1439. }
  1440. }
  1441. /* Widget: TODO LIST */
  1442. .todo-list {
  1443. margin: 0;
  1444. padding: 0px 0px;
  1445. list-style: none;
  1446. overflow: auto;
  1447. }
  1448. .todo-list > li {
  1449. border-radius: 2px;
  1450. padding: 10px;
  1451. background: #f3f4f5;
  1452. margin-bottom: 2px;
  1453. border-left: 2px solid #e6e7e8;
  1454. color: #444;
  1455. }
  1456. .todo-list > li:last-of-type {
  1457. margin-bottom: 0;
  1458. }
  1459. .todo-list > li.danger {
  1460. border-left-color: #dd4b39;
  1461. }
  1462. .todo-list > li.warning {
  1463. border-left-color: #f39c12;
  1464. }
  1465. .todo-list > li.info {
  1466. border-left-color: #00c0ef;
  1467. }
  1468. .todo-list > li.success {
  1469. border-left-color: #00a65a;
  1470. }
  1471. .todo-list > li.primary {
  1472. border-left-color: #3c8dbc;
  1473. }
  1474. .todo-list > li > input[type='checkbox'] {
  1475. margin: 0 10px 0 5px;
  1476. }
  1477. .todo-list > li .text {
  1478. display: inline-block;
  1479. margin-left: 5px;
  1480. font-weight: 600;
  1481. }
  1482. .todo-list > li .label {
  1483. margin-left: 10px;
  1484. font-size: 9px;
  1485. }
  1486. .todo-list > li .tools {
  1487. display: none;
  1488. float: right;
  1489. color: #dd4b39;
  1490. }
  1491. .todo-list > li .tools > .fa,
  1492. .todo-list > li .tools > .glyphicon,
  1493. .todo-list > li .tools > .ion {
  1494. margin-right: 5px;
  1495. cursor: pointer;
  1496. }
  1497. .todo-list > li:hover .tools {
  1498. display: inline-block;
  1499. }
  1500. .todo-list > li.done {
  1501. color: #999;
  1502. }
  1503. .todo-list > li.done .text {
  1504. text-decoration: line-through;
  1505. font-weight: 500;
  1506. }
  1507. .todo-list > li.done .label {
  1508. background: #d2d6de !important;
  1509. }
  1510. .todo-list .handle {
  1511. display: inline-block;
  1512. cursor: move;
  1513. margin: 0 5px;
  1514. }
  1515. /* Chat widget (DEPRECATED - this will be removed in the next major release. Use Direct Chat instead)*/
  1516. .chat {
  1517. padding: 5px 20px 5px 10px;
  1518. }
  1519. .chat .item {
  1520. margin-bottom: 10px;
  1521. }
  1522. .chat .item:before,
  1523. .chat .item:after {
  1524. content: " ";
  1525. display: table;
  1526. }
  1527. .chat .item:after {
  1528. clear: both;
  1529. }
  1530. .chat .item > img {
  1531. width: 40px;
  1532. height: 40px;
  1533. border: 2px solid transparent;
  1534. border-radius: 50% !important;
  1535. }
  1536. .chat .item > img.online {
  1537. border: 2px solid #00a65a;
  1538. }
  1539. .chat .item > img.offline {
  1540. border: 2px solid #dd4b39;
  1541. }
  1542. .chat .item > .message {
  1543. margin-left: 55px;
  1544. margin-top: -40px;
  1545. }
  1546. .chat .item > .message > .name {
  1547. display: block;
  1548. font-weight: 600;
  1549. }
  1550. .chat .item > .attachment {
  1551. border-radius: 3px;
  1552. background: #f0f0f0;
  1553. margin-left: 65px;
  1554. margin-right: 15px;
  1555. padding: 10px;
  1556. }
  1557. .chat .item > .attachment > h4 {
  1558. margin: 0 0 5px 0;
  1559. font-weight: 600;
  1560. font-size: 14px;
  1561. }
  1562. .chat .item > .attachment > p,
  1563. .chat .item > .attachment > .filename {
  1564. font-weight: 600;
  1565. font-size: 13px;
  1566. font-style: italic;
  1567. margin: 0;
  1568. }
  1569. .chat .item > .attachment:before,
  1570. .chat .item > .attachment:after {
  1571. content: " ";
  1572. display: table;
  1573. }
  1574. .chat .item > .attachment:after {
  1575. clear: both;
  1576. }
  1577. /*
  1578. * Component: Info Box
  1579. * -------------------
  1580. */
  1581. .info-box {
  1582. display: block;
  1583. min-height: 90px;
  1584. background: #fff;
  1585. width: 100%;
  1586. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  1587. border-radius: 2px;
  1588. margin-bottom: 15px;
  1589. }
  1590. .info-box small {
  1591. font-size: 14px;
  1592. }
  1593. .info-box .progress {
  1594. background: rgba(0, 0, 0, 0.2);
  1595. margin: 5px -10px 5px -10px;
  1596. height: 2px;
  1597. }
  1598. .info-box .progress,
  1599. .info-box .progress .progress-bar {
  1600. border-radius: 0;
  1601. }
  1602. .info-box .progress .progress-bar {
  1603. background: #fff;
  1604. }
  1605. .info-box-icon {
  1606. border-top-left-radius: 2px;
  1607. border-top-right-radius: 0;
  1608. border-bottom-right-radius: 0;
  1609. border-bottom-left-radius: 2px;
  1610. display: block;
  1611. float: left;
  1612. height: 90px;
  1613. width: 90px;
  1614. text-align: center;
  1615. font-size: 45px;
  1616. line-height: 90px;
  1617. background: rgba(0, 0, 0, 0.2);
  1618. }
  1619. .info-box-content {
  1620. padding: 5px 10px;
  1621. margin-left: 90px;
  1622. }
  1623. .info-box-number {
  1624. display: block;
  1625. font-weight: bold;
  1626. font-size: 18px;
  1627. }
  1628. .info-box-text {
  1629. display: block;
  1630. text-transform: uppercase;
  1631. font-size: 14px;
  1632. white-space: nowrap;
  1633. }
  1634. .info-box-more {
  1635. display: block;
  1636. }
  1637. .progress-description {
  1638. margin: 0;
  1639. display: block;
  1640. font-size: 14px;
  1641. text-align: center;
  1642. }
  1643. /*
  1644. * Component: Timeline
  1645. * -------------------
  1646. */
  1647. .timeline {
  1648. position: relative;
  1649. margin: 0 0 30px 0;
  1650. padding: 0;
  1651. list-style: none;
  1652. }
  1653. .timeline:before {
  1654. content: '';
  1655. position: absolute;
  1656. top: 0px;
  1657. bottom: 0;
  1658. width: 5px;
  1659. background: #ddd;
  1660. left: 30px;
  1661. border: 1px solid #eee;
  1662. margin: 0;
  1663. border-radius: 2px;
  1664. }
  1665. .timeline > li {
  1666. position: relative;
  1667. margin-right: 10px;
  1668. margin-bottom: 15px;
  1669. }
  1670. .timeline > li:before,
  1671. .timeline > li:after {
  1672. content: " ";
  1673. display: table;
  1674. }
  1675. .timeline > li:after {
  1676. clear: both;
  1677. }
  1678. .timeline > li > .timeline-item {
  1679. margin-top: 10px;
  1680. border: 0px solid #dfdfdf;
  1681. background: #fff;
  1682. color: #555;
  1683. margin-left: 60px;
  1684. margin-right: 15px;
  1685. padding: 5px;
  1686. position: relative;
  1687. box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
  1688. }
  1689. .timeline > li > .timeline-item > .time {
  1690. color: #999;
  1691. float: right;
  1692. margin: 2px 0 0 0;
  1693. }
  1694. .timeline > li > .timeline-item > .timeline-header {
  1695. margin: 0;
  1696. color: #555;
  1697. border-bottom: 1px solid #f4f4f4;
  1698. padding: 5px;
  1699. font-size: 16px;
  1700. line-height: 1.1;
  1701. }
  1702. .timeline > li > .timeline-item > .timeline-header > a {
  1703. font-weight: 600;
  1704. }
  1705. .timeline > li > .timeline-item > .timeline-body,
  1706. .timeline > li > .timeline-item > .timeline-footer {
  1707. padding: 10px;
  1708. }
  1709. .timeline > li.time-label > span {
  1710. font-weight: 600;
  1711. padding: 5px;
  1712. display: inline-block;
  1713. background-color: #fff;
  1714. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  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: Button
  1735. * -----------------
  1736. */
  1737. .btn {
  1738. border-radius: 3px;
  1739. -webkit-box-shadow: none;
  1740. box-shadow: none;
  1741. border: 1px solid transparent;
  1742. }
  1743. .btn.uppercase {
  1744. text-transform: uppercase;
  1745. }
  1746. .btn.btn-flat {
  1747. border-radius: 0;
  1748. -webkit-box-shadow: none;
  1749. -moz-box-shadow: none;
  1750. box-shadow: none;
  1751. border-width: 1px;
  1752. }
  1753. .btn:active {
  1754. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  1755. -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  1756. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  1757. }
  1758. .btn:focus {
  1759. outline: none;
  1760. }
  1761. .btn.btn-file {
  1762. position: relative;
  1763. overflow: hidden;
  1764. }
  1765. .btn.btn-file > input[type='file'] {
  1766. position: absolute;
  1767. top: 0;
  1768. right: 0;
  1769. min-width: 100%;
  1770. min-height: 100%;
  1771. font-size: 100px;
  1772. text-align: right;
  1773. opacity: 0;
  1774. filter: alpha(opacity=0);
  1775. outline: none;
  1776. background: white;
  1777. cursor: inherit;
  1778. display: block;
  1779. }
  1780. .btn-default {
  1781. background-color: #f4f4f4;
  1782. color: #444;
  1783. border-color: #ddd;
  1784. }
  1785. .btn-default:hover,
  1786. .btn-default:active,
  1787. .btn-default.hover {
  1788. background-color: #e9e9e9!important;
  1789. }
  1790. .btn-primary {
  1791. background-color: #3c8dbc;
  1792. border-color: #367fa9;
  1793. }
  1794. .btn-primary:hover,
  1795. .btn-primary:active,
  1796. .btn-primary.hover {
  1797. background-color: #367fa9;
  1798. }
  1799. .btn-success {
  1800. background-color: #00a65a;
  1801. border-color: #008d4c;
  1802. }
  1803. .btn-success:hover,
  1804. .btn-success:active,
  1805. .btn-success.hover {
  1806. background-color: #008d4c;
  1807. }
  1808. .btn-info {
  1809. background-color: #00c0ef;
  1810. border-color: #00acd6;
  1811. }
  1812. .btn-info:hover,
  1813. .btn-info:active,
  1814. .btn-info.hover {
  1815. background-color: #00acd6;
  1816. }
  1817. .btn-danger {
  1818. background-color: #dd4b39;
  1819. border-color: #d73925;
  1820. }
  1821. .btn-danger:hover,
  1822. .btn-danger:active,
  1823. .btn-danger.hover {
  1824. background-color: #d73925;
  1825. }
  1826. .btn-warning {
  1827. background-color: #f39c12;
  1828. border-color: #e08e0b;
  1829. }
  1830. .btn-warning:hover,
  1831. .btn-warning:active,
  1832. .btn-warning.hover {
  1833. background-color: #e08e0b;
  1834. }
  1835. .btn-outline {
  1836. border: 1px solid #fff;
  1837. background: transparent;
  1838. color: #fff;
  1839. }
  1840. .btn-outline:hover,
  1841. .btn-outline:focus,
  1842. .btn-outline:active {
  1843. color: rgba(255, 255, 255, 0.7);
  1844. border-color: rgba(255, 255, 255, 0.7);
  1845. }
  1846. .btn-link {
  1847. -webkit-box-shadow: none;
  1848. box-shadow: none;
  1849. }
  1850. .btn[class*='bg-']:hover {
  1851. -webkit-box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
  1852. box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.2);
  1853. }
  1854. .btn-app {
  1855. border-radius: 3px;
  1856. position: relative;
  1857. padding: 15px 5px;
  1858. margin: 0 0 10px 10px;
  1859. min-width: 80px;
  1860. height: 60px;
  1861. text-align: center;
  1862. color: #666;
  1863. border: 1px solid #ddd;
  1864. background-color: #f4f4f4;
  1865. font-size: 12px;
  1866. }
  1867. .btn-app > .fa,
  1868. .btn-app > .glyphicon,
  1869. .btn-app > .ion {
  1870. font-size: 20px;
  1871. display: block;
  1872. }
  1873. .btn-app:hover {
  1874. background: #f4f4f4;
  1875. color: #444;
  1876. border-color: #aaa;
  1877. }
  1878. .btn-app:active,
  1879. .btn-app:focus {
  1880. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  1881. -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  1882. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  1883. }
  1884. .btn-app > .badge {
  1885. position: absolute;
  1886. top: -3px;
  1887. right: -10px;
  1888. font-size: 10px;
  1889. font-weight: 400;
  1890. }
  1891. /*
  1892. * Component: Callout
  1893. * ------------------
  1894. */
  1895. .callout {
  1896. border-radius: 3px;
  1897. margin: 0 0 20px 0;
  1898. padding: 15px 30px 15px 15px;
  1899. border-left: 5px solid #eee;
  1900. }
  1901. .callout a {
  1902. color: #fff;
  1903. text-decoration: underline;
  1904. }
  1905. .callout a:hover {
  1906. color: #eee;
  1907. }
  1908. .callout h4 {
  1909. margin-top: 0;
  1910. font-weight: 600;
  1911. }
  1912. .callout p:last-child {
  1913. margin-bottom: 0;
  1914. }
  1915. .callout code,
  1916. .callout .highlight {
  1917. background-color: #fff;
  1918. }
  1919. .callout.callout-danger {
  1920. border-color: #c23321;
  1921. }
  1922. .callout.callout-warning {
  1923. border-color: #c87f0a;
  1924. }
  1925. .callout.callout-info {
  1926. border-color: #0097bc;
  1927. }
  1928. .callout.callout-success {
  1929. border-color: #00733e;
  1930. }
  1931. /*
  1932. * Component: alert
  1933. * ----------------
  1934. */
  1935. .alert {
  1936. border-radius: 3px;
  1937. }
  1938. .alert h4 {
  1939. font-weight: 600;
  1940. }
  1941. .alert .icon {
  1942. margin-right: 10px;
  1943. }
  1944. .alert .close {
  1945. color: #fff;
  1946. opacity: 0.7;
  1947. filter: alpha(opacity=70);
  1948. }
  1949. .alert-success {
  1950. border-color: #008d4c;
  1951. }
  1952. .alert-danger,
  1953. .alert-error {
  1954. border-color: #d73925;
  1955. }
  1956. .alert-warning {
  1957. border-color: #e08e0b;
  1958. }
  1959. .alert-info {
  1960. border-color: #00acd6;
  1961. }
  1962. /*
  1963. * Component: Nav
  1964. * --------------
  1965. */
  1966. /* NAV PILLS */
  1967. .nav.nav-pills > li > a {
  1968. border-top: 3px solid transparent;
  1969. border-radius: 0;
  1970. color: #444;
  1971. }
  1972. .nav.nav-pills > li > a > .fa,
  1973. .nav.nav-pills > li > a > .glyphicon,
  1974. .nav.nav-pills > li > a > .ion {
  1975. margin-right: 5px;
  1976. }
  1977. .nav.nav-pills > li.active > a,
  1978. .nav.nav-pills > li.active > a:hover {
  1979. background-color: #f6f6f6;
  1980. border-top-color: #3c8dbc;
  1981. color: #444;
  1982. }
  1983. .nav.nav-pills > li.active > a {
  1984. font-weight: 600;
  1985. }
  1986. .nav.nav-pills > li > a:hover {
  1987. background-color: #f6f6f6;
  1988. }
  1989. .nav.nav-pills.nav-stacked > li > a {
  1990. border-top: 0;
  1991. border-left: 3px solid transparent;
  1992. border-radius: 0;
  1993. color: #444;
  1994. }
  1995. .nav.nav-pills.nav-stacked > li.active > a,
  1996. .nav.nav-pills.nav-stacked > li.active > a:hover {
  1997. background-color: #f6f6f6;
  1998. border-left-color: #3c8dbc;
  1999. color: #444;
  2000. }
  2001. .nav.nav-pills.nav-stacked > li.header {
  2002. border-bottom: 1px solid #ddd;
  2003. color: #777;
  2004. margin-bottom: 10px;
  2005. padding: 5px 10px;
  2006. text-transform: uppercase;
  2007. }
  2008. /* NAV TABS */
  2009. .nav-tabs-custom {
  2010. margin-bottom: 20px;
  2011. background: #fff;
  2012. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  2013. border-radius: 3px;
  2014. }
  2015. .nav-tabs-custom > .nav-tabs {
  2016. margin: 0;
  2017. border-bottom-color: #f4f4f4;
  2018. border-top-right-radius: 3px;
  2019. border-top-left-radius: 3px;
  2020. }
  2021. .nav-tabs-custom > .nav-tabs > li {
  2022. border-top: 3px solid transparent;
  2023. margin-bottom: -2px;
  2024. margin-right: 5px;
  2025. }
  2026. .nav-tabs-custom > .nav-tabs > li > a {
  2027. border-radius: 0 !important;
  2028. }
  2029. .nav-tabs-custom > .nav-tabs > li > a,
  2030. .nav-tabs-custom > .nav-tabs > li > a:hover {
  2031. background: transparent;
  2032. margin: 0;
  2033. }
  2034. .nav-tabs-custom > .nav-tabs > li:not(.active) > a:hover,
  2035. .nav-tabs-custom > .nav-tabs > li:not(.active) > a:focus,
  2036. .nav-tabs-custom > .nav-tabs > li:not(.active) > a:active {
  2037. border-color: transparent;
  2038. }
  2039. .nav-tabs-custom > .nav-tabs > li.active {
  2040. border-top-color: #3c8dbc;
  2041. }
  2042. .nav-tabs-custom > .nav-tabs > li.active > a,
  2043. .nav-tabs-custom > .nav-tabs > li.active:hover > a {
  2044. background-color: #fff;
  2045. }
  2046. .nav-tabs-custom > .nav-tabs > li.active > a {
  2047. border-top: 0;
  2048. border-left-color: #f4f4f4;
  2049. border-right-color: #f4f4f4;
  2050. }
  2051. .nav-tabs-custom > .nav-tabs > li:first-of-type {
  2052. margin-left: 0;
  2053. }
  2054. .nav-tabs-custom > .nav-tabs > li:first-of-type.active > a {
  2055. border-left-width: 0;
  2056. }
  2057. .nav-tabs-custom > .nav-tabs.pull-right {
  2058. float: none!important;
  2059. }
  2060. .nav-tabs-custom > .nav-tabs.pull-right > li {
  2061. float: right;
  2062. }
  2063. .nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type {
  2064. margin-right: 0;
  2065. }
  2066. .nav-tabs-custom > .nav-tabs.pull-right > li:first-of-type.active > a {
  2067. border-left-width: 1px;
  2068. border-right-width: 0;
  2069. }
  2070. .nav-tabs-custom > .nav-tabs > li.header {
  2071. line-height: 35px;
  2072. padding: 0 10px;
  2073. font-size: 20px;
  2074. color: #444;
  2075. }
  2076. .nav-tabs-custom > .nav-tabs > li.header > .fa,
  2077. .nav-tabs-custom > .nav-tabs > li.header > .glyphicon,
  2078. .nav-tabs-custom > .nav-tabs > li.header > .ion {
  2079. margin-right: 5px;
  2080. }
  2081. .nav-tabs-custom > .tab-content {
  2082. background: #fff;
  2083. padding: 10px;
  2084. border-bottom-right-radius: 3px;
  2085. border-bottom-left-radius: 3px;
  2086. }
  2087. /* Nav tabs bottom */
  2088. .tabs-bottom.nav-3 li a {
  2089. width: 3333.33333333% !important;
  2090. }
  2091. .tabs-bottom li a {
  2092. border: 0;
  2093. }
  2094. /* PAGINATION */
  2095. .pagination > li > a {
  2096. background: #fafafa;
  2097. color: #666;
  2098. }
  2099. .pagination > li:first-of-type a,
  2100. .pagination > li:last-of-type a {
  2101. border-radius: 0;
  2102. }
  2103. /*
  2104. * Component: Products List
  2105. * ------------------------
  2106. */
  2107. .products-list {
  2108. list-style: none;
  2109. margin: 0;
  2110. padding: 0;
  2111. }
  2112. .products-list > .item {
  2113. border-radius: 3px;
  2114. -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  2115. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  2116. padding: 10px 0;
  2117. background: #fff;
  2118. }
  2119. .products-list > .item:before,
  2120. .products-list > .item:after {
  2121. content: " ";
  2122. display: table;
  2123. }
  2124. .products-list > .item:after {
  2125. clear: both;
  2126. }
  2127. .products-list .product-img {
  2128. float: left;
  2129. }
  2130. .products-list .product-img img {
  2131. width: 50px;
  2132. height: 50px;
  2133. }
  2134. .products-list .product-info {
  2135. margin-left: 60px;
  2136. }
  2137. .products-list .product-title {
  2138. font-weight: 600;
  2139. }
  2140. .products-list .product-description {
  2141. display: block;
  2142. color: #999;
  2143. }
  2144. .product-list-in-box > .item {
  2145. -webkit-box-shadow: none;
  2146. box-shadow: none;
  2147. border-radius: 0;
  2148. border-bottom: 1px solid #f4f4f4;
  2149. }
  2150. .product-list-in-box > .item:last-of-type {
  2151. border-bottom-width: 0;
  2152. }
  2153. /*
  2154. * Component: Table
  2155. * ----------------
  2156. */
  2157. .table tr td .progress {
  2158. margin-top: 5px;
  2159. }
  2160. .table.no-border,
  2161. .table.no-border td,
  2162. .table.no-border th {
  2163. border: 0;
  2164. }
  2165. /* .text-center in tables */
  2166. table.text-center,
  2167. table.text-center td,
  2168. table.text-center th {
  2169. text-align: center;
  2170. }
  2171. .table.align th {
  2172. text-align: left;
  2173. }
  2174. .table.align td {
  2175. text-align: right;
  2176. }
  2177. /*
  2178. * Component: Label
  2179. * ----------------
  2180. */
  2181. /*
  2182. * Component: Direct Chat
  2183. * ----------------------
  2184. */
  2185. .direct-chat .box-body {
  2186. border-bottom-right-radius: 0;
  2187. border-bottom-left-radius: 0;
  2188. position: relative;
  2189. overflow-x: hidden;
  2190. padding: 0;
  2191. }
  2192. .direct-chat.chat-pane-open .direct-chat-contacts {
  2193. -webkit-transform: translate(0, 0);
  2194. -ms-transform: translate(0, 0);
  2195. -o-transform: translate(0, 0);
  2196. transform: translate(0, 0);
  2197. }
  2198. .direct-chat-messages {
  2199. -webkit-transform: translate(0, 0);
  2200. -ms-transform: translate(0, 0);
  2201. -o-transform: translate(0, 0);
  2202. transform: translate(0, 0);
  2203. padding: 10px;
  2204. height: 250px;
  2205. overflow: auto;
  2206. }
  2207. .direct-chat-msg,
  2208. .direct-chat-text {
  2209. display: block;
  2210. }
  2211. .direct-chat-msg {
  2212. margin-bottom: 10px;
  2213. }
  2214. .direct-chat-msg:before,
  2215. .direct-chat-msg:after {
  2216. content: " ";
  2217. display: table;
  2218. }
  2219. .direct-chat-msg:after {
  2220. clear: both;
  2221. }
  2222. .direct-chat-messages,
  2223. .direct-chat-contacts {
  2224. -webkit-transition: transform 0.5s ease;
  2225. -o-transition: transform 0.5s ease;
  2226. transition: transform 0.5s ease;
  2227. }
  2228. .direct-chat-text {
  2229. border-radius: 5px;
  2230. position: relative;
  2231. padding: 5px 10px;
  2232. background: #d2d6de;
  2233. border: 1px solid #d2d6de;
  2234. margin: 5px 0 0 50px;
  2235. color: #444444;
  2236. }
  2237. .direct-chat-text:after,
  2238. .direct-chat-text:before {
  2239. position: absolute;
  2240. right: 100%;
  2241. top: 15px;
  2242. border: solid transparent;
  2243. border-right-color: #d2d6de;
  2244. content: ' ';
  2245. height: 0;
  2246. width: 0;
  2247. pointer-events: none;
  2248. }
  2249. .direct-chat-text:after {
  2250. border-width: 5px;
  2251. margin-top: -5px;
  2252. }
  2253. .direct-chat-text:before {
  2254. border-width: 6px;
  2255. margin-top: -6px;
  2256. }
  2257. .right .direct-chat-text {
  2258. margin-right: 50px;
  2259. margin-left: 0;
  2260. }
  2261. .right .direct-chat-text:after,
  2262. .right .direct-chat-text:before {
  2263. right: auto;
  2264. left: 100%;
  2265. border-right-color: transparent;
  2266. border-left-color: #d2d6de;
  2267. }
  2268. .direct-chat-img {
  2269. border-radius: 50%;
  2270. float: left;
  2271. width: 40px;
  2272. height: 40px;
  2273. }
  2274. .right .direct-chat-img {
  2275. float: right;
  2276. }
  2277. .direct-chat-info {
  2278. display: block;
  2279. margin-bottom: 2px;
  2280. font-size: 12px;
  2281. }
  2282. .direct-chat-name {
  2283. font-weight: 600;
  2284. }
  2285. .direct-chat-timestamp {
  2286. color: #999;
  2287. }
  2288. .direct-chat-contacts-open {
  2289. /*.direct-chat-messages {
  2290. .translate(-101%, 0);
  2291. }*/
  2292. }
  2293. .direct-chat-contacts-open .direct-chat-contacts {
  2294. -webkit-transform: translate(0, 0);
  2295. -ms-transform: translate(0, 0);
  2296. -o-transform: translate(0, 0);
  2297. transform: translate(0, 0);
  2298. }
  2299. .direct-chat-contacts {
  2300. -webkit-transform: translate(101%, 0);
  2301. -ms-transform: translate(101%, 0);
  2302. -o-transform: translate(101%, 0);
  2303. transform: translate(101%, 0);
  2304. position: absolute;
  2305. top: 0;
  2306. bottom: 0;
  2307. height: 250px;
  2308. width: 100%;
  2309. background: #222d32;
  2310. color: #fff;
  2311. overflow: auto;
  2312. }
  2313. .contacts-list > li {
  2314. border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  2315. padding: 10px;
  2316. margin: 0;
  2317. }
  2318. .contacts-list > li:before,
  2319. .contacts-list > li:after {
  2320. content: " ";
  2321. display: table;
  2322. }
  2323. .contacts-list > li:after {
  2324. clear: both;
  2325. }
  2326. .contacts-list > li:last-of-type {
  2327. border-bottom: none;
  2328. }
  2329. .contacts-list-img {
  2330. border-radius: 50%;
  2331. width: 40px;
  2332. float: left;
  2333. }
  2334. .contacts-list-info {
  2335. margin-left: 45px;
  2336. color: #fff;
  2337. }
  2338. .contacts-list-name,
  2339. .contacts-list-status {
  2340. display: block;
  2341. }
  2342. .contacts-list-name {
  2343. font-weight: 600;
  2344. }
  2345. .contacts-list-status {
  2346. font-size: 12px;
  2347. }
  2348. .contacts-list-date {
  2349. color: #aaa;
  2350. font-weight: normal;
  2351. }
  2352. .contacts-list-msg {
  2353. color: #999;
  2354. }
  2355. .direct-chat-danger .right > .direct-chat-text {
  2356. background: #dd4b39;
  2357. border-color: #dd4b39;
  2358. color: #ffffff;
  2359. }
  2360. .direct-chat-danger .right > .direct-chat-text:after,
  2361. .direct-chat-danger .right > .direct-chat-text:before {
  2362. border-left-color: #dd4b39;
  2363. }
  2364. .direct-chat-primary .right > .direct-chat-text {
  2365. background: #3c8dbc;
  2366. border-color: #3c8dbc;
  2367. color: #ffffff;
  2368. }
  2369. .direct-chat-primary .right > .direct-chat-text:after,
  2370. .direct-chat-primary .right > .direct-chat-text:before {
  2371. border-left-color: #3c8dbc;
  2372. }
  2373. .direct-chat-warning .right > .direct-chat-text {
  2374. background: #f39c12;
  2375. border-color: #f39c12;
  2376. color: #ffffff;
  2377. }
  2378. .direct-chat-warning .right > .direct-chat-text:after,
  2379. .direct-chat-warning .right > .direct-chat-text:before {
  2380. border-left-color: #f39c12;
  2381. }
  2382. .direct-chat-info .right > .direct-chat-text {
  2383. background: #00c0ef;
  2384. border-color: #00c0ef;
  2385. color: #ffffff;
  2386. }
  2387. .direct-chat-info .right > .direct-chat-text:after,
  2388. .direct-chat-info .right > .direct-chat-text:before {
  2389. border-left-color: #00c0ef;
  2390. }
  2391. .direct-chat-success .right > .direct-chat-text {
  2392. background: #00a65a;
  2393. border-color: #00a65a;
  2394. color: #ffffff;
  2395. }
  2396. .direct-chat-success .right > .direct-chat-text:after,
  2397. .direct-chat-success .right > .direct-chat-text:before {
  2398. border-left-color: #00a65a;
  2399. }
  2400. /*
  2401. * Component: Users List
  2402. * ---------------------
  2403. */
  2404. .users-list > li {
  2405. width: 25%;
  2406. float: left;
  2407. padding: 10px;
  2408. }
  2409. .users-list > li > img {
  2410. border-radius: 50%;
  2411. max-width: 100%;
  2412. height: auto;
  2413. }
  2414. .users-list-name,
  2415. .users-list-date {
  2416. display: block;
  2417. text-align: center;
  2418. }
  2419. .users-list-name {
  2420. font-weight: 600;
  2421. color: #444;
  2422. }
  2423. .users-list-name:hover {
  2424. color: #999;
  2425. }
  2426. .users-list-date {
  2427. color: #999;
  2428. font-size: 12px;
  2429. }
  2430. /*
  2431. * Component: Carousel
  2432. * -------------------
  2433. */
  2434. .carousel-control {
  2435. background-image: none!important;
  2436. }
  2437. .carousel-control > .fa {
  2438. font-size: 40px;
  2439. position: absolute;
  2440. top: 50%;
  2441. z-index: 5;
  2442. display: inline-block;
  2443. margin-top: -20px;
  2444. }
  2445. /*
  2446. * Component: modal
  2447. * ----------------
  2448. */
  2449. .modal {
  2450. background: rgba(0, 0, 0, 0.3);
  2451. }
  2452. .modal-content {
  2453. border-radius: 0;
  2454. -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125) !important;
  2455. box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125) !important;
  2456. border: 0;
  2457. }
  2458. @media (min-width: 768px) {
  2459. .modal-content {
  2460. -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125) !important;
  2461. box-shadow: 0 2px 3px rgba(0, 0, 0, 0.125) !important;
  2462. }
  2463. }
  2464. .modal-header {
  2465. border-bottom-color: #f4f4f4;
  2466. }
  2467. .modal-footer {
  2468. border-top-color: #f4f4f4;
  2469. }
  2470. .modal-primary .modal-header,
  2471. .modal-primary .modal-footer {
  2472. border-color: #307095;
  2473. }
  2474. .modal-warning .modal-header,
  2475. .modal-warning .modal-footer {
  2476. border-color: #c87f0a;
  2477. }
  2478. .modal-info .modal-header,
  2479. .modal-info .modal-footer {
  2480. border-color: #0097bc;
  2481. }
  2482. .modal-success .modal-header,
  2483. .modal-success .modal-footer {
  2484. border-color: #00733e;
  2485. }
  2486. .modal-danger .modal-header,
  2487. .modal-danger .modal-footer {
  2488. border-color: #c23321;
  2489. }
  2490. /*
  2491. * Page: Mailbox
  2492. * -------------
  2493. */
  2494. .mailbox .table-mailbox {
  2495. border-left: 1px solid #ddd;
  2496. border-right: 1px solid #ddd;
  2497. border-bottom: 1px solid #ddd;
  2498. }
  2499. .mailbox .table-mailbox tr.unread > td {
  2500. background-color: rgba(0, 0, 0, 0.05);
  2501. color: #000;
  2502. font-weight: 600;
  2503. }
  2504. .mailbox .table-mailbox tr > td > .fa.fa-star,
  2505. .mailbox .table-mailbox tr > td > .fa.fa-star-o,
  2506. .mailbox .table-mailbox tr > td > .glyphicon.glyphicon-star,
  2507. .mailbox .table-mailbox tr > td > .glyphicon.glyphicon-star-empty {
  2508. color: #f39c12;
  2509. cursor: pointer;
  2510. }
  2511. .mailbox .table-mailbox tr > td.small-col {
  2512. width: 30px;
  2513. }
  2514. .mailbox .table-mailbox tr > td.name {
  2515. width: 150px;
  2516. font-weight: 600;
  2517. }
  2518. .mailbox .table-mailbox tr > td.time {
  2519. text-align: right;
  2520. width: 100px;
  2521. }
  2522. .mailbox .table-mailbox tr > td {
  2523. white-space: nowrap;
  2524. }
  2525. .mailbox .table-mailbox tr > td > a {
  2526. color: #444;
  2527. }
  2528. @media screen and (max-width: 768px) {
  2529. .mailbox .nav-stacked > li:not(.header) {
  2530. float: left;
  2531. width: 50%;
  2532. }
  2533. .mailbox .nav-stacked > li:not(.header).header {
  2534. border: 0!important;
  2535. }
  2536. .mailbox .search-form {
  2537. margin-top: 10px;
  2538. }
  2539. }
  2540. /*
  2541. * Page: Lock Screen
  2542. * -----------------
  2543. */
  2544. /* ADD THIS CLASS TO THE <HTML> TAG */
  2545. .lockscreen {
  2546. background: url(../img/blur-background09.jpg) repeat center center fixed;
  2547. -webkit-background-size: cover;
  2548. -moz-background-size: cover;
  2549. -o-background-size: cover;
  2550. background-size: cover;
  2551. }
  2552. /* Remove the background from the body element */
  2553. .lockscreen > body {
  2554. background: transparent;
  2555. }
  2556. /* We will put the dynamically generated digital clock here */
  2557. .lockscreen .headline {
  2558. color: #fff;
  2559. text-shadow: 1px 3px 5px rgba(0, 0, 0, 0.5);
  2560. font-weight: 300;
  2561. -webkit-font-smoothing: antialiased !important;
  2562. opacity: 0.8;
  2563. margin: 10px 0 30px 0;
  2564. font-size: 90px;
  2565. }
  2566. @media screen and (max-width: 480px) {
  2567. .lockscreen .headline {
  2568. font-size: 60px;
  2569. margin-bottom: 40px;
  2570. }
  2571. }
  2572. /* User name [optional] */
  2573. .lockscreen .lockscreen-name {
  2574. text-align: center;
  2575. font-weight: 600;
  2576. font-size: 16px;
  2577. }
  2578. /* Will contain the image and the sign in form */
  2579. .lockscreen-item {
  2580. padding: 0;
  2581. background: #fff;
  2582. position: relative;
  2583. border-radius: 4px;
  2584. margin: 10px auto;
  2585. width: 290px;
  2586. }
  2587. .lockscreen-item:before,
  2588. .lockscreen-item:after {
  2589. content: " ";
  2590. display: table;
  2591. }
  2592. .lockscreen-item:after {
  2593. clear: both;
  2594. }
  2595. /* User image */
  2596. .lockscreen-item > .lockscreen-image {
  2597. position: absolute;
  2598. left: -10px;
  2599. top: -30px;
  2600. background: #fff;
  2601. padding: 10px;
  2602. border-radius: 50%;
  2603. z-index: 10;
  2604. }
  2605. .lockscreen-item > .lockscreen-image > img {
  2606. width: 70px;
  2607. height: 70px;
  2608. border-radius: 50%;
  2609. }
  2610. /* Contains the password input and the login button */
  2611. .lockscreen-item > .lockscreen-credentials {
  2612. margin-left: 80px;
  2613. }
  2614. .lockscreen-item > .lockscreen-credentials input {
  2615. border: 0 !important;
  2616. }
  2617. .lockscreen-item > .lockscreen-credentials .btn {
  2618. background-color: #fff;
  2619. border: 0;
  2620. }
  2621. /* Extra to give the user an option to navigate the website [optional]*/
  2622. .lockscreen-link {
  2623. margin-top: 30px;
  2624. text-align: center;
  2625. }
  2626. /*
  2627. * Page: Login & Register
  2628. * ----------------------
  2629. */
  2630. .form-box {
  2631. width: 360px;
  2632. margin: 90px auto 0 auto;
  2633. }
  2634. .form-box .header {
  2635. border-top-left-radius: 4px;
  2636. border-top-right-radius: 4px;
  2637. border-bottom-right-radius: 0;
  2638. border-bottom-left-radius: 0;
  2639. background: #3d9970;
  2640. box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.2);
  2641. padding: 20px 10px;
  2642. text-align: center;
  2643. font-size: 26px;
  2644. font-weight: 300;
  2645. color: #fff;
  2646. }
  2647. .form-box .body,
  2648. .form-box .footer {
  2649. padding: 10px 20px;
  2650. background: #fff;
  2651. color: #444;
  2652. }
  2653. .form-box .body > .form-group,
  2654. .form-box .footer > .form-group {
  2655. margin-top: 20px;
  2656. }
  2657. .form-box .body > .form-group > input,
  2658. .form-box .footer > .form-group > input {
  2659. border: #fff;
  2660. }
  2661. .form-box .body > .btn,
  2662. .form-box .footer > .btn {
  2663. margin-bottom: 10px;
  2664. }
  2665. .form-box .footer {
  2666. border-top-left-radius: 0;
  2667. border-top-right-radius: 0;
  2668. border-bottom-right-radius: 4px;
  2669. border-bottom-left-radius: 4px;
  2670. }
  2671. @media (max-width: 768px) {
  2672. .form-box {
  2673. width: 90%;
  2674. }
  2675. }
  2676. /*
  2677. * Page: 400 and 500 error pages
  2678. * ------------------------------
  2679. */
  2680. .error-page {
  2681. width: 600px;
  2682. margin: 20px auto 0 auto;
  2683. }
  2684. @media screen and (max-width: 768px) {
  2685. .error-page {
  2686. width: 100%;
  2687. }
  2688. }
  2689. .error-page > .headline {
  2690. float: left;
  2691. font-size: 100px;
  2692. font-weight: 300;
  2693. }
  2694. @media screen and (max-width: 768px) {
  2695. .error-page > .headline {
  2696. float: none;
  2697. text-align: center;
  2698. }
  2699. }
  2700. .error-page > .error-content {
  2701. margin-left: 190px;
  2702. display: block;
  2703. }
  2704. @media screen and (max-width: 768px) {
  2705. .error-page > .error-content {
  2706. margin-left: 0;
  2707. }
  2708. }
  2709. .error-page > .error-content > h3 {
  2710. font-weight: 300;
  2711. font-size: 25px;
  2712. }
  2713. @media screen and (max-width: 768px) {
  2714. .error-page > .error-content > h3 {
  2715. text-align: center;
  2716. }
  2717. }
  2718. /*
  2719. * Page: Invoice
  2720. * -------------
  2721. */
  2722. .invoice {
  2723. position: relative;
  2724. background: #fff;
  2725. border: 1px solid #f4f4f4;
  2726. padding: 20px;
  2727. margin: 10px 25px;
  2728. }
  2729. .invoice-title {
  2730. margin-top: 0;
  2731. }
  2732. /* Enhancement for printing */
  2733. @media print {
  2734. .invoice {
  2735. width: 100%;
  2736. border: 0;
  2737. margin: 0;
  2738. padding: 0;
  2739. }
  2740. .invoice-col {
  2741. float: left;
  2742. width: 33.3333333%;
  2743. }
  2744. .table-responsive {
  2745. overflow: auto;
  2746. }
  2747. .table-responsive > .table tr th,
  2748. .table-responsive > .table tr td {
  2749. white-space: normal!important;
  2750. }
  2751. }
  2752. /*
  2753. * Skin: Blue
  2754. * ----------
  2755. */
  2756. .skin-blue .main-header .navbar {
  2757. background-color: #3c8dbc;
  2758. }
  2759. .skin-blue .main-header .navbar .nav > li > a {
  2760. color: #ffffff;
  2761. }
  2762. .skin-blue .main-header .navbar .nav > li > a:hover,
  2763. .skin-blue .main-header .navbar .nav > li > a:active,
  2764. .skin-blue .main-header .navbar .nav > li > a:focus,
  2765. .skin-blue .main-header .navbar .nav .open > a,
  2766. .skin-blue .main-header .navbar .nav .open > a:hover,
  2767. .skin-blue .main-header .navbar .nav .open > a:focus {
  2768. background: rgba(0, 0, 0, 0.1);
  2769. color: #f6f6f6;
  2770. }
  2771. .skin-blue .main-header .navbar .navbar-custom-menu > .nav {
  2772. margin-right: 10px;
  2773. }
  2774. .skin-blue .main-header .navbar .sidebar-toggle {
  2775. color: #ffffff;
  2776. }
  2777. .skin-blue .main-header .navbar .sidebar-toggle:hover {
  2778. color: #f6f6f6;
  2779. background: rgba(0, 0, 0, 0.1);
  2780. }
  2781. .skin-blue .main-header .navbar .sidebar-toggle {
  2782. color: #fff;
  2783. }
  2784. .skin-blue .main-header .navbar .sidebar-toggle:hover {
  2785. background-color: #367fa9;
  2786. }
  2787. @media (max-width: 767px) {
  2788. .skin-blue .main-header .navbar .dropdown-menu li.divider {
  2789. background-color: rgba(255, 255, 255, 0.1);
  2790. }
  2791. .skin-blue .main-header .navbar .dropdown-menu li a {
  2792. color: #fff;
  2793. }
  2794. .skin-blue .main-header .navbar .dropdown-menu li a:hover {
  2795. background: #367fa9;
  2796. }
  2797. }
  2798. .skin-blue .main-header .logo {
  2799. background-color: #367fa9;
  2800. color: #ffffff;
  2801. border-bottom: 1px solid transparent;
  2802. }
  2803. .skin-blue .main-header .logo > a {
  2804. color: #ffffff;
  2805. }
  2806. .skin-blue .main-header .logo:hover {
  2807. background: #357ca5;
  2808. }
  2809. .skin-blue .main-header li.user-header {
  2810. background-color: #3c8dbc;
  2811. }
  2812. .skin-blue .content-header {
  2813. background: transparent;
  2814. }
  2815. .skin-blue .user-panel > .info,
  2816. .skin-blue .user-panel > .info > a {
  2817. color: #fff;
  2818. }
  2819. .skin-blue .sidebar-menu > li.header {
  2820. color: #4b646f;
  2821. background: #1a2226;
  2822. }
  2823. .skin-blue .sidebar-menu > li > a {
  2824. border-left: 3px solid transparent;
  2825. margin-right: 1px;
  2826. }
  2827. .skin-blue .sidebar-menu > li > a:hover,
  2828. .skin-blue .sidebar-menu > li.active > a {
  2829. color: #ffffff;
  2830. background: #1e282c;
  2831. border-left-color: #3c8dbc;
  2832. }
  2833. .skin-blue .sidebar-menu > li > .treeview-menu {
  2834. margin: 0 1px;
  2835. background: #2c3b41;
  2836. }
  2837. .skin-blue .wrapper,
  2838. .skin-blue .main-sidebar,
  2839. .skin-blue .left-side {
  2840. background: #222d32;
  2841. }
  2842. .skin-blue .sidebar a {
  2843. color: #b8c7ce;
  2844. }
  2845. .skin-blue .sidebar a:hover {
  2846. text-decoration: none;
  2847. }
  2848. .skin-blue .treeview-menu > li > a {
  2849. color: #8aa4af;
  2850. }
  2851. .skin-blue .treeview-menu > li.active > a,
  2852. .skin-blue .treeview-menu > li > a:hover {
  2853. color: #ffffff;
  2854. }
  2855. .skin-blue .sidebar-form {
  2856. border-radius: 3px;
  2857. border: 1px solid #374850;
  2858. margin: 10px 10px;
  2859. }
  2860. .skin-blue .sidebar-form input[type="text"],
  2861. .skin-blue .sidebar-form .btn {
  2862. box-shadow: none;
  2863. background-color: #374850;
  2864. border: 1px solid transparent;
  2865. height: 35px;
  2866. -webkit-transition: all 0.3s ease;
  2867. -o-transition: all 0.3s ease;
  2868. transition: all 0.3s ease;
  2869. }
  2870. .skin-blue .sidebar-form input[type="text"] {
  2871. color: #666;
  2872. border-top-left-radius: 2px !important;
  2873. border-top-right-radius: 0 !important;
  2874. border-bottom-right-radius: 0 !important;
  2875. border-bottom-left-radius: 2px !important;
  2876. }
  2877. .skin-blue .sidebar-form input[type="text"]:focus,
  2878. .skin-blue .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  2879. background-color: #fff;
  2880. color: #666;
  2881. }
  2882. .skin-blue .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  2883. border-left-color: #fff;
  2884. }
  2885. .skin-blue .sidebar-form .btn {
  2886. color: #999;
  2887. border-top-left-radius: 0 !important;
  2888. border-top-right-radius: 2px !important;
  2889. border-bottom-right-radius: 2px !important;
  2890. border-bottom-left-radius: 0 !important;
  2891. }
  2892. /*
  2893. * Skin: Black
  2894. * -----------
  2895. */
  2896. /* skin-black navbar */
  2897. .skin-black .main-header .navbar-toggle {
  2898. color: #333;
  2899. }
  2900. .skin-black .main-header > .navbar {
  2901. background-color: #ffffff;
  2902. }
  2903. .skin-black .main-header > .navbar .nav > li > a {
  2904. color: #333333;
  2905. }
  2906. .skin-black .main-header > .navbar .nav > li > a:hover,
  2907. .skin-black .main-header > .navbar .nav > li > a:active,
  2908. .skin-black .main-header > .navbar .nav > li > a:focus,
  2909. .skin-black .main-header > .navbar .nav .open > a,
  2910. .skin-black .main-header > .navbar .nav .open > a:hover,
  2911. .skin-black .main-header > .navbar .nav .open > a:focus {
  2912. background: #ffffff;
  2913. color: #999999;
  2914. }
  2915. .skin-black .main-header > .navbar .navbar-custom-menu > .nav {
  2916. margin-right: 10px;
  2917. }
  2918. .skin-black .main-header > .navbar .sidebar-toggle {
  2919. color: #333333;
  2920. }
  2921. .skin-black .main-header > .navbar .sidebar-toggle:hover {
  2922. color: #999999;
  2923. background: #ffffff;
  2924. }
  2925. .skin-black .main-header > .navbar > .sidebar-toggle {
  2926. color: #333;
  2927. border-right: 1px solid #eee;
  2928. }
  2929. .skin-black .main-header > .navbar .navbar-nav > li > a {
  2930. border-right: 1px solid #eee;
  2931. }
  2932. .skin-black .main-header > .navbar .navbar-custom-menu .navbar-nav > li > a,
  2933. .skin-black .main-header > .navbar .navbar-right > li > a {
  2934. border-left: 1px solid #eee;
  2935. border-right-width: 0;
  2936. }
  2937. .skin-black .main-header > .logo {
  2938. background-color: #ffffff;
  2939. color: #333333;
  2940. border-bottom: 1px solid transparent;
  2941. border-right: 1px solid #eee;
  2942. }
  2943. .skin-black .main-header > .logo > a {
  2944. color: #333333;
  2945. }
  2946. .skin-black .main-header > .logo:hover {
  2947. background: #fcfcfc;
  2948. }
  2949. @media (max-width: 767px) {
  2950. .skin-black .main-header > .logo {
  2951. background-color: #222222;
  2952. color: #ffffff;
  2953. border-bottom: 1px solid transparent;
  2954. border-right: none;
  2955. }
  2956. .skin-black .main-header > .logo > a {
  2957. color: #ffffff;
  2958. }
  2959. .skin-black .main-header > .logo:hover {
  2960. background: #1f1f1f;
  2961. }
  2962. }
  2963. .skin-black .main-header > .logo,
  2964. .skin-black .main-header > .navbar {
  2965. -webkit-box-shadow: 2px 1px 2px rgba(0, 0, 0, 0.1);
  2966. box-shadow: 2px 1px 2px rgba(0, 0, 0, 0.1);
  2967. }
  2968. .skin-black .main-header li.user-header {
  2969. background-color: #222;
  2970. }
  2971. .skin-black .content-header {
  2972. background: transparent;
  2973. box-shadow: none;
  2974. }
  2975. .skin-black .user-panel > .image > img {
  2976. border: 1px solid #444;
  2977. }
  2978. .skin-black .user-panel > .info,
  2979. .skin-black .user-panel > .info > a {
  2980. color: #eee;
  2981. }
  2982. .skin-black .main-sidebar,
  2983. .skin-black .left-side,
  2984. .skin-black .wrapper {
  2985. background: #222;
  2986. }
  2987. .skin-black .sidebar > .sidebar-menu > li.header {
  2988. background: #1d1d1d;
  2989. color: rgba(255, 255, 255, 0.4);
  2990. }
  2991. .skin-black .sidebar > .sidebar-menu > li > a {
  2992. margin-right: 1px;
  2993. border-left: 3px solid transparent;
  2994. }
  2995. .skin-black .sidebar > .sidebar-menu > li > a:hover,
  2996. .skin-black .sidebar > .sidebar-menu > li.active > a {
  2997. color: #fff;
  2998. background: #444;
  2999. border-left-color: #fff;
  3000. }
  3001. .skin-black .sidebar > .sidebar-menu > li > .treeview-menu {
  3002. background: #333;
  3003. }
  3004. .skin-black .sidebar a {
  3005. color: #eee;
  3006. }
  3007. .skin-black .sidebar a:hover {
  3008. text-decoration: none;
  3009. }
  3010. .skin-black .treeview-menu > li > a {
  3011. color: #ccc;
  3012. }
  3013. .skin-black .treeview-menu > li.active > a,
  3014. .skin-black .treeview-menu > li > a:hover {
  3015. color: #fff;
  3016. }
  3017. .skin-black .sidebar-form {
  3018. border-radius: 3px;
  3019. border: 1px solid #3c3c3c;
  3020. margin: 10px 10px;
  3021. }
  3022. .skin-black .sidebar-form input[type="text"],
  3023. .skin-black .sidebar-form .btn {
  3024. box-shadow: none;
  3025. background-color: #3c3c3c;
  3026. border: 1px solid transparent;
  3027. height: 35px;
  3028. -webkit-transition: all 0.3s ease;
  3029. -o-transition: all 0.3s ease;
  3030. transition: all 0.3s ease;
  3031. }
  3032. .skin-black .sidebar-form input[type="text"] {
  3033. color: #666;
  3034. border-top-left-radius: 2px !important;
  3035. border-top-right-radius: 0 !important;
  3036. border-bottom-right-radius: 0 !important;
  3037. border-bottom-left-radius: 2px !important;
  3038. }
  3039. .skin-black .sidebar-form input[type="text"]:focus,
  3040. .skin-black .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  3041. background-color: #fff;
  3042. color: #666;
  3043. }
  3044. .skin-black .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  3045. border-left-color: #fff;
  3046. }
  3047. .skin-black .sidebar-form .btn {
  3048. color: #999;
  3049. border-top-left-radius: 0 !important;
  3050. border-top-right-radius: 2px !important;
  3051. border-bottom-right-radius: 2px !important;
  3052. border-bottom-left-radius: 0 !important;
  3053. }
  3054. /*
  3055. * Skin: Red
  3056. * ---------
  3057. */
  3058. .skin-red .main-header .navbar {
  3059. background-color: #dd4b39;
  3060. }
  3061. .skin-red .main-header .navbar .nav > li > a {
  3062. color: #ffffff;
  3063. }
  3064. .skin-red .main-header .navbar .nav > li > a:hover,
  3065. .skin-red .main-header .navbar .nav > li > a:active,
  3066. .skin-red .main-header .navbar .nav > li > a:focus,
  3067. .skin-red .main-header .navbar .nav .open > a,
  3068. .skin-red .main-header .navbar .nav .open > a:hover,
  3069. .skin-red .main-header .navbar .nav .open > a:focus {
  3070. background: rgba(0, 0, 0, 0.1);
  3071. color: #f6f6f6;
  3072. }
  3073. .skin-red .main-header .navbar .navbar-custom-menu > .nav {
  3074. margin-right: 10px;
  3075. }
  3076. .skin-red .main-header .navbar .sidebar-toggle {
  3077. color: #ffffff;
  3078. }
  3079. .skin-red .main-header .navbar .sidebar-toggle:hover {
  3080. color: #f6f6f6;
  3081. background: rgba(0, 0, 0, 0.1);
  3082. }
  3083. .skin-red .main-header .navbar .sidebar-toggle {
  3084. color: #fff;
  3085. }
  3086. .skin-red .main-header .navbar .sidebar-toggle:hover {
  3087. background-color: #d73925;
  3088. }
  3089. @media (max-width: 767px) {
  3090. .skin-red .main-header .navbar .dropdown-menu li.divider {
  3091. background-color: rgba(255, 255, 255, 0.1);
  3092. }
  3093. .skin-red .main-header .navbar .dropdown-menu li a {
  3094. color: #fff;
  3095. }
  3096. .skin-red .main-header .navbar .dropdown-menu li a:hover {
  3097. background: #d73925;
  3098. }
  3099. }
  3100. .skin-red .main-header .logo {
  3101. background-color: #d73925;
  3102. color: #ffffff;
  3103. border-bottom: 1px solid transparent;
  3104. }
  3105. .skin-red .main-header .logo > a {
  3106. color: #ffffff;
  3107. }
  3108. .skin-red .main-header .logo:hover {
  3109. background: #d33724;
  3110. }
  3111. .skin-red .main-header li.user-header {
  3112. background-color: #dd4b39;
  3113. }
  3114. .skin-red .content-header {
  3115. background: transparent;
  3116. }
  3117. .skin-red .user-panel > .info,
  3118. .skin-red .user-panel > .info > a {
  3119. color: #fff;
  3120. }
  3121. .skin-red .sidebar-menu > li.header {
  3122. color: #4b646f;
  3123. background: #1a2226;
  3124. }
  3125. .skin-red .sidebar-menu > li > a {
  3126. border-left: 3px solid transparent;
  3127. margin-right: 1px;
  3128. }
  3129. .skin-red .sidebar-menu > li > a:hover,
  3130. .skin-red .sidebar-menu > li.active > a {
  3131. color: #ffffff;
  3132. background: #1e282c;
  3133. border-left-color: #dd4b39;
  3134. }
  3135. .skin-red .sidebar-menu > li > .treeview-menu {
  3136. margin: 0 1px;
  3137. background: #2c3b41;
  3138. }
  3139. .skin-red .wrapper,
  3140. .skin-red .main-sidebar,
  3141. .skin-red .left-side {
  3142. background: #222d32;
  3143. }
  3144. .skin-red .sidebar a {
  3145. color: #b8c7ce;
  3146. }
  3147. .skin-red .sidebar a:hover {
  3148. text-decoration: none;
  3149. }
  3150. .skin-red .treeview-menu > li > a {
  3151. color: #8aa4af;
  3152. }
  3153. .skin-red .treeview-menu > li.active > a,
  3154. .skin-red .treeview-menu > li > a:hover {
  3155. color: #ffffff;
  3156. }
  3157. .skin-red .sidebar-form {
  3158. border-radius: 3px;
  3159. border: 1px solid #374850;
  3160. margin: 10px 10px;
  3161. }
  3162. .skin-red .sidebar-form input[type="text"],
  3163. .skin-red .sidebar-form .btn {
  3164. box-shadow: none;
  3165. background-color: #374850;
  3166. border: 1px solid transparent;
  3167. height: 35px;
  3168. -webkit-transition: all 0.3s ease;
  3169. -o-transition: all 0.3s ease;
  3170. transition: all 0.3s ease;
  3171. }
  3172. .skin-red .sidebar-form input[type="text"] {
  3173. color: #666;
  3174. border-top-left-radius: 2px !important;
  3175. border-top-right-radius: 0 !important;
  3176. border-bottom-right-radius: 0 !important;
  3177. border-bottom-left-radius: 2px !important;
  3178. }
  3179. .skin-red .sidebar-form input[type="text"]:focus,
  3180. .skin-red .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  3181. background-color: #fff;
  3182. color: #666;
  3183. }
  3184. .skin-red .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  3185. border-left-color: #fff;
  3186. }
  3187. .skin-red .sidebar-form .btn {
  3188. color: #999;
  3189. border-top-left-radius: 0 !important;
  3190. border-top-right-radius: 2px !important;
  3191. border-bottom-right-radius: 2px !important;
  3192. border-bottom-left-radius: 0 !important;
  3193. }
  3194. /*
  3195. * Skin: Green
  3196. * -----------
  3197. */
  3198. .skin-green .main-header .navbar {
  3199. background-color: #00a65a;
  3200. }
  3201. .skin-green .main-header .navbar .nav > li > a {
  3202. color: #ffffff;
  3203. }
  3204. .skin-green .main-header .navbar .nav > li > a:hover,
  3205. .skin-green .main-header .navbar .nav > li > a:active,
  3206. .skin-green .main-header .navbar .nav > li > a:focus,
  3207. .skin-green .main-header .navbar .nav .open > a,
  3208. .skin-green .main-header .navbar .nav .open > a:hover,
  3209. .skin-green .main-header .navbar .nav .open > a:focus {
  3210. background: rgba(0, 0, 0, 0.1);
  3211. color: #f6f6f6;
  3212. }
  3213. .skin-green .main-header .navbar .navbar-custom-menu > .nav {
  3214. margin-right: 10px;
  3215. }
  3216. .skin-green .main-header .navbar .sidebar-toggle {
  3217. color: #ffffff;
  3218. }
  3219. .skin-green .main-header .navbar .sidebar-toggle:hover {
  3220. color: #f6f6f6;
  3221. background: rgba(0, 0, 0, 0.1);
  3222. }
  3223. .skin-green .main-header .navbar .sidebar-toggle {
  3224. color: #fff;
  3225. }
  3226. .skin-green .main-header .navbar .sidebar-toggle:hover {
  3227. background-color: #008d4c;
  3228. }
  3229. @media (max-width: 767px) {
  3230. .skin-green .main-header .navbar .dropdown-menu li.divider {
  3231. background-color: rgba(255, 255, 255, 0.1);
  3232. }
  3233. .skin-green .main-header .navbar .dropdown-menu li a {
  3234. color: #fff;
  3235. }
  3236. .skin-green .main-header .navbar .dropdown-menu li a:hover {
  3237. background: #008d4c;
  3238. }
  3239. }
  3240. .skin-green .main-header .logo {
  3241. background-color: #008d4c;
  3242. color: #ffffff;
  3243. border-bottom: 1px solid transparent;
  3244. }
  3245. .skin-green .main-header .logo > a {
  3246. color: #ffffff;
  3247. }
  3248. .skin-green .main-header .logo:hover {
  3249. background: #008749;
  3250. }
  3251. .skin-green .main-header li.user-header {
  3252. background-color: #00a65a;
  3253. }
  3254. .skin-green .content-header {
  3255. background: transparent;
  3256. }
  3257. .skin-green .user-panel > .info,
  3258. .skin-green .user-panel > .info > a {
  3259. color: #fff;
  3260. }
  3261. .skin-green .sidebar-menu > li.header {
  3262. color: #4b646f;
  3263. background: #1a2226;
  3264. }
  3265. .skin-green .sidebar-menu > li > a {
  3266. border-left: 3px solid transparent;
  3267. margin-right: 1px;
  3268. }
  3269. .skin-green .sidebar-menu > li > a:hover,
  3270. .skin-green .sidebar-menu > li.active > a {
  3271. color: #ffffff;
  3272. background: #1e282c;
  3273. border-left-color: #00a65a;
  3274. }
  3275. .skin-green .sidebar-menu > li > .treeview-menu {
  3276. margin: 0 1px;
  3277. background: #2c3b41;
  3278. }
  3279. .skin-green .wrapper,
  3280. .skin-green .main-sidebar,
  3281. .skin-green .left-side {
  3282. background: #222d32;
  3283. }
  3284. .skin-green .sidebar a {
  3285. color: #b8c7ce;
  3286. }
  3287. .skin-green .sidebar a:hover {
  3288. text-decoration: none;
  3289. }
  3290. .skin-green .treeview-menu > li > a {
  3291. color: #8aa4af;
  3292. }
  3293. .skin-green .treeview-menu > li.active > a,
  3294. .skin-green .treeview-menu > li > a:hover {
  3295. color: #ffffff;
  3296. }
  3297. .skin-green .sidebar-form {
  3298. border-radius: 3px;
  3299. border: 1px solid #374850;
  3300. margin: 10px 10px;
  3301. }
  3302. .skin-green .sidebar-form input[type="text"],
  3303. .skin-green .sidebar-form .btn {
  3304. box-shadow: none;
  3305. background-color: #374850;
  3306. border: 1px solid transparent;
  3307. height: 35px;
  3308. -webkit-transition: all 0.3s ease;
  3309. -o-transition: all 0.3s ease;
  3310. transition: all 0.3s ease;
  3311. }
  3312. .skin-green .sidebar-form input[type="text"] {
  3313. color: #666;
  3314. border-top-left-radius: 2px !important;
  3315. border-top-right-radius: 0 !important;
  3316. border-bottom-right-radius: 0 !important;
  3317. border-bottom-left-radius: 2px !important;
  3318. }
  3319. .skin-green .sidebar-form input[type="text"]:focus,
  3320. .skin-green .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  3321. background-color: #fff;
  3322. color: #666;
  3323. }
  3324. .skin-green .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  3325. border-left-color: #fff;
  3326. }
  3327. .skin-green .sidebar-form .btn {
  3328. color: #999;
  3329. border-top-left-radius: 0 !important;
  3330. border-top-right-radius: 2px !important;
  3331. border-bottom-right-radius: 2px !important;
  3332. border-bottom-left-radius: 0 !important;
  3333. }
  3334. /*
  3335. * Skin: Yellow
  3336. * ------------
  3337. */
  3338. .skin-yellow .main-header .navbar {
  3339. background-color: #f39c12;
  3340. }
  3341. .skin-yellow .main-header .navbar .nav > li > a {
  3342. color: #ffffff;
  3343. }
  3344. .skin-yellow .main-header .navbar .nav > li > a:hover,
  3345. .skin-yellow .main-header .navbar .nav > li > a:active,
  3346. .skin-yellow .main-header .navbar .nav > li > a:focus,
  3347. .skin-yellow .main-header .navbar .nav .open > a,
  3348. .skin-yellow .main-header .navbar .nav .open > a:hover,
  3349. .skin-yellow .main-header .navbar .nav .open > a:focus {
  3350. background: rgba(0, 0, 0, 0.1);
  3351. color: #f6f6f6;
  3352. }
  3353. .skin-yellow .main-header .navbar .navbar-custom-menu > .nav {
  3354. margin-right: 10px;
  3355. }
  3356. .skin-yellow .main-header .navbar .sidebar-toggle {
  3357. color: #ffffff;
  3358. }
  3359. .skin-yellow .main-header .navbar .sidebar-toggle:hover {
  3360. color: #f6f6f6;
  3361. background: rgba(0, 0, 0, 0.1);
  3362. }
  3363. .skin-yellow .main-header .navbar .sidebar-toggle {
  3364. color: #fff;
  3365. }
  3366. .skin-yellow .main-header .navbar .sidebar-toggle:hover {
  3367. background-color: #e08e0b;
  3368. }
  3369. @media (max-width: 767px) {
  3370. .skin-yellow .main-header .navbar .dropdown-menu li.divider {
  3371. background-color: rgba(255, 255, 255, 0.1);
  3372. }
  3373. .skin-yellow .main-header .navbar .dropdown-menu li a {
  3374. color: #fff;
  3375. }
  3376. .skin-yellow .main-header .navbar .dropdown-menu li a:hover {
  3377. background: #e08e0b;
  3378. }
  3379. }
  3380. .skin-yellow .main-header .logo {
  3381. background-color: #e08e0b;
  3382. color: #ffffff;
  3383. border-bottom: 1px solid transparent;
  3384. }
  3385. .skin-yellow .main-header .logo > a {
  3386. color: #ffffff;
  3387. }
  3388. .skin-yellow .main-header .logo:hover {
  3389. background: #db8b0b;
  3390. }
  3391. .skin-yellow .main-header li.user-header {
  3392. background-color: #f39c12;
  3393. }
  3394. .skin-yellow .content-header {
  3395. background: transparent;
  3396. }
  3397. .skin-yellow .user-panel > .info,
  3398. .skin-yellow .user-panel > .info > a {
  3399. color: #fff;
  3400. }
  3401. .skin-yellow .sidebar-menu > li.header {
  3402. color: #4b646f;
  3403. background: #1a2226;
  3404. }
  3405. .skin-yellow .sidebar-menu > li > a {
  3406. border-left: 3px solid transparent;
  3407. margin-right: 1px;
  3408. }
  3409. .skin-yellow .sidebar-menu > li > a:hover,
  3410. .skin-yellow .sidebar-menu > li.active > a {
  3411. color: #ffffff;
  3412. background: #1e282c;
  3413. border-left-color: #f39c12;
  3414. }
  3415. .skin-yellow .sidebar-menu > li > .treeview-menu {
  3416. margin: 0 1px;
  3417. background: #2c3b41;
  3418. }
  3419. .skin-yellow .wrapper,
  3420. .skin-yellow .main-sidebar,
  3421. .skin-yellow .left-side {
  3422. background: #222d32;
  3423. }
  3424. .skin-yellow .sidebar a {
  3425. color: #b8c7ce;
  3426. }
  3427. .skin-yellow .sidebar a:hover {
  3428. text-decoration: none;
  3429. }
  3430. .skin-yellow .treeview-menu > li > a {
  3431. color: #8aa4af;
  3432. }
  3433. .skin-yellow .treeview-menu > li.active > a,
  3434. .skin-yellow .treeview-menu > li > a:hover {
  3435. color: #ffffff;
  3436. }
  3437. .skin-yellow .sidebar-form {
  3438. border-radius: 3px;
  3439. border: 1px solid #374850;
  3440. margin: 10px 10px;
  3441. }
  3442. .skin-yellow .sidebar-form input[type="text"],
  3443. .skin-yellow .sidebar-form .btn {
  3444. box-shadow: none;
  3445. background-color: #374850;
  3446. border: 1px solid transparent;
  3447. height: 35px;
  3448. -webkit-transition: all 0.3s ease;
  3449. -o-transition: all 0.3s ease;
  3450. transition: all 0.3s ease;
  3451. }
  3452. .skin-yellow .sidebar-form input[type="text"] {
  3453. color: #666;
  3454. border-top-left-radius: 2px !important;
  3455. border-top-right-radius: 0 !important;
  3456. border-bottom-right-radius: 0 !important;
  3457. border-bottom-left-radius: 2px !important;
  3458. }
  3459. .skin-yellow .sidebar-form input[type="text"]:focus,
  3460. .skin-yellow .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  3461. background-color: #fff;
  3462. color: #666;
  3463. }
  3464. .skin-yellow .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  3465. border-left-color: #fff;
  3466. }
  3467. .skin-yellow .sidebar-form .btn {
  3468. color: #999;
  3469. border-top-left-radius: 0 !important;
  3470. border-top-right-radius: 2px !important;
  3471. border-bottom-right-radius: 2px !important;
  3472. border-bottom-left-radius: 0 !important;
  3473. }
  3474. /*
  3475. * Skin: Purple
  3476. * ------------
  3477. */
  3478. .skin-purple .main-header .navbar {
  3479. background-color: #605ca8;
  3480. }
  3481. .skin-purple .main-header .navbar .nav > li > a {
  3482. color: #ffffff;
  3483. }
  3484. .skin-purple .main-header .navbar .nav > li > a:hover,
  3485. .skin-purple .main-header .navbar .nav > li > a:active,
  3486. .skin-purple .main-header .navbar .nav > li > a:focus,
  3487. .skin-purple .main-header .navbar .nav .open > a,
  3488. .skin-purple .main-header .navbar .nav .open > a:hover,
  3489. .skin-purple .main-header .navbar .nav .open > a:focus {
  3490. background: rgba(0, 0, 0, 0.1);
  3491. color: #f6f6f6;
  3492. }
  3493. .skin-purple .main-header .navbar .navbar-custom-menu > .nav {
  3494. margin-right: 10px;
  3495. }
  3496. .skin-purple .main-header .navbar .sidebar-toggle {
  3497. color: #ffffff;
  3498. }
  3499. .skin-purple .main-header .navbar .sidebar-toggle:hover {
  3500. color: #f6f6f6;
  3501. background: rgba(0, 0, 0, 0.1);
  3502. }
  3503. .skin-purple .main-header .navbar .sidebar-toggle {
  3504. color: #fff;
  3505. }
  3506. .skin-purple .main-header .navbar .sidebar-toggle:hover {
  3507. background-color: #555299;
  3508. }
  3509. @media (max-width: 767px) {
  3510. .skin-purple .main-header .navbar .dropdown-menu li.divider {
  3511. background-color: rgba(255, 255, 255, 0.1);
  3512. }
  3513. .skin-purple .main-header .navbar .dropdown-menu li a {
  3514. color: #fff;
  3515. }
  3516. .skin-purple .main-header .navbar .dropdown-menu li a:hover {
  3517. background: #555299;
  3518. }
  3519. }
  3520. .skin-purple .main-header .logo {
  3521. background-color: #555299;
  3522. color: #ffffff;
  3523. border-bottom: 1px solid transparent;
  3524. }
  3525. .skin-purple .main-header .logo > a {
  3526. color: #ffffff;
  3527. }
  3528. .skin-purple .main-header .logo:hover {
  3529. background: #545096;
  3530. }
  3531. .skin-purple .main-header li.user-header {
  3532. background-color: #605ca8;
  3533. }
  3534. .skin-purple .content-header {
  3535. background: transparent;
  3536. }
  3537. .skin-purple .user-panel > .info,
  3538. .skin-purple .user-panel > .info > a {
  3539. color: #fff;
  3540. }
  3541. .skin-purple .sidebar-menu > li.header {
  3542. color: #4b646f;
  3543. background: #1a2226;
  3544. }
  3545. .skin-purple .sidebar-menu > li > a {
  3546. border-left: 3px solid transparent;
  3547. margin-right: 1px;
  3548. }
  3549. .skin-purple .sidebar-menu > li > a:hover,
  3550. .skin-purple .sidebar-menu > li.active > a {
  3551. color: #ffffff;
  3552. background: #1e282c;
  3553. border-left-color: #605ca8;
  3554. }
  3555. .skin-purple .sidebar-menu > li > .treeview-menu {
  3556. margin: 0 1px;
  3557. background: #2c3b41;
  3558. }
  3559. .skin-purple .wrapper,
  3560. .skin-purple .main-sidebar,
  3561. .skin-purple .left-side {
  3562. background: #222d32;
  3563. }
  3564. .skin-purple .sidebar a {
  3565. color: #b8c7ce;
  3566. }
  3567. .skin-purple .sidebar a:hover {
  3568. text-decoration: none;
  3569. }
  3570. .skin-purple .treeview-menu > li > a {
  3571. color: #8aa4af;
  3572. }
  3573. .skin-purple .treeview-menu > li.active > a,
  3574. .skin-purple .treeview-menu > li > a:hover {
  3575. color: #ffffff;
  3576. }
  3577. .skin-purple .sidebar-form {
  3578. border-radius: 3px;
  3579. border: 1px solid #374850;
  3580. margin: 10px 10px;
  3581. }
  3582. .skin-purple .sidebar-form input[type="text"],
  3583. .skin-purple .sidebar-form .btn {
  3584. box-shadow: none;
  3585. background-color: #374850;
  3586. border: 1px solid transparent;
  3587. height: 35px;
  3588. -webkit-transition: all 0.3s ease;
  3589. -o-transition: all 0.3s ease;
  3590. transition: all 0.3s ease;
  3591. }
  3592. .skin-purple .sidebar-form input[type="text"] {
  3593. color: #666;
  3594. border-top-left-radius: 2px !important;
  3595. border-top-right-radius: 0 !important;
  3596. border-bottom-right-radius: 0 !important;
  3597. border-bottom-left-radius: 2px !important;
  3598. }
  3599. .skin-purple .sidebar-form input[type="text"]:focus,
  3600. .skin-purple .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  3601. background-color: #fff;
  3602. color: #666;
  3603. }
  3604. .skin-purple .sidebar-form input[type="text"]:focus + .input-group-btn .btn {
  3605. border-left-color: #fff;
  3606. }
  3607. .skin-purple .sidebar-form .btn {
  3608. color: #999;
  3609. border-top-left-radius: 0 !important;
  3610. border-top-right-radius: 2px !important;
  3611. border-bottom-right-radius: 2px !important;
  3612. border-bottom-left-radius: 0 !important;
  3613. }
  3614. /*
  3615. * Plugin: Social Buttons
  3616. * ----------------------
  3617. */
  3618. .btn-social {
  3619. position: relative;
  3620. padding-left: 44px !important;
  3621. text-align: left;
  3622. white-space: nowrap;
  3623. overflow: hidden;
  3624. text-overflow: ellipsis;
  3625. }
  3626. .btn-social :first-child {
  3627. position: absolute;
  3628. left: 0;
  3629. top: 0;
  3630. bottom: 0;
  3631. width: 32px !important;
  3632. line-height: 34px !important;
  3633. font-size: 1.6em!important;
  3634. text-align: center;
  3635. border-right: 1px solid rgba(0, 0, 0, 0.2);
  3636. }
  3637. .btn-social.btn-lg {
  3638. padding-left: 61px !important;
  3639. }
  3640. .btn-social.btn-lg :first-child {
  3641. line-height: 45px;
  3642. width: 45px;
  3643. font-size: 1.8em;
  3644. }
  3645. .btn-social.btn-sm {
  3646. padding-left: 38px !important;
  3647. }
  3648. .btn-social.btn-sm :first-child {
  3649. line-height: 28px;
  3650. width: 28px;
  3651. font-size: 1.4em;
  3652. }
  3653. .btn-social.btn-xs {
  3654. padding-left: 30px !important;
  3655. }
  3656. .btn-social.btn-xs :first-child {
  3657. line-height: 20px;
  3658. width: 20px;
  3659. font-size: 1.2em;
  3660. }
  3661. .btn-social-icon {
  3662. position: relative;
  3663. padding-left: 44px !important;
  3664. text-align: left;
  3665. white-space: nowrap;
  3666. overflow: hidden;
  3667. text-overflow: ellipsis;
  3668. height: 34px;
  3669. width: 34px;
  3670. padding: 0;
  3671. }
  3672. .btn-social-icon :first-child {
  3673. position: absolute;
  3674. left: 0;
  3675. top: 0;
  3676. bottom: 0;
  3677. width: 32px !important;
  3678. line-height: 34px !important;
  3679. font-size: 1.6em!important;
  3680. text-align: center;
  3681. border-right: 1px solid rgba(0, 0, 0, 0.2);
  3682. }
  3683. .btn-social-icon.btn-lg {
  3684. padding-left: 61px !important;
  3685. }
  3686. .btn-social-icon.btn-lg :first-child {
  3687. line-height: 45px;
  3688. width: 45px;
  3689. font-size: 1.8em;
  3690. }
  3691. .btn-social-icon.btn-sm {
  3692. padding-left: 38px !important;
  3693. }
  3694. .btn-social-icon.btn-sm :first-child {
  3695. line-height: 28px;
  3696. width: 28px;
  3697. font-size: 1.4em;
  3698. }
  3699. .btn-social-icon.btn-xs {
  3700. padding-left: 30px !important;
  3701. }
  3702. .btn-social-icon.btn-xs :first-child {
  3703. line-height: 20px;
  3704. width: 20px;
  3705. font-size: 1.2em;
  3706. }
  3707. .btn-social-icon :first-child {
  3708. border: none;
  3709. text-align: center;
  3710. width: 100%!important;
  3711. }
  3712. .btn-social-icon.btn-lg {
  3713. height: 45px;
  3714. width: 45px;
  3715. padding-left: 0;
  3716. padding-right: 0;
  3717. }
  3718. .btn-social-icon.btn-sm {
  3719. height: 30px;
  3720. width: 30px;
  3721. padding-left: 0;
  3722. padding-right: 0;
  3723. }
  3724. .btn-social-icon.btn-xs {
  3725. height: 22px;
  3726. width: 22px;
  3727. padding-left: 0;
  3728. padding-right: 0;
  3729. }
  3730. .btn-bitbucket {
  3731. color: #ffffff;
  3732. background-color: #205081;
  3733. border-color: rgba(0, 0, 0, 0.2);
  3734. }
  3735. .btn-bitbucket:hover,
  3736. .btn-bitbucket:focus,
  3737. .btn-bitbucket.focus,
  3738. .btn-bitbucket:active,
  3739. .btn-bitbucket.active,
  3740. .open > .dropdown-toggle.btn-bitbucket {
  3741. color: #ffffff;
  3742. background-color: #163758;
  3743. border-color: rgba(0, 0, 0, 0.2);
  3744. }
  3745. .btn-bitbucket:active,
  3746. .btn-bitbucket.active,
  3747. .open > .dropdown-toggle.btn-bitbucket {
  3748. background-image: none;
  3749. }
  3750. .btn-bitbucket.disabled,
  3751. .btn-bitbucket[disabled],
  3752. fieldset[disabled] .btn-bitbucket,
  3753. .btn-bitbucket.disabled:hover,
  3754. .btn-bitbucket[disabled]:hover,
  3755. fieldset[disabled] .btn-bitbucket:hover,
  3756. .btn-bitbucket.disabled:focus,
  3757. .btn-bitbucket[disabled]:focus,
  3758. fieldset[disabled] .btn-bitbucket:focus,
  3759. .btn-bitbucket.disabled.focus,
  3760. .btn-bitbucket[disabled].focus,
  3761. fieldset[disabled] .btn-bitbucket.focus,
  3762. .btn-bitbucket.disabled:active,
  3763. .btn-bitbucket[disabled]:active,
  3764. fieldset[disabled] .btn-bitbucket:active,
  3765. .btn-bitbucket.disabled.active,
  3766. .btn-bitbucket[disabled].active,
  3767. fieldset[disabled] .btn-bitbucket.active {
  3768. background-color: #205081;
  3769. border-color: rgba(0, 0, 0, 0.2);
  3770. }
  3771. .btn-bitbucket .badge {
  3772. color: #205081;
  3773. background-color: #ffffff;
  3774. }
  3775. .btn-bitbucket:hover,
  3776. .btn-bitbucket:focus,
  3777. .btn-bitbucket:active,
  3778. .btn-bitbucket.active,
  3779. .open .dropdown-toggle.btn-bitbucket {
  3780. color: #ffffff;
  3781. background-color: #183c60;
  3782. border-color: rgba(0, 0, 0, 0.2);
  3783. }
  3784. .btn-bitbucket:active,
  3785. .btn-bitbucket.active,
  3786. .open .dropdown-toggle.btn-bitbucket {
  3787. background-image: none;
  3788. }
  3789. .btn-bitbucket.disabled,
  3790. .btn-bitbucket[disabled],
  3791. fieldset[disabled] .btn-bitbucket,
  3792. .btn-bitbucket.disabled:hover,
  3793. .btn-bitbucket[disabled]:hover,
  3794. fieldset[disabled] .btn-bitbucket:hover,
  3795. .btn-bitbucket.disabled:focus,
  3796. .btn-bitbucket[disabled]:focus,
  3797. fieldset[disabled] .btn-bitbucket:focus,
  3798. .btn-bitbucket.disabled:active,
  3799. .btn-bitbucket[disabled]:active,
  3800. fieldset[disabled] .btn-bitbucket:active,
  3801. .btn-bitbucket.disabled.active,
  3802. .btn-bitbucket[disabled].active,
  3803. fieldset[disabled] .btn-bitbucket.active {
  3804. background-color: #205081;
  3805. border-color: rgba(0, 0, 0, 0.2);
  3806. }
  3807. .btn-bitbucket .badge {
  3808. color: #205081;
  3809. background-color: #ffffff;
  3810. }
  3811. .btn-dropbox {
  3812. color: #ffffff;
  3813. background-color: #1087dd;
  3814. border-color: rgba(0, 0, 0, 0.2);
  3815. }
  3816. .btn-dropbox:hover,
  3817. .btn-dropbox:focus,
  3818. .btn-dropbox.focus,
  3819. .btn-dropbox:active,
  3820. .btn-dropbox.active,
  3821. .open > .dropdown-toggle.btn-dropbox {
  3822. color: #ffffff;
  3823. background-color: #0d6aad;
  3824. border-color: rgba(0, 0, 0, 0.2);
  3825. }
  3826. .btn-dropbox:active,
  3827. .btn-dropbox.active,
  3828. .open > .dropdown-toggle.btn-dropbox {
  3829. background-image: none;
  3830. }
  3831. .btn-dropbox.disabled,
  3832. .btn-dropbox[disabled],
  3833. fieldset[disabled] .btn-dropbox,
  3834. .btn-dropbox.disabled:hover,
  3835. .btn-dropbox[disabled]:hover,
  3836. fieldset[disabled] .btn-dropbox:hover,
  3837. .btn-dropbox.disabled:focus,
  3838. .btn-dropbox[disabled]:focus,
  3839. fieldset[disabled] .btn-dropbox:focus,
  3840. .btn-dropbox.disabled.focus,
  3841. .btn-dropbox[disabled].focus,
  3842. fieldset[disabled] .btn-dropbox.focus,
  3843. .btn-dropbox.disabled:active,
  3844. .btn-dropbox[disabled]:active,
  3845. fieldset[disabled] .btn-dropbox:active,
  3846. .btn-dropbox.disabled.active,
  3847. .btn-dropbox[disabled].active,
  3848. fieldset[disabled] .btn-dropbox.active {
  3849. background-color: #1087dd;
  3850. border-color: rgba(0, 0, 0, 0.2);
  3851. }
  3852. .btn-dropbox .badge {
  3853. color: #1087dd;
  3854. background-color: #ffffff;
  3855. }
  3856. .btn-dropbox:hover,
  3857. .btn-dropbox:focus,
  3858. .btn-dropbox:active,
  3859. .btn-dropbox.active,
  3860. .open .dropdown-toggle.btn-dropbox {
  3861. color: #ffffff;
  3862. background-color: #0d70b7;
  3863. border-color: rgba(0, 0, 0, 0.2);
  3864. }
  3865. .btn-dropbox:active,
  3866. .btn-dropbox.active,
  3867. .open .dropdown-toggle.btn-dropbox {
  3868. background-image: none;
  3869. }
  3870. .btn-dropbox.disabled,
  3871. .btn-dropbox[disabled],
  3872. fieldset[disabled] .btn-dropbox,
  3873. .btn-dropbox.disabled:hover,
  3874. .btn-dropbox[disabled]:hover,
  3875. fieldset[disabled] .btn-dropbox:hover,
  3876. .btn-dropbox.disabled:focus,
  3877. .btn-dropbox[disabled]:focus,
  3878. fieldset[disabled] .btn-dropbox:focus,
  3879. .btn-dropbox.disabled:active,
  3880. .btn-dropbox[disabled]:active,
  3881. fieldset[disabled] .btn-dropbox:active,
  3882. .btn-dropbox.disabled.active,
  3883. .btn-dropbox[disabled].active,
  3884. fieldset[disabled] .btn-dropbox.active {
  3885. background-color: #1087dd;
  3886. border-color: rgba(0, 0, 0, 0.2);
  3887. }
  3888. .btn-dropbox .badge {
  3889. color: #1087dd;
  3890. background-color: #ffffff;
  3891. }
  3892. .btn-facebook {
  3893. color: #ffffff;
  3894. background-color: #3b5998;
  3895. border-color: rgba(0, 0, 0, 0.2);
  3896. }
  3897. .btn-facebook:hover,
  3898. .btn-facebook:focus,
  3899. .btn-facebook.focus,
  3900. .btn-facebook:active,
  3901. .btn-facebook.active,
  3902. .open > .dropdown-toggle.btn-facebook {
  3903. color: #ffffff;
  3904. background-color: #2d4373;
  3905. border-color: rgba(0, 0, 0, 0.2);
  3906. }
  3907. .btn-facebook:active,
  3908. .btn-facebook.active,
  3909. .open > .dropdown-toggle.btn-facebook {
  3910. background-image: none;
  3911. }
  3912. .btn-facebook.disabled,
  3913. .btn-facebook[disabled],
  3914. fieldset[disabled] .btn-facebook,
  3915. .btn-facebook.disabled:hover,
  3916. .btn-facebook[disabled]:hover,
  3917. fieldset[disabled] .btn-facebook:hover,
  3918. .btn-facebook.disabled:focus,
  3919. .btn-facebook[disabled]:focus,
  3920. fieldset[disabled] .btn-facebook:focus,
  3921. .btn-facebook.disabled.focus,
  3922. .btn-facebook[disabled].focus,
  3923. fieldset[disabled] .btn-facebook.focus,
  3924. .btn-facebook.disabled:active,
  3925. .btn-facebook[disabled]:active,
  3926. fieldset[disabled] .btn-facebook:active,
  3927. .btn-facebook.disabled.active,
  3928. .btn-facebook[disabled].active,
  3929. fieldset[disabled] .btn-facebook.active {
  3930. background-color: #3b5998;
  3931. border-color: rgba(0, 0, 0, 0.2);
  3932. }
  3933. .btn-facebook .badge {
  3934. color: #3b5998;
  3935. background-color: #ffffff;
  3936. }
  3937. .btn-facebook:hover,
  3938. .btn-facebook:focus,
  3939. .btn-facebook:active,
  3940. .btn-facebook.active,
  3941. .open .dropdown-toggle.btn-facebook {
  3942. color: #ffffff;
  3943. background-color: #30487b;
  3944. border-color: rgba(0, 0, 0, 0.2);
  3945. }
  3946. .btn-facebook:active,
  3947. .btn-facebook.active,
  3948. .open .dropdown-toggle.btn-facebook {
  3949. background-image: none;
  3950. }
  3951. .btn-facebook.disabled,
  3952. .btn-facebook[disabled],
  3953. fieldset[disabled] .btn-facebook,
  3954. .btn-facebook.disabled:hover,
  3955. .btn-facebook[disabled]:hover,
  3956. fieldset[disabled] .btn-facebook:hover,
  3957. .btn-facebook.disabled:focus,
  3958. .btn-facebook[disabled]:focus,
  3959. fieldset[disabled] .btn-facebook:focus,
  3960. .btn-facebook.disabled:active,
  3961. .btn-facebook[disabled]:active,
  3962. fieldset[disabled] .btn-facebook:active,
  3963. .btn-facebook.disabled.active,
  3964. .btn-facebook[disabled].active,
  3965. fieldset[disabled] .btn-facebook.active {
  3966. background-color: #3b5998;
  3967. border-color: rgba(0, 0, 0, 0.2);
  3968. }
  3969. .btn-facebook .badge {
  3970. color: #3b5998;
  3971. background-color: #ffffff;
  3972. }
  3973. .btn-flickr {
  3974. color: #ffffff;
  3975. background-color: #ff0084;
  3976. border-color: rgba(0, 0, 0, 0.2);
  3977. }
  3978. .btn-flickr:hover,
  3979. .btn-flickr:focus,
  3980. .btn-flickr.focus,
  3981. .btn-flickr:active,
  3982. .btn-flickr.active,
  3983. .open > .dropdown-toggle.btn-flickr {
  3984. color: #ffffff;
  3985. background-color: #cc006a;
  3986. border-color: rgba(0, 0, 0, 0.2);
  3987. }
  3988. .btn-flickr:active,
  3989. .btn-flickr.active,
  3990. .open > .dropdown-toggle.btn-flickr {
  3991. background-image: none;
  3992. }
  3993. .btn-flickr.disabled,
  3994. .btn-flickr[disabled],
  3995. fieldset[disabled] .btn-flickr,
  3996. .btn-flickr.disabled:hover,
  3997. .btn-flickr[disabled]:hover,
  3998. fieldset[disabled] .btn-flickr:hover,
  3999. .btn-flickr.disabled:focus,
  4000. .btn-flickr[disabled]:focus,
  4001. fieldset[disabled] .btn-flickr:focus,
  4002. .btn-flickr.disabled.focus,
  4003. .btn-flickr[disabled].focus,
  4004. fieldset[disabled] .btn-flickr.focus,
  4005. .btn-flickr.disabled:active,
  4006. .btn-flickr[disabled]:active,
  4007. fieldset[disabled] .btn-flickr:active,
  4008. .btn-flickr.disabled.active,
  4009. .btn-flickr[disabled].active,
  4010. fieldset[disabled] .btn-flickr.active {
  4011. background-color: #ff0084;
  4012. border-color: rgba(0, 0, 0, 0.2);
  4013. }
  4014. .btn-flickr .badge {
  4015. color: #ff0084;
  4016. background-color: #ffffff;
  4017. }
  4018. .btn-flickr:hover,
  4019. .btn-flickr:focus,
  4020. .btn-flickr:active,
  4021. .btn-flickr.active,
  4022. .open .dropdown-toggle.btn-flickr {
  4023. color: #ffffff;
  4024. background-color: #d6006f;
  4025. border-color: rgba(0, 0, 0, 0.2);
  4026. }
  4027. .btn-flickr:active,
  4028. .btn-flickr.active,
  4029. .open .dropdown-toggle.btn-flickr {
  4030. background-image: none;
  4031. }
  4032. .btn-flickr.disabled,
  4033. .btn-flickr[disabled],
  4034. fieldset[disabled] .btn-flickr,
  4035. .btn-flickr.disabled:hover,
  4036. .btn-flickr[disabled]:hover,
  4037. fieldset[disabled] .btn-flickr:hover,
  4038. .btn-flickr.disabled:focus,
  4039. .btn-flickr[disabled]:focus,
  4040. fieldset[disabled] .btn-flickr:focus,
  4041. .btn-flickr.disabled:active,
  4042. .btn-flickr[disabled]:active,
  4043. fieldset[disabled] .btn-flickr:active,
  4044. .btn-flickr.disabled.active,
  4045. .btn-flickr[disabled].active,
  4046. fieldset[disabled] .btn-flickr.active {
  4047. background-color: #ff0084;
  4048. border-color: rgba(0, 0, 0, 0.2);
  4049. }
  4050. .btn-flickr .badge {
  4051. color: #ff0084;
  4052. background-color: #ffffff;
  4053. }
  4054. .btn-foursquare {
  4055. color: #ffffff;
  4056. background-color: #0072b1;
  4057. border-color: rgba(0, 0, 0, 0.2);
  4058. }
  4059. .btn-foursquare:hover,
  4060. .btn-foursquare:focus,
  4061. .btn-foursquare.focus,
  4062. .btn-foursquare:active,
  4063. .btn-foursquare.active,
  4064. .open > .dropdown-toggle.btn-foursquare {
  4065. color: #ffffff;
  4066. background-color: #00517e;
  4067. border-color: rgba(0, 0, 0, 0.2);
  4068. }
  4069. .btn-foursquare:active,
  4070. .btn-foursquare.active,
  4071. .open > .dropdown-toggle.btn-foursquare {
  4072. background-image: none;
  4073. }
  4074. .btn-foursquare.disabled,
  4075. .btn-foursquare[disabled],
  4076. fieldset[disabled] .btn-foursquare,
  4077. .btn-foursquare.disabled:hover,
  4078. .btn-foursquare[disabled]:hover,
  4079. fieldset[disabled] .btn-foursquare:hover,
  4080. .btn-foursquare.disabled:focus,
  4081. .btn-foursquare[disabled]:focus,
  4082. fieldset[disabled] .btn-foursquare:focus,
  4083. .btn-foursquare.disabled.focus,
  4084. .btn-foursquare[disabled].focus,
  4085. fieldset[disabled] .btn-foursquare.focus,
  4086. .btn-foursquare.disabled:active,
  4087. .btn-foursquare[disabled]:active,
  4088. fieldset[disabled] .btn-foursquare:active,
  4089. .btn-foursquare.disabled.active,
  4090. .btn-foursquare[disabled].active,
  4091. fieldset[disabled] .btn-foursquare.active {
  4092. background-color: #0072b1;
  4093. border-color: rgba(0, 0, 0, 0.2);
  4094. }
  4095. .btn-foursquare .badge {
  4096. color: #0072b1;
  4097. background-color: #ffffff;
  4098. }
  4099. .btn-foursquare:hover,
  4100. .btn-foursquare:focus,
  4101. .btn-foursquare:active,
  4102. .btn-foursquare.active,
  4103. .open .dropdown-toggle.btn-foursquare {
  4104. color: #ffffff;
  4105. background-color: #005888;
  4106. border-color: rgba(0, 0, 0, 0.2);
  4107. }
  4108. .btn-foursquare:active,
  4109. .btn-foursquare.active,
  4110. .open .dropdown-toggle.btn-foursquare {
  4111. background-image: none;
  4112. }
  4113. .btn-foursquare.disabled,
  4114. .btn-foursquare[disabled],
  4115. fieldset[disabled] .btn-foursquare,
  4116. .btn-foursquare.disabled:hover,
  4117. .btn-foursquare[disabled]:hover,
  4118. fieldset[disabled] .btn-foursquare:hover,
  4119. .btn-foursquare.disabled:focus,
  4120. .btn-foursquare[disabled]:focus,
  4121. fieldset[disabled] .btn-foursquare:focus,
  4122. .btn-foursquare.disabled:active,
  4123. .btn-foursquare[disabled]:active,
  4124. fieldset[disabled] .btn-foursquare:active,
  4125. .btn-foursquare.disabled.active,
  4126. .btn-foursquare[disabled].active,
  4127. fieldset[disabled] .btn-foursquare.active {
  4128. background-color: #0072b1;
  4129. border-color: rgba(0, 0, 0, 0.2);
  4130. }
  4131. .btn-foursquare .badge {
  4132. color: #0072b1;
  4133. background-color: #ffffff;
  4134. }
  4135. .btn-github {
  4136. color: #ffffff;
  4137. background-color: #444444;
  4138. border-color: rgba(0, 0, 0, 0.2);
  4139. }
  4140. .btn-github:hover,
  4141. .btn-github:focus,
  4142. .btn-github.focus,
  4143. .btn-github:active,
  4144. .btn-github.active,
  4145. .open > .dropdown-toggle.btn-github {
  4146. color: #ffffff;
  4147. background-color: #2b2b2b;
  4148. border-color: rgba(0, 0, 0, 0.2);
  4149. }
  4150. .btn-github:active,
  4151. .btn-github.active,
  4152. .open > .dropdown-toggle.btn-github {
  4153. background-image: none;
  4154. }
  4155. .btn-github.disabled,
  4156. .btn-github[disabled],
  4157. fieldset[disabled] .btn-github,
  4158. .btn-github.disabled:hover,
  4159. .btn-github[disabled]:hover,
  4160. fieldset[disabled] .btn-github:hover,
  4161. .btn-github.disabled:focus,
  4162. .btn-github[disabled]:focus,
  4163. fieldset[disabled] .btn-github:focus,
  4164. .btn-github.disabled.focus,
  4165. .btn-github[disabled].focus,
  4166. fieldset[disabled] .btn-github.focus,
  4167. .btn-github.disabled:active,
  4168. .btn-github[disabled]:active,
  4169. fieldset[disabled] .btn-github:active,
  4170. .btn-github.disabled.active,
  4171. .btn-github[disabled].active,
  4172. fieldset[disabled] .btn-github.active {
  4173. background-color: #444444;
  4174. border-color: rgba(0, 0, 0, 0.2);
  4175. }
  4176. .btn-github .badge {
  4177. color: #444444;
  4178. background-color: #ffffff;
  4179. }
  4180. .btn-github:hover,
  4181. .btn-github:focus,
  4182. .btn-github:active,
  4183. .btn-github.active,
  4184. .open .dropdown-toggle.btn-github {
  4185. color: #ffffff;
  4186. background-color: #303030;
  4187. border-color: rgba(0, 0, 0, 0.2);
  4188. }
  4189. .btn-github:active,
  4190. .btn-github.active,
  4191. .open .dropdown-toggle.btn-github {
  4192. background-image: none;
  4193. }
  4194. .btn-github.disabled,
  4195. .btn-github[disabled],
  4196. fieldset[disabled] .btn-github,
  4197. .btn-github.disabled:hover,
  4198. .btn-github[disabled]:hover,
  4199. fieldset[disabled] .btn-github:hover,
  4200. .btn-github.disabled:focus,
  4201. .btn-github[disabled]:focus,
  4202. fieldset[disabled] .btn-github:focus,
  4203. .btn-github.disabled:active,
  4204. .btn-github[disabled]:active,
  4205. fieldset[disabled] .btn-github:active,
  4206. .btn-github.disabled.active,
  4207. .btn-github[disabled].active,
  4208. fieldset[disabled] .btn-github.active {
  4209. background-color: #444444;
  4210. border-color: rgba(0, 0, 0, 0.2);
  4211. }
  4212. .btn-github .badge {
  4213. color: #444444;
  4214. background-color: #ffffff;
  4215. }
  4216. .btn-google-plus {
  4217. color: #ffffff;
  4218. background-color: #dd4b39;
  4219. border-color: rgba(0, 0, 0, 0.2);
  4220. }
  4221. .btn-google-plus:hover,
  4222. .btn-google-plus:focus,
  4223. .btn-google-plus.focus,
  4224. .btn-google-plus:active,
  4225. .btn-google-plus.active,
  4226. .open > .dropdown-toggle.btn-google-plus {
  4227. color: #ffffff;
  4228. background-color: #c23321;
  4229. border-color: rgba(0, 0, 0, 0.2);
  4230. }
  4231. .btn-google-plus:active,
  4232. .btn-google-plus.active,
  4233. .open > .dropdown-toggle.btn-google-plus {
  4234. background-image: none;
  4235. }
  4236. .btn-google-plus.disabled,
  4237. .btn-google-plus[disabled],
  4238. fieldset[disabled] .btn-google-plus,
  4239. .btn-google-plus.disabled:hover,
  4240. .btn-google-plus[disabled]:hover,
  4241. fieldset[disabled] .btn-google-plus:hover,
  4242. .btn-google-plus.disabled:focus,
  4243. .btn-google-plus[disabled]:focus,
  4244. fieldset[disabled] .btn-google-plus:focus,
  4245. .btn-google-plus.disabled.focus,
  4246. .btn-google-plus[disabled].focus,
  4247. fieldset[disabled] .btn-google-plus.focus,
  4248. .btn-google-plus.disabled:active,
  4249. .btn-google-plus[disabled]:active,
  4250. fieldset[disabled] .btn-google-plus:active,
  4251. .btn-google-plus.disabled.active,
  4252. .btn-google-plus[disabled].active,
  4253. fieldset[disabled] .btn-google-plus.active {
  4254. background-color: #dd4b39;
  4255. border-color: rgba(0, 0, 0, 0.2);
  4256. }
  4257. .btn-google-plus .badge {
  4258. color: #dd4b39;
  4259. background-color: #ffffff;
  4260. }
  4261. .btn-google-plus:hover,
  4262. .btn-google-plus:focus,
  4263. .btn-google-plus:active,
  4264. .btn-google-plus.active,
  4265. .open .dropdown-toggle.btn-google-plus {
  4266. color: #ffffff;
  4267. background-color: #ca3523;
  4268. border-color: rgba(0, 0, 0, 0.2);
  4269. }
  4270. .btn-google-plus:active,
  4271. .btn-google-plus.active,
  4272. .open .dropdown-toggle.btn-google-plus {
  4273. background-image: none;
  4274. }
  4275. .btn-google-plus.disabled,
  4276. .btn-google-plus[disabled],
  4277. fieldset[disabled] .btn-google-plus,
  4278. .btn-google-plus.disabled:hover,
  4279. .btn-google-plus[disabled]:hover,
  4280. fieldset[disabled] .btn-google-plus:hover,
  4281. .btn-google-plus.disabled:focus,
  4282. .btn-google-plus[disabled]:focus,
  4283. fieldset[disabled] .btn-google-plus:focus,
  4284. .btn-google-plus.disabled:active,
  4285. .btn-google-plus[disabled]:active,
  4286. fieldset[disabled] .btn-google-plus:active,
  4287. .btn-google-plus.disabled.active,
  4288. .btn-google-plus[disabled].active,
  4289. fieldset[disabled] .btn-google-plus.active {
  4290. background-color: #dd4b39;
  4291. border-color: rgba(0, 0, 0, 0.2);
  4292. }
  4293. .btn-google-plus .badge {
  4294. color: #dd4b39;
  4295. background-color: #ffffff;
  4296. }
  4297. .btn-instagram {
  4298. color: #ffffff;
  4299. background-color: #3f729b;
  4300. border-color: rgba(0, 0, 0, 0.2);
  4301. }
  4302. .btn-instagram:hover,
  4303. .btn-instagram:focus,
  4304. .btn-instagram.focus,
  4305. .btn-instagram:active,
  4306. .btn-instagram.active,
  4307. .open > .dropdown-toggle.btn-instagram {
  4308. color: #ffffff;
  4309. background-color: #305777;
  4310. border-color: rgba(0, 0, 0, 0.2);
  4311. }
  4312. .btn-instagram:active,
  4313. .btn-instagram.active,
  4314. .open > .dropdown-toggle.btn-instagram {
  4315. background-image: none;
  4316. }
  4317. .btn-instagram.disabled,
  4318. .btn-instagram[disabled],
  4319. fieldset[disabled] .btn-instagram,
  4320. .btn-instagram.disabled:hover,
  4321. .btn-instagram[disabled]:hover,
  4322. fieldset[disabled] .btn-instagram:hover,
  4323. .btn-instagram.disabled:focus,
  4324. .btn-instagram[disabled]:focus,
  4325. fieldset[disabled] .btn-instagram:focus,
  4326. .btn-instagram.disabled.focus,
  4327. .btn-instagram[disabled].focus,
  4328. fieldset[disabled] .btn-instagram.focus,
  4329. .btn-instagram.disabled:active,
  4330. .btn-instagram[disabled]:active,
  4331. fieldset[disabled] .btn-instagram:active,
  4332. .btn-instagram.disabled.active,
  4333. .btn-instagram[disabled].active,
  4334. fieldset[disabled] .btn-instagram.active {
  4335. background-color: #3f729b;
  4336. border-color: rgba(0, 0, 0, 0.2);
  4337. }
  4338. .btn-instagram .badge {
  4339. color: #3f729b;
  4340. background-color: #ffffff;
  4341. }
  4342. .btn-instagram:hover,
  4343. .btn-instagram:focus,
  4344. .btn-instagram:active,
  4345. .btn-instagram.active,
  4346. .open .dropdown-toggle.btn-instagram {
  4347. color: #ffffff;
  4348. background-color: #335d7e;
  4349. border-color: rgba(0, 0, 0, 0.2);
  4350. }
  4351. .btn-instagram:active,
  4352. .btn-instagram.active,
  4353. .open .dropdown-toggle.btn-instagram {
  4354. background-image: none;
  4355. }
  4356. .btn-instagram.disabled,
  4357. .btn-instagram[disabled],
  4358. fieldset[disabled] .btn-instagram,
  4359. .btn-instagram.disabled:hover,
  4360. .btn-instagram[disabled]:hover,
  4361. fieldset[disabled] .btn-instagram:hover,
  4362. .btn-instagram.disabled:focus,
  4363. .btn-instagram[disabled]:focus,
  4364. fieldset[disabled] .btn-instagram:focus,
  4365. .btn-instagram.disabled:active,
  4366. .btn-instagram[disabled]:active,
  4367. fieldset[disabled] .btn-instagram:active,
  4368. .btn-instagram.disabled.active,
  4369. .btn-instagram[disabled].active,
  4370. fieldset[disabled] .btn-instagram.active {
  4371. background-color: #3f729b;
  4372. border-color: rgba(0, 0, 0, 0.2);
  4373. }
  4374. .btn-instagram .badge {
  4375. color: #3f729b;
  4376. background-color: #ffffff;
  4377. }
  4378. .btn-linkedin {
  4379. color: #ffffff;
  4380. background-color: #007bb6;
  4381. border-color: rgba(0, 0, 0, 0.2);
  4382. }
  4383. .btn-linkedin:hover,
  4384. .btn-linkedin:focus,
  4385. .btn-linkedin.focus,
  4386. .btn-linkedin:active,
  4387. .btn-linkedin.active,
  4388. .open > .dropdown-toggle.btn-linkedin {
  4389. color: #ffffff;
  4390. background-color: #005983;
  4391. border-color: rgba(0, 0, 0, 0.2);
  4392. }
  4393. .btn-linkedin:active,
  4394. .btn-linkedin.active,
  4395. .open > .dropdown-toggle.btn-linkedin {
  4396. background-image: none;
  4397. }
  4398. .btn-linkedin.disabled,
  4399. .btn-linkedin[disabled],
  4400. fieldset[disabled] .btn-linkedin,
  4401. .btn-linkedin.disabled:hover,
  4402. .btn-linkedin[disabled]:hover,
  4403. fieldset[disabled] .btn-linkedin:hover,
  4404. .btn-linkedin.disabled:focus,
  4405. .btn-linkedin[disabled]:focus,
  4406. fieldset[disabled] .btn-linkedin:focus,
  4407. .btn-linkedin.disabled.focus,
  4408. .btn-linkedin[disabled].focus,
  4409. fieldset[disabled] .btn-linkedin.focus,
  4410. .btn-linkedin.disabled:active,
  4411. .btn-linkedin[disabled]:active,
  4412. fieldset[disabled] .btn-linkedin:active,
  4413. .btn-linkedin.disabled.active,
  4414. .btn-linkedin[disabled].active,
  4415. fieldset[disabled] .btn-linkedin.active {
  4416. background-color: #007bb6;
  4417. border-color: rgba(0, 0, 0, 0.2);
  4418. }
  4419. .btn-linkedin .badge {
  4420. color: #007bb6;
  4421. background-color: #ffffff;
  4422. }
  4423. .btn-linkedin:hover,
  4424. .btn-linkedin:focus,
  4425. .btn-linkedin:active,
  4426. .btn-linkedin.active,
  4427. .open .dropdown-toggle.btn-linkedin {
  4428. color: #ffffff;
  4429. background-color: #005f8d;
  4430. border-color: rgba(0, 0, 0, 0.2);
  4431. }
  4432. .btn-linkedin:active,
  4433. .btn-linkedin.active,
  4434. .open .dropdown-toggle.btn-linkedin {
  4435. background-image: none;
  4436. }
  4437. .btn-linkedin.disabled,
  4438. .btn-linkedin[disabled],
  4439. fieldset[disabled] .btn-linkedin,
  4440. .btn-linkedin.disabled:hover,
  4441. .btn-linkedin[disabled]:hover,
  4442. fieldset[disabled] .btn-linkedin:hover,
  4443. .btn-linkedin.disabled:focus,
  4444. .btn-linkedin[disabled]:focus,
  4445. fieldset[disabled] .btn-linkedin:focus,
  4446. .btn-linkedin.disabled:active,
  4447. .btn-linkedin[disabled]:active,
  4448. fieldset[disabled] .btn-linkedin:active,
  4449. .btn-linkedin.disabled.active,
  4450. .btn-linkedin[disabled].active,
  4451. fieldset[disabled] .btn-linkedin.active {
  4452. background-color: #007bb6;
  4453. border-color: rgba(0, 0, 0, 0.2);
  4454. }
  4455. .btn-linkedin .badge {
  4456. color: #007bb6;
  4457. background-color: #ffffff;
  4458. }
  4459. .btn-tumblr {
  4460. color: #ffffff;
  4461. background-color: #2c4762;
  4462. border-color: rgba(0, 0, 0, 0.2);
  4463. }
  4464. .btn-tumblr:hover,
  4465. .btn-tumblr:focus,
  4466. .btn-tumblr.focus,
  4467. .btn-tumblr:active,
  4468. .btn-tumblr.active,
  4469. .open > .dropdown-toggle.btn-tumblr {
  4470. color: #ffffff;
  4471. background-color: #1c2d3f;
  4472. border-color: rgba(0, 0, 0, 0.2);
  4473. }
  4474. .btn-tumblr:active,
  4475. .btn-tumblr.active,
  4476. .open > .dropdown-toggle.btn-tumblr {
  4477. background-image: none;
  4478. }
  4479. .btn-tumblr.disabled,
  4480. .btn-tumblr[disabled],
  4481. fieldset[disabled] .btn-tumblr,
  4482. .btn-tumblr.disabled:hover,
  4483. .btn-tumblr[disabled]:hover,
  4484. fieldset[disabled] .btn-tumblr:hover,
  4485. .btn-tumblr.disabled:focus,
  4486. .btn-tumblr[disabled]:focus,
  4487. fieldset[disabled] .btn-tumblr:focus,
  4488. .btn-tumblr.disabled.focus,
  4489. .btn-tumblr[disabled].focus,
  4490. fieldset[disabled] .btn-tumblr.focus,
  4491. .btn-tumblr.disabled:active,
  4492. .btn-tumblr[disabled]:active,
  4493. fieldset[disabled] .btn-tumblr:active,
  4494. .btn-tumblr.disabled.active,
  4495. .btn-tumblr[disabled].active,
  4496. fieldset[disabled] .btn-tumblr.active {
  4497. background-color: #2c4762;
  4498. border-color: rgba(0, 0, 0, 0.2);
  4499. }
  4500. .btn-tumblr .badge {
  4501. color: #2c4762;
  4502. background-color: #ffffff;
  4503. }
  4504. .btn-tumblr:hover,
  4505. .btn-tumblr:focus,
  4506. .btn-tumblr:active,
  4507. .btn-tumblr.active,
  4508. .open .dropdown-toggle.btn-tumblr {
  4509. color: #ffffff;
  4510. background-color: #1f3346;
  4511. border-color: rgba(0, 0, 0, 0.2);
  4512. }
  4513. .btn-tumblr:active,
  4514. .btn-tumblr.active,
  4515. .open .dropdown-toggle.btn-tumblr {
  4516. background-image: none;
  4517. }
  4518. .btn-tumblr.disabled,
  4519. .btn-tumblr[disabled],
  4520. fieldset[disabled] .btn-tumblr,
  4521. .btn-tumblr.disabled:hover,
  4522. .btn-tumblr[disabled]:hover,
  4523. fieldset[disabled] .btn-tumblr:hover,
  4524. .btn-tumblr.disabled:focus,
  4525. .btn-tumblr[disabled]:focus,
  4526. fieldset[disabled] .btn-tumblr:focus,
  4527. .btn-tumblr.disabled:active,
  4528. .btn-tumblr[disabled]:active,
  4529. fieldset[disabled] .btn-tumblr:active,
  4530. .btn-tumblr.disabled.active,
  4531. .btn-tumblr[disabled].active,
  4532. fieldset[disabled] .btn-tumblr.active {
  4533. background-color: #2c4762;
  4534. border-color: rgba(0, 0, 0, 0.2);
  4535. }
  4536. .btn-tumblr .badge {
  4537. color: #2c4762;
  4538. background-color: #ffffff;
  4539. }
  4540. .btn-twitter {
  4541. color: #ffffff;
  4542. background-color: #55acee;
  4543. border-color: rgba(0, 0, 0, 0.2);
  4544. }
  4545. .btn-twitter:hover,
  4546. .btn-twitter:focus,
  4547. .btn-twitter.focus,
  4548. .btn-twitter:active,
  4549. .btn-twitter.active,
  4550. .open > .dropdown-toggle.btn-twitter {
  4551. color: #ffffff;
  4552. background-color: #2795e9;
  4553. border-color: rgba(0, 0, 0, 0.2);
  4554. }
  4555. .btn-twitter:active,
  4556. .btn-twitter.active,
  4557. .open > .dropdown-toggle.btn-twitter {
  4558. background-image: none;
  4559. }
  4560. .btn-twitter.disabled,
  4561. .btn-twitter[disabled],
  4562. fieldset[disabled] .btn-twitter,
  4563. .btn-twitter.disabled:hover,
  4564. .btn-twitter[disabled]:hover,
  4565. fieldset[disabled] .btn-twitter:hover,
  4566. .btn-twitter.disabled:focus,
  4567. .btn-twitter[disabled]:focus,
  4568. fieldset[disabled] .btn-twitter:focus,
  4569. .btn-twitter.disabled.focus,
  4570. .btn-twitter[disabled].focus,
  4571. fieldset[disabled] .btn-twitter.focus,
  4572. .btn-twitter.disabled:active,
  4573. .btn-twitter[disabled]:active,
  4574. fieldset[disabled] .btn-twitter:active,
  4575. .btn-twitter.disabled.active,
  4576. .btn-twitter[disabled].active,
  4577. fieldset[disabled] .btn-twitter.active {
  4578. background-color: #55acee;
  4579. border-color: rgba(0, 0, 0, 0.2);
  4580. }
  4581. .btn-twitter .badge {
  4582. color: #55acee;
  4583. background-color: #ffffff;
  4584. }
  4585. .btn-twitter:hover,
  4586. .btn-twitter:focus,
  4587. .btn-twitter:active,
  4588. .btn-twitter.active,
  4589. .open .dropdown-toggle.btn-twitter {
  4590. color: #ffffff;
  4591. background-color: #309aea;
  4592. border-color: rgba(0, 0, 0, 0.2);
  4593. }
  4594. .btn-twitter:active,
  4595. .btn-twitter.active,
  4596. .open .dropdown-toggle.btn-twitter {
  4597. background-image: none;
  4598. }
  4599. .btn-twitter.disabled,
  4600. .btn-twitter[disabled],
  4601. fieldset[disabled] .btn-twitter,
  4602. .btn-twitter.disabled:hover,
  4603. .btn-twitter[disabled]:hover,
  4604. fieldset[disabled] .btn-twitter:hover,
  4605. .btn-twitter.disabled:focus,
  4606. .btn-twitter[disabled]:focus,
  4607. fieldset[disabled] .btn-twitter:focus,
  4608. .btn-twitter.disabled:active,
  4609. .btn-twitter[disabled]:active,
  4610. fieldset[disabled] .btn-twitter:active,
  4611. .btn-twitter.disabled.active,
  4612. .btn-twitter[disabled].active,
  4613. fieldset[disabled] .btn-twitter.active {
  4614. background-color: #55acee;
  4615. border-color: rgba(0, 0, 0, 0.2);
  4616. }
  4617. .btn-twitter .badge {
  4618. color: #55acee;
  4619. background-color: #ffffff;
  4620. }
  4621. .btn-vk {
  4622. color: #ffffff;
  4623. background-color: #587ea3;
  4624. border-color: rgba(0, 0, 0, 0.2);
  4625. }
  4626. .btn-vk:hover,
  4627. .btn-vk:focus,
  4628. .btn-vk.focus,
  4629. .btn-vk:active,
  4630. .btn-vk.active,
  4631. .open > .dropdown-toggle.btn-vk {
  4632. color: #ffffff;
  4633. background-color: #466482;
  4634. border-color: rgba(0, 0, 0, 0.2);
  4635. }
  4636. .btn-vk:active,
  4637. .btn-vk.active,
  4638. .open > .dropdown-toggle.btn-vk {
  4639. background-image: none;
  4640. }
  4641. .btn-vk.disabled,
  4642. .btn-vk[disabled],
  4643. fieldset[disabled] .btn-vk,
  4644. .btn-vk.disabled:hover,
  4645. .btn-vk[disabled]:hover,
  4646. fieldset[disabled] .btn-vk:hover,
  4647. .btn-vk.disabled:focus,
  4648. .btn-vk[disabled]:focus,
  4649. fieldset[disabled] .btn-vk:focus,
  4650. .btn-vk.disabled.focus,
  4651. .btn-vk[disabled].focus,
  4652. fieldset[disabled] .btn-vk.focus,
  4653. .btn-vk.disabled:active,
  4654. .btn-vk[disabled]:active,
  4655. fieldset[disabled] .btn-vk:active,
  4656. .btn-vk.disabled.active,
  4657. .btn-vk[disabled].active,
  4658. fieldset[disabled] .btn-vk.active {
  4659. background-color: #587ea3;
  4660. border-color: rgba(0, 0, 0, 0.2);
  4661. }
  4662. .btn-vk .badge {
  4663. color: #587ea3;
  4664. background-color: #ffffff;
  4665. }
  4666. .btn-vk:hover,
  4667. .btn-vk:focus,
  4668. .btn-vk:active,
  4669. .btn-vk.active,
  4670. .open .dropdown-toggle.btn-vk {
  4671. color: #ffffff;
  4672. background-color: #4a6a89;
  4673. border-color: rgba(0, 0, 0, 0.2);
  4674. }
  4675. .btn-vk:active,
  4676. .btn-vk.active,
  4677. .open .dropdown-toggle.btn-vk {
  4678. background-image: none;
  4679. }
  4680. .btn-vk.disabled,
  4681. .btn-vk[disabled],
  4682. fieldset[disabled] .btn-vk,
  4683. .btn-vk.disabled:hover,
  4684. .btn-vk[disabled]:hover,
  4685. fieldset[disabled] .btn-vk:hover,
  4686. .btn-vk.disabled:focus,
  4687. .btn-vk[disabled]:focus,
  4688. fieldset[disabled] .btn-vk:focus,
  4689. .btn-vk.disabled:active,
  4690. .btn-vk[disabled]:active,
  4691. fieldset[disabled] .btn-vk:active,
  4692. .btn-vk.disabled.active,
  4693. .btn-vk[disabled].active,
  4694. fieldset[disabled] .btn-vk.active {
  4695. background-color: #587ea3;
  4696. border-color: rgba(0, 0, 0, 0.2);
  4697. }
  4698. .btn-vk .badge {
  4699. color: #587ea3;
  4700. background-color: #ffffff;
  4701. }
  4702. /*
  4703. * Plugin: Full Calendar
  4704. * ---------------------
  4705. */
  4706. .fc-button {
  4707. background: #f4f4f4;
  4708. background-image: none;
  4709. color: #444;
  4710. border-color: #ddd;
  4711. border-bottom-color: #ddd;
  4712. }
  4713. .fc-button:hover,
  4714. .fc-button:active,
  4715. .fc-button.hover {
  4716. background-color: #e9e9e9;
  4717. }
  4718. .fc-header-title h2 {
  4719. font-size: 15px;
  4720. line-height: 1.6em;
  4721. color: #666;
  4722. margin-left: 10px;
  4723. }
  4724. .fc-header-right {
  4725. padding-right: 10px;
  4726. }
  4727. .fc-header-left {
  4728. padding-left: 10px;
  4729. }
  4730. .fc-widget-header {
  4731. background: #fafafa;
  4732. }
  4733. .fc-grid {
  4734. width: 100%;
  4735. border: 0;
  4736. }
  4737. .fc-widget-header:first-of-type,
  4738. .fc-widget-content:first-of-type {
  4739. border-left: 0;
  4740. border-right: 0;
  4741. }
  4742. .fc-widget-header:last-of-type,
  4743. .fc-widget-content:last-of-type {
  4744. border-right: 0;
  4745. }
  4746. .fc-toolbar {
  4747. padding: 10px;
  4748. margin: 0;
  4749. }
  4750. .fc-day-number {
  4751. font-size: 20px;
  4752. font-weight: 300;
  4753. padding-right: 10px;
  4754. }
  4755. .fc-color-picker {
  4756. list-style: none;
  4757. margin: 0;
  4758. padding: 0;
  4759. }
  4760. .fc-color-picker > li {
  4761. float: left;
  4762. font-size: 30px;
  4763. margin-right: 5px;
  4764. line-height: 30px;
  4765. }
  4766. .fc-color-picker > li .fa {
  4767. -webkit-transition: transform linear 0.3s;
  4768. -o-transition: transform linear 0.3s;
  4769. transition: transform linear 0.3s;
  4770. }
  4771. .fc-color-picker > li .fa:hover {
  4772. -webkit-transform: rotate(30deg);
  4773. -ms-transform: rotate(30deg);
  4774. -o-transform: rotate(30deg);
  4775. transform: rotate(30deg);
  4776. }
  4777. #add-new-event {
  4778. -webkit-transition: all linear 0.3s;
  4779. -o-transition: all linear 0.3s;
  4780. transition: all linear 0.3s;
  4781. }
  4782. .external-event {
  4783. padding: 5px 10px;
  4784. font-weight: bold;
  4785. margin-bottom: 4px;
  4786. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  4787. text-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  4788. border-radius: 3px;
  4789. cursor: move;
  4790. }
  4791. .external-event:hover {
  4792. box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.2);
  4793. }
  4794. /*
  4795. * General: Miscellaneous
  4796. * ----------------------
  4797. */
  4798. /* 10px padding and margins */
  4799. .pad {
  4800. padding: 10px;
  4801. }
  4802. .margin {
  4803. margin: 10px;
  4804. }
  4805. /* Display inline */
  4806. .inline {
  4807. display: inline;
  4808. width: auto;
  4809. }
  4810. /* Description Blocks */
  4811. .description-block {
  4812. display: block;
  4813. margin: 10px 0;
  4814. text-align: center;
  4815. }
  4816. .description-block.margin-bottom {
  4817. margin-bottom: 25px;
  4818. }
  4819. .description-block > .description-header {
  4820. margin: 0;
  4821. padding: 0;
  4822. font-weight: 600;
  4823. font-size: 16px;
  4824. }
  4825. .description-block > .description-text {
  4826. text-transform: uppercase;
  4827. }
  4828. /* Background colors */
  4829. .bg-red,
  4830. .bg-yellow,
  4831. .bg-aqua,
  4832. .bg-blue,
  4833. .bg-light-blue,
  4834. .bg-green,
  4835. .bg-navy,
  4836. .bg-teal,
  4837. .bg-olive,
  4838. .bg-lime,
  4839. .bg-orange,
  4840. .bg-fuchsia,
  4841. .bg-purple,
  4842. .bg-maroon,
  4843. .bg-black,
  4844. .bg-red-active,
  4845. .bg-yellow-active,
  4846. .bg-aqua-active,
  4847. .bg-blue-active,
  4848. .bg-light-blue-active,
  4849. .bg-green-active,
  4850. .bg-navy-active,
  4851. .bg-teal-active,
  4852. .bg-olive-active,
  4853. .bg-lime-active,
  4854. .bg-orange-active,
  4855. .bg-fuchsia-active,
  4856. .bg-purple-active,
  4857. .bg-maroon-active,
  4858. .bg-black-active,
  4859. .callout.callout-danger,
  4860. .callout.callout-warning,
  4861. .callout.callout-info,
  4862. .callout.callout-success,
  4863. .alert-success,
  4864. .alert-danger,
  4865. .alert-error,
  4866. .alert-warning,
  4867. .alert-info,
  4868. .label-danger,
  4869. .label-info,
  4870. .label-waring,
  4871. .label-primary,
  4872. .label-success,
  4873. .modal-primary .modal-body,
  4874. .modal-primary .modal-header,
  4875. .modal-primary .modal-footer,
  4876. .modal-warning .modal-body,
  4877. .modal-warning .modal-header,
  4878. .modal-warning .modal-footer,
  4879. .modal-info .modal-body,
  4880. .modal-info .modal-header,
  4881. .modal-info .modal-footer,
  4882. .modal-success .modal-body,
  4883. .modal-success .modal-header,
  4884. .modal-success .modal-footer,
  4885. .modal-danger .modal-body,
  4886. .modal-danger .modal-header,
  4887. .modal-danger .modal-footer {
  4888. color: #fff !important;
  4889. }
  4890. .bg-gray {
  4891. color: #000;
  4892. background-color: #d2d6de !important;
  4893. }
  4894. .bg-black {
  4895. background-color: #222222 !important;
  4896. }
  4897. .bg-red,
  4898. .callout.callout-danger,
  4899. .alert-danger,
  4900. .alert-error,
  4901. .label-danger,
  4902. .modal-danger .modal-body {
  4903. background-color: #dd4b39 !important;
  4904. }
  4905. .bg-yellow,
  4906. .callout.callout-warning,
  4907. .alert-warning,
  4908. .label-waring,
  4909. .modal-warning .modal-body {
  4910. background-color: #f39c12 !important;
  4911. }
  4912. .bg-aqua,
  4913. .callout.callout-info,
  4914. .alert-info,
  4915. .label-info,
  4916. .modal-info .modal-body {
  4917. background-color: #00c0ef !important;
  4918. }
  4919. .bg-blue {
  4920. background-color: #0073b7 !important;
  4921. }
  4922. .bg-light-blue,
  4923. .label-primary,
  4924. .modal-primary .modal-body {
  4925. background-color: #3c8dbc !important;
  4926. }
  4927. .bg-green,
  4928. .callout.callout-success,
  4929. .alert-success,
  4930. .label-success,
  4931. .modal-success .modal-body {
  4932. background-color: #00a65a !important;
  4933. }
  4934. .bg-navy {
  4935. background-color: #001f3f !important;
  4936. }
  4937. .bg-teal {
  4938. background-color: #39cccc !important;
  4939. }
  4940. .bg-olive {
  4941. background-color: #3d9970 !important;
  4942. }
  4943. .bg-lime {
  4944. background-color: #01ff70 !important;
  4945. }
  4946. .bg-orange {
  4947. background-color: #ff851b !important;
  4948. }
  4949. .bg-fuchsia {
  4950. background-color: #f012be !important;
  4951. }
  4952. .bg-purple {
  4953. background-color: #605ca8 !important;
  4954. }
  4955. .bg-maroon {
  4956. background-color: #d81b60 !important;
  4957. }
  4958. .bg-gray-active {
  4959. color: #000;
  4960. background-color: #b5bbc8 !important;
  4961. }
  4962. .bg-black-active {
  4963. background-color: #080808 !important;
  4964. }
  4965. .bg-red-active,
  4966. .modal-danger .modal-header,
  4967. .modal-danger .modal-footer {
  4968. background-color: #d33724 !important;
  4969. }
  4970. .bg-yellow-active,
  4971. .modal-warning .modal-header,
  4972. .modal-warning .modal-footer {
  4973. background-color: #db8b0b !important;
  4974. }
  4975. .bg-aqua-active,
  4976. .modal-info .modal-header,
  4977. .modal-info .modal-footer {
  4978. background-color: #00a7d0 !important;
  4979. }
  4980. .bg-blue-active {
  4981. background-color: #005384 !important;
  4982. }
  4983. .bg-light-blue-active,
  4984. .modal-primary .modal-header,
  4985. .modal-primary .modal-footer {
  4986. background-color: #357ca5 !important;
  4987. }
  4988. .bg-green-active,
  4989. .modal-success .modal-header,
  4990. .modal-success .modal-footer {
  4991. background-color: #008d4c !important;
  4992. }
  4993. .bg-navy-active {
  4994. background-color: #00060c !important;
  4995. }
  4996. .bg-teal-active {
  4997. background-color: #2ba7a7 !important;
  4998. }
  4999. .bg-olive-active {
  5000. background-color: #2e7555 !important;
  5001. }
  5002. .bg-lime-active {
  5003. background-color: #00cd5a !important;
  5004. }
  5005. .bg-orange-active {
  5006. background-color: #e76b00 !important;
  5007. }
  5008. .bg-fuchsia-active {
  5009. background-color: #c30c9a !important;
  5010. }
  5011. .bg-purple-active {
  5012. background-color: #4c4988 !important;
  5013. }
  5014. .bg-maroon-active {
  5015. background-color: #ab154c !important;
  5016. }
  5017. [class^="bg-"].disabled {
  5018. opacity: 0.65;
  5019. filter: alpha(opacity=65);
  5020. }
  5021. /* Text colors */
  5022. .text-red {
  5023. color: #dd4b39 !important;
  5024. }
  5025. .text-yellow {
  5026. color: #f39c12 !important;
  5027. }
  5028. .text-aqua {
  5029. color: #00c0ef !important;
  5030. }
  5031. .text-blue {
  5032. color: #0073b7 !important;
  5033. }
  5034. .text-black {
  5035. color: #222222 !important;
  5036. }
  5037. .text-light-blue {
  5038. color: #3c8dbc !important;
  5039. }
  5040. .text-green {
  5041. color: #00a65a !important;
  5042. }
  5043. .text-gray {
  5044. color: #d2d6de !important;
  5045. }
  5046. .text-navy {
  5047. color: #001f3f !important;
  5048. }
  5049. .text-teal {
  5050. color: #39cccc !important;
  5051. }
  5052. .text-olive {
  5053. color: #3d9970 !important;
  5054. }
  5055. .text-lime {
  5056. color: #01ff70 !important;
  5057. }
  5058. .text-orange {
  5059. color: #ff851b !important;
  5060. }
  5061. .text-fuchsia {
  5062. color: #f012be !important;
  5063. }
  5064. .text-purple {
  5065. color: #605ca8 !important;
  5066. }
  5067. .text-maroon {
  5068. color: #d81b60 !important;
  5069. }
  5070. /*Hide elements by display none only*/
  5071. .hide {
  5072. display: none !important;
  5073. }
  5074. /* Remove borders */
  5075. .no-border {
  5076. border: 0px !important;
  5077. }
  5078. /* Remove padding */
  5079. .no-padding {
  5080. padding: 0px !important;
  5081. }
  5082. /* Remove margins */
  5083. .no-margin {
  5084. margin: 0px !important;
  5085. }
  5086. /* Remove box shadow */
  5087. .no-shadow {
  5088. box-shadow: none!important;
  5089. }
  5090. /* Unstyled List */
  5091. .list-unstyled,
  5092. .chart-legend,
  5093. .contacts-list,
  5094. .users-list {
  5095. list-style: none;
  5096. margin: 0;
  5097. padding: 0;
  5098. }
  5099. /* Remove border radius */
  5100. .flat {
  5101. border-radius: 0 !important;
  5102. }
  5103. .text-bold,
  5104. .text-bold.table td,
  5105. .text-bold.table th {
  5106. font-weight: 700;
  5107. }
  5108. /* _fix for sparkline tooltip */
  5109. .jqstooltip {
  5110. padding: 5px!important;
  5111. width: auto!important;
  5112. height: auto!important;
  5113. }
  5114. /*
  5115. Gradient Background colors
  5116. */
  5117. .bg-teal-gradient {
  5118. background: #39cccc !important;
  5119. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #39cccc), color-stop(1, #7adddd)) !important;
  5120. background: -ms-linear-gradient(bottom, #39cccc, #7adddd) !important;
  5121. background: -moz-linear-gradient(center bottom, #39cccc 0%, #7adddd 100%) !important;
  5122. background: -o-linear-gradient(#7adddd, #39cccc) !important;
  5123. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7adddd', endColorstr='#39cccc', GradientType=0) !important;
  5124. color: #fff;
  5125. }
  5126. .bg-light-blue-gradient {
  5127. background: #3c8dbc !important;
  5128. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #3c8dbc), color-stop(1, #67a8ce)) !important;
  5129. background: -ms-linear-gradient(bottom, #3c8dbc, #67a8ce) !important;
  5130. background: -moz-linear-gradient(center bottom, #3c8dbc 0%, #67a8ce 100%) !important;
  5131. background: -o-linear-gradient(#67a8ce, #3c8dbc) !important;
  5132. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#67a8ce', endColorstr='#3c8dbc', GradientType=0) !important;
  5133. color: #fff;
  5134. }
  5135. .bg-blue-gradient {
  5136. background: #0073b7 !important;
  5137. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #0073b7), color-stop(1, #0089db)) !important;
  5138. background: -ms-linear-gradient(bottom, #0073b7, #0089db) !important;
  5139. background: -moz-linear-gradient(center bottom, #0073b7 0%, #0089db 100%) !important;
  5140. background: -o-linear-gradient(#0089db, #0073b7) !important;
  5141. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0089db', endColorstr='#0073b7', GradientType=0) !important;
  5142. color: #fff;
  5143. }
  5144. .bg-aqua-gradient {
  5145. background: #00c0ef !important;
  5146. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #00c0ef), color-stop(1, #14d1ff)) !important;
  5147. background: -ms-linear-gradient(bottom, #00c0ef, #14d1ff) !important;
  5148. background: -moz-linear-gradient(center bottom, #00c0ef 0%, #14d1ff 100%) !important;
  5149. background: -o-linear-gradient(#14d1ff, #00c0ef) !important;
  5150. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#14d1ff', endColorstr='#00c0ef', GradientType=0) !important;
  5151. color: #fff;
  5152. }
  5153. .bg-yellow-gradient {
  5154. background: #f39c12 !important;
  5155. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #f39c12), color-stop(1, #f7bc60)) !important;
  5156. background: -ms-linear-gradient(bottom, #f39c12, #f7bc60) !important;
  5157. background: -moz-linear-gradient(center bottom, #f39c12 0%, #f7bc60 100%) !important;
  5158. background: -o-linear-gradient(#f7bc60, #f39c12) !important;
  5159. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7bc60', endColorstr='#f39c12', GradientType=0) !important;
  5160. color: #fff;
  5161. }
  5162. .bg-purple-gradient {
  5163. background: #605ca8 !important;
  5164. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #605ca8), color-stop(1, #9491c4)) !important;
  5165. background: -ms-linear-gradient(bottom, #605ca8, #9491c4) !important;
  5166. background: -moz-linear-gradient(center bottom, #605ca8 0%, #9491c4 100%) !important;
  5167. background: -o-linear-gradient(#9491c4, #605ca8) !important;
  5168. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#9491c4', endColorstr='#605ca8', GradientType=0) !important;
  5169. color: #fff;
  5170. }
  5171. .bg-green-gradient {
  5172. background: #00a65a !important;
  5173. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #00a65a), color-stop(1, #00ca6d)) !important;
  5174. background: -ms-linear-gradient(bottom, #00a65a, #00ca6d) !important;
  5175. background: -moz-linear-gradient(center bottom, #00a65a 0%, #00ca6d 100%) !important;
  5176. background: -o-linear-gradient(#00ca6d, #00a65a) !important;
  5177. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ca6d', endColorstr='#00a65a', GradientType=0) !important;
  5178. color: #fff;
  5179. }
  5180. .bg-red-gradient {
  5181. background: #dd4b39 !important;
  5182. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #dd4b39), color-stop(1, #e47365)) !important;
  5183. background: -ms-linear-gradient(bottom, #dd4b39, #e47365) !important;
  5184. background: -moz-linear-gradient(center bottom, #dd4b39 0%, #e47365 100%) !important;
  5185. background: -o-linear-gradient(#e47365, #dd4b39) !important;
  5186. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e47365', endColorstr='#dd4b39', GradientType=0) !important;
  5187. color: #fff;
  5188. }
  5189. .bg-black-gradient {
  5190. background: #222222 !important;
  5191. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #222222), color-stop(1, #3c3c3c)) !important;
  5192. background: -ms-linear-gradient(bottom, #222222, #3c3c3c) !important;
  5193. background: -moz-linear-gradient(center bottom, #222222 0%, #3c3c3c 100%) !important;
  5194. background: -o-linear-gradient(#3c3c3c, #222222) !important;
  5195. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3c3c3c', endColorstr='#222222', GradientType=0) !important;
  5196. color: #fff;
  5197. }
  5198. .bg-maroon-gradient {
  5199. background: #d81b60 !important;
  5200. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #d81b60), color-stop(1, #e73f7c)) !important;
  5201. background: -ms-linear-gradient(bottom, #d81b60, #e73f7c) !important;
  5202. background: -moz-linear-gradient(center bottom, #d81b60 0%, #e73f7c 100%) !important;
  5203. background: -o-linear-gradient(#e73f7c, #d81b60) !important;
  5204. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e73f7c', endColorstr='#d81b60', GradientType=0) !important;
  5205. color: #fff;
  5206. }
  5207. .connectedSortable {
  5208. min-height: 100px;
  5209. }
  5210. .ui-helper-hidden-accessible {
  5211. border: 0;
  5212. clip: rect(0 0 0 0);
  5213. height: 1px;
  5214. margin: -1px;
  5215. overflow: hidden;
  5216. padding: 0;
  5217. position: absolute;
  5218. width: 1px;
  5219. }
  5220. .sort-highlight {
  5221. background: #f4f4f4;
  5222. border: 1px dashed #ddd;
  5223. margin-bottom: 10px;
  5224. }
  5225. .full-opacity-hover {
  5226. opacity: 0.65;
  5227. filter: alpha(opacity=65);
  5228. }
  5229. .full-opacity-hover:hover {
  5230. opacity: 1;
  5231. filter: alpha(opacity=100);
  5232. }