login_style.css 110 KB

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