AdminLTE.css 87 KB

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