login.css 109 KB

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