AdminLTE.css 99 KB

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