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. * AdminLTE v1.2
  5. * Author: AlmsaeedStudio.com
  6. * License: Open source - MIT
  7. * Please visit http://opensource.org/licenses/MIT for more information
  8. !*/
  9. /*
  10. Core: General style
  11. ----------------------------
  12. */
  13. html,
  14. body {
  15. overflow-x: hidden!important;
  16. font-family: 'Source Sans Pro', sans-serif;
  17. -webkit-font-smoothing: antialiased;
  18. min-height: 100%;
  19. background: #f9f9f9;
  20. }
  21. a {
  22. color: #3c8dbc;
  23. }
  24. a:hover,
  25. a:active,
  26. a:focus {
  27. outline: none;
  28. text-decoration: none;
  29. color: #72afd2;
  30. }
  31. /* Layouts */
  32. .wrapper {
  33. min-height: 100%;
  34. }
  35. .wrapper:before,
  36. .wrapper:after {
  37. display: table;
  38. content: " ";
  39. }
  40. .wrapper:after {
  41. clear: both;
  42. }
  43. /* Header */
  44. body > .header {
  45. position: absolute;
  46. top: 0;
  47. left: 0;
  48. right: 0;
  49. z-index: 1030;
  50. }
  51. /* Define 2 column template */
  52. .right-side,
  53. .left-side {
  54. min-height: 100%;
  55. display: block;
  56. }
  57. /*right side - contins main content*/
  58. .right-side {
  59. background-color: #f9f9f9;
  60. margin-left: 220px;
  61. }
  62. /*left side - contains sidebar*/
  63. .left-side {
  64. position: absolute;
  65. width: 220px;
  66. top: 0;
  67. }
  68. @media screen and (min-width: 992px) {
  69. .left-side {
  70. top: 50px;
  71. }
  72. /*Right side strech mode*/
  73. .right-side.strech {
  74. margin-left: 0;
  75. }
  76. .right-side.strech > .content-header {
  77. margin-top: 0px;
  78. }
  79. /* Left side collapse */
  80. .left-side.collapse-left {
  81. left: -220px;
  82. }
  83. }
  84. /*Give content full width on xs screens*/
  85. @media screen and (max-width: 992px) {
  86. .right-side {
  87. margin-left: 0;
  88. }
  89. }
  90. /*
  91. By default the layout is not fixed but if you add the class .fixed to the body element
  92. the sidebar and the navbar will automatically become poisitioned fixed
  93. */
  94. body.fixed > .header,
  95. body.fixed .left-side,
  96. body.fixed .navbar {
  97. position: fixed;
  98. }
  99. body.fixed > .header {
  100. top: 0;
  101. right: 0;
  102. left: 0;
  103. }
  104. body.fixed .navbar {
  105. left: 0;
  106. right: 0;
  107. }
  108. body.fixed .wrapper {
  109. margin-top: 50px;
  110. }
  111. /* Content */
  112. .content {
  113. padding: 20px 15px;
  114. background: #f9f9f9;
  115. }
  116. /* Utility */
  117. /* H1 - H6 font */
  118. h1,
  119. h2,
  120. h3,
  121. h4,
  122. h5,
  123. h6,
  124. .h1,
  125. .h2,
  126. .h3,
  127. .h4,
  128. .h5,
  129. .h6 {
  130. font-family: 'Source Sans Pro', sans-serif;
  131. }
  132. /* Page Header */
  133. .page-header {
  134. margin: 10px 0 20px 0;
  135. font-size: 22px;
  136. }
  137. .page-header > small {
  138. color: #666;
  139. display: block;
  140. margin-top: 5px;
  141. }
  142. /* All images should be responsive */
  143. img {
  144. max-width: 100% !important;
  145. }
  146. .sort-highlight {
  147. background: #f4f4f4;
  148. border: 1px dashed #ddd;
  149. margin-bottom: 10px;
  150. }
  151. /* 10px padding and margins */
  152. .pad {
  153. padding: 10px;
  154. }
  155. .margin {
  156. margin: 10px;
  157. }
  158. /* Display inline */
  159. .inline {
  160. display: inline;
  161. width: auto;
  162. }
  163. /* Background colors */
  164. .bg-red,
  165. .bg-yellow,
  166. .bg-aqua,
  167. .bg-blue,
  168. .bg-light-blue,
  169. .bg-green,
  170. .bg-navy,
  171. .bg-teal,
  172. .bg-olive,
  173. .bg-lime,
  174. .bg-orange,
  175. .bg-fuchsia,
  176. .bg-purple,
  177. .bg-maroon,
  178. .bg-black {
  179. color: #f9f9f9 !important;
  180. }
  181. .bg-gray {
  182. background-color: #eaeaec !important;
  183. }
  184. .bg-black {
  185. background-color: #222222 !important;
  186. }
  187. .bg-red {
  188. background-color: #f56954 !important;
  189. }
  190. .bg-yellow {
  191. background-color: #f39c12 !important;
  192. }
  193. .bg-aqua {
  194. background-color: #00c0ef !important;
  195. }
  196. .bg-blue {
  197. background-color: #0073b7 !important;
  198. }
  199. .bg-light-blue {
  200. background-color: #3c8dbc !important;
  201. }
  202. .bg-green {
  203. background-color: #00a65a !important;
  204. }
  205. .bg-navy {
  206. background-color: #001f3f !important;
  207. }
  208. .bg-teal {
  209. background-color: #39cccc !important;
  210. }
  211. .bg-olive {
  212. background-color: #3d9970 !important;
  213. }
  214. .bg-lime {
  215. background-color: #01ff70 !important;
  216. }
  217. .bg-orange {
  218. background-color: #ff851b !important;
  219. }
  220. .bg-fuchsia {
  221. background-color: #f012be !important;
  222. }
  223. .bg-purple {
  224. background-color: #932ab6 !important;
  225. }
  226. .bg-maroon {
  227. background-color: #85144b !important;
  228. }
  229. /* Text colors */
  230. .text-red {
  231. color: #f56954 !important;
  232. }
  233. .text-yellow {
  234. color: #f39c12 !important;
  235. }
  236. .text-aqua {
  237. color: #00c0ef !important;
  238. }
  239. .text-blue {
  240. color: #0073b7 !important;
  241. }
  242. .text-black {
  243. color: #222222 !important;
  244. }
  245. .text-light-blue {
  246. color: #3c8dbc !important;
  247. }
  248. .text-green {
  249. color: #00a65a !important;
  250. }
  251. .text-navy {
  252. color: #001f3f !important;
  253. }
  254. .text-teal {
  255. color: #39cccc !important;
  256. }
  257. .text-olive {
  258. color: #3d9970 !important;
  259. }
  260. .text-lime {
  261. color: #01ff70 !important;
  262. }
  263. .text-orange {
  264. color: #ff851b !important;
  265. }
  266. .text-fuchsia {
  267. color: #f012be !important;
  268. }
  269. .text-purple {
  270. color: #932ab6 !important;
  271. }
  272. .text-maroon {
  273. color: #85144b !important;
  274. }
  275. /*Hide elements by display none only*/
  276. .hide {
  277. display: none !important;
  278. }
  279. /* Remove borders */
  280. .no-border {
  281. border: 0px !important;
  282. }
  283. /* Remove padding */
  284. .no-padding {
  285. padding: 0px !important;
  286. }
  287. /* Remove margins */
  288. .no-margin {
  289. margin: 0px !important;
  290. }
  291. /* Remove box shadow */
  292. .no-shadow {
  293. box-shadow: none!important;
  294. }
  295. /* Don't display when printing */
  296. @media print {
  297. .no-print {
  298. display: none;
  299. }
  300. .left-side,
  301. .header,
  302. .content-header {
  303. display: none;
  304. }
  305. .right-side {
  306. margin: 0;
  307. }
  308. }
  309. /* Remove border radius */
  310. .flat {
  311. -webkit-border-radius: 0 !important;
  312. -moz-border-radius: 0 !important;
  313. border-radius: 0 !important;
  314. }
  315. /* Change the color of the striped tables */
  316. .table-striped > tbody > tr:nth-child(odd) > td,
  317. .table-striped > tbody > tr:nth-child(odd) > th {
  318. background-color: #f3f4f5;
  319. }
  320. .table.no-border,
  321. .table.no-border td,
  322. .table.no-border th {
  323. border: 0;
  324. }
  325. /* .text-center in tables */
  326. table.text-center,
  327. table.text-center td,
  328. table.text-center th {
  329. text-align: center;
  330. }
  331. .table.align th {
  332. text-align: left;
  333. }
  334. .table.align td {
  335. text-align: right;
  336. }
  337. .text-bold,
  338. .text-bold.table td,
  339. .text-bold.table th {
  340. font-weight: 700;
  341. }
  342. .border-radius-none {
  343. -webkit-border-radius: 0 !important;
  344. -moz-border-radius: 0 !important;
  345. border-radius: 0 !important;
  346. }
  347. /* _fix for sparkline tooltip */
  348. .jqstooltip {
  349. padding: 5px!important;
  350. width: auto!important;
  351. height: auto!important;
  352. }
  353. /*
  354. Gradient Background colors
  355. */
  356. .bg-teal-gradient {
  357. background: #39cccc !important;
  358. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #39cccc), color-stop(1, #7adddd)) !important;
  359. background: -ms-linear-gradient(bottom, #39cccc, #7adddd) !important;
  360. background: -moz-linear-gradient(center bottom, #39cccc 0%, #7adddd 100%) !important;
  361. background: -o-linear-gradient(#7adddd, #39cccc) !important;
  362. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#7adddd', endColorstr='#39cccc', GradientType=0) !important;
  363. color: #fff;
  364. }
  365. .bg-light-blue-gradient {
  366. background: #3c8dbc !important;
  367. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #3c8dbc), color-stop(1, #67a8ce)) !important;
  368. background: -ms-linear-gradient(bottom, #3c8dbc, #67a8ce) !important;
  369. background: -moz-linear-gradient(center bottom, #3c8dbc 0%, #67a8ce 100%) !important;
  370. background: -o-linear-gradient(#67a8ce, #3c8dbc) !important;
  371. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#67a8ce', endColorstr='#3c8dbc', GradientType=0) !important;
  372. color: #fff;
  373. }
  374. .bg-blue-gradient {
  375. background: #0073b7 !important;
  376. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #0073b7), color-stop(1, #0089db)) !important;
  377. background: -ms-linear-gradient(bottom, #0073b7, #0089db) !important;
  378. background: -moz-linear-gradient(center bottom, #0073b7 0%, #0089db 100%) !important;
  379. background: -o-linear-gradient(#0089db, #0073b7) !important;
  380. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0089db', endColorstr='#0073b7', GradientType=0) !important;
  381. color: #fff;
  382. }
  383. .bg-aqua-gradient {
  384. background: #00c0ef !important;
  385. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #00c0ef), color-stop(1, #14d1ff)) !important;
  386. background: -ms-linear-gradient(bottom, #00c0ef, #14d1ff) !important;
  387. background: -moz-linear-gradient(center bottom, #00c0ef 0%, #14d1ff 100%) !important;
  388. background: -o-linear-gradient(#14d1ff, #00c0ef) !important;
  389. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#14d1ff', endColorstr='#00c0ef', GradientType=0) !important;
  390. color: #fff;
  391. }
  392. .bg-yellow-gradient {
  393. background: #f39c12 !important;
  394. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #f39c12), color-stop(1, #f7bc60)) !important;
  395. background: -ms-linear-gradient(bottom, #f39c12, #f7bc60) !important;
  396. background: -moz-linear-gradient(center bottom, #f39c12 0%, #f7bc60 100%) !important;
  397. background: -o-linear-gradient(#f7bc60, #f39c12) !important;
  398. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7bc60', endColorstr='#f39c12', GradientType=0) !important;
  399. color: #fff;
  400. }
  401. .bg-purple-gradient {
  402. background: #932ab6 !important;
  403. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #932ab6), color-stop(1, #b959d9)) !important;
  404. background: -ms-linear-gradient(bottom, #932ab6, #b959d9) !important;
  405. background: -moz-linear-gradient(center bottom, #932ab6 0%, #b959d9 100%) !important;
  406. background: -o-linear-gradient(#b959d9, #932ab6) !important;
  407. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b959d9', endColorstr='#932ab6', GradientType=0) !important;
  408. color: #fff;
  409. }
  410. .bg-green-gradient {
  411. background: #00a65a !important;
  412. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #00a65a), color-stop(1, #00ca6d)) !important;
  413. background: -ms-linear-gradient(bottom, #00a65a, #00ca6d) !important;
  414. background: -moz-linear-gradient(center bottom, #00a65a 0%, #00ca6d 100%) !important;
  415. background: -o-linear-gradient(#00ca6d, #00a65a) !important;
  416. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ca6d', endColorstr='#00a65a', GradientType=0) !important;
  417. color: #fff;
  418. }
  419. .bg-red-gradient {
  420. background: #f56954 !important;
  421. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #f56954), color-stop(1, #f89384)) !important;
  422. background: -ms-linear-gradient(bottom, #f56954, #f89384) !important;
  423. background: -moz-linear-gradient(center bottom, #f56954 0%, #f89384 100%) !important;
  424. background: -o-linear-gradient(#f89384, #f56954) !important;
  425. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f89384', endColorstr='#f56954', GradientType=0) !important;
  426. color: #fff;
  427. }
  428. .bg-black-gradient {
  429. background: #222222 !important;
  430. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #222222), color-stop(1, #3c3c3c)) !important;
  431. background: -ms-linear-gradient(bottom, #222222, #3c3c3c) !important;
  432. background: -moz-linear-gradient(center bottom, #222222 0%, #3c3c3c 100%) !important;
  433. background: -o-linear-gradient(#3c3c3c, #222222) !important;
  434. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3c3c3c', endColorstr='#222222', GradientType=0) !important;
  435. color: #fff;
  436. }
  437. .bg-maroon-gradient {
  438. background: #85144b !important;
  439. background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #85144b), color-stop(1, #b11b64)) !important;
  440. background: -ms-linear-gradient(bottom, #85144b, #b11b64) !important;
  441. background: -moz-linear-gradient(center bottom, #85144b 0%, #b11b64 100%) !important;
  442. background: -o-linear-gradient(#b11b64, #85144b) !important;
  443. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b11b64', endColorstr='#85144b', GradientType=0) !important;
  444. color: #fff;
  445. }
  446. .connectedSortable {
  447. min-height: 100px;
  448. }
  449. /*---------------------------------------------------
  450. LESS Elements 0.9
  451. ---------------------------------------------------
  452. A set of useful LESS mixins
  453. More info at: http://lesselements.com
  454. ---------------------------------------------------*/
  455. /*
  456. Components: navbar, logo and content header
  457. -------------------------------------------------
  458. */
  459. body > .header {
  460. position: relative;
  461. max-height: 100px;
  462. z-index: 1030;
  463. }
  464. body > .header .navbar {
  465. height: 50px;
  466. margin-bottom: 0;
  467. margin-left: 220px;
  468. }
  469. body > .header .navbar .sidebar-toggle {
  470. float: left;
  471. padding: 9px 5px;
  472. margin-top: 8px;
  473. margin-right: 0;
  474. margin-bottom: 8px;
  475. margin-left: 5px;
  476. background-color: transparent;
  477. background-image: none;
  478. border: 1px solid transparent;
  479. -webkit-border-radius: 0 !important;
  480. -moz-border-radius: 0 !important;
  481. border-radius: 0 !important;
  482. }
  483. body > .header .navbar .sidebar-toggle:hover .icon-bar {
  484. background: #f6f6f6;
  485. }
  486. body > .header .navbar .sidebar-toggle .icon-bar {
  487. display: block;
  488. width: 22px;
  489. height: 2px;
  490. -webkit-border-radius: 4px;
  491. -moz-border-radius: 4px;
  492. border-radius: 4px;
  493. }
  494. body > .header .navbar .sidebar-toggle .icon-bar + .icon-bar {
  495. margin-top: 4px;
  496. }
  497. body > .header .navbar .nav > li.user > a {
  498. font-weight: bold;
  499. }
  500. body > .header .navbar .nav > li.user > a > .fa,
  501. body > .header .navbar .nav > li.user > a > .glyphicon,
  502. body > .header .navbar .nav > li.user > a > .ion {
  503. margin-right: 5px;
  504. }
  505. body > .header .navbar .nav > li > a > .label {
  506. -webkit-border-radius: 50%;
  507. -moz-border-radius: 50%;
  508. border-radius: 50%;
  509. position: absolute;
  510. top: 7px;
  511. right: 2px;
  512. font-size: 10px;
  513. font-weight: normal;
  514. width: 15px;
  515. height: 15px;
  516. line-height: 1.0em;
  517. text-align: center;
  518. padding: 2px;
  519. }
  520. body > .header .navbar .nav > li > a:hover > .label {
  521. top: 3px;
  522. }
  523. body > .header .logo {
  524. float: left;
  525. font-size: 20px;
  526. line-height: 50px;
  527. text-align: center;
  528. padding: 0 10px;
  529. width: 220px;
  530. font-family: 'Kaushan Script', cursive;
  531. font-weight: 500;
  532. height: 50px;
  533. display: block;
  534. }
  535. body > .header .logo .icon {
  536. margin-right: 10px;
  537. }
  538. .right-side > .content-header {
  539. position: relative;
  540. padding: 15px 15px 10px 20px;
  541. }
  542. .right-side > .content-header > h1 {
  543. margin: 0;
  544. font-size: 24px;
  545. }
  546. .right-side > .content-header > h1 > small {
  547. font-size: 15px;
  548. display: inline-block;
  549. padding-left: 4px;
  550. font-weight: 300;
  551. }
  552. .right-side > .content-header > .breadcrumb {
  553. float: right;
  554. background: transparent;
  555. margin-top: 0px;
  556. margin-bottom: 0;
  557. font-size: 12px;
  558. padding: 7px 5px;
  559. position: absolute;
  560. top: 15px;
  561. right: 10px;
  562. -webkit-border-radius: 2px;
  563. -moz-border-radius: 2px;
  564. border-radius: 2px;
  565. }
  566. .right-side > .content-header > .breadcrumb > li > a {
  567. color: #444;
  568. text-decoration: none;
  569. }
  570. .right-side > .content-header > .breadcrumb > li > a > .fa,
  571. .right-side > .content-header > .breadcrumb > li > a > .glyphicon,
  572. .right-side > .content-header > .breadcrumb > li > a > .ion {
  573. margin-right: 5px;
  574. }
  575. .right-side > .content-header > .breadcrumb > li + li:before {
  576. content: '>\00a0';
  577. }
  578. @media screen and (max-width: 767px) {
  579. .right-side > .content-header > .breadcrumb {
  580. position: relative;
  581. margin-top: 5px;
  582. top: 0;
  583. right: 0;
  584. float: none;
  585. background: #efefef;
  586. }
  587. }
  588. @media (max-width: 767px) {
  589. .navbar .navbar-nav > li {
  590. float: left;
  591. }
  592. .navbar-nav {
  593. margin: 0;
  594. float: left;
  595. }
  596. .navbar-nav > li > a {
  597. padding-top: 15px;
  598. padding-bottom: 15px;
  599. line-height: 20px;
  600. }
  601. .navbar .navbar-right {
  602. float: right;
  603. }
  604. }
  605. @media screen and (max-width: 560px) {
  606. body > .header {
  607. position: relative;
  608. }
  609. body > .header .logo,
  610. body > .header .navbar {
  611. width: 100%;
  612. float: none;
  613. position: relative!important;
  614. }
  615. body > .header .navbar {
  616. margin: 0;
  617. }
  618. body.fixed > .header {
  619. position: fixed;
  620. }
  621. body.fixed > .wrapper,
  622. body.fixed .sidebar-offcanvas {
  623. margin-top: 100px!important;
  624. }
  625. }
  626. /*
  627. Component: Sidebar
  628. --------------------------
  629. */
  630. .sidebar {
  631. margin-bottom: 5px;
  632. }
  633. .sidebar .sidebar-form input:focus {
  634. -webkit-box-shadow: none;
  635. -moz-box-shadow: none;
  636. box-shadow: none;
  637. border-color: transparent!important;
  638. }
  639. .sidebar .sidebar-menu {
  640. list-style: none;
  641. margin: 0;
  642. padding: 0;
  643. }
  644. .sidebar .sidebar-menu > li {
  645. margin: 0;
  646. padding: 0;
  647. }
  648. .sidebar .sidebar-menu > li > a {
  649. padding: 12px 5px 12px 15px;
  650. display: block;
  651. }
  652. .sidebar .sidebar-menu > li > a > .fa,
  653. .sidebar .sidebar-menu > li > a > .glyphicon,
  654. .sidebar .sidebar-menu > li > a > .ion {
  655. width: 20px;
  656. }
  657. .sidebar .sidebar-menu .treeview-menu {
  658. display: none;
  659. list-style: none;
  660. padding: 0;
  661. margin: 0;
  662. }
  663. .sidebar .sidebar-menu .treeview-menu > li {
  664. margin: 0;
  665. }
  666. .sidebar .sidebar-menu .treeview-menu > li > a {
  667. padding: 5px 5px 5px 15px;
  668. display: block;
  669. font-size: 14px;
  670. margin: 0px 0px;
  671. }
  672. .sidebar .sidebar-menu .treeview-menu > li > a > .fa,
  673. .sidebar .sidebar-menu .treeview-menu > li > a > .glyphicon,
  674. .sidebar .sidebar-menu .treeview-menu > li > a > .ion {
  675. width: 20px;
  676. }
  677. .user-panel {
  678. padding: 10px;
  679. }
  680. .user-panel:before,
  681. .user-panel:after {
  682. display: table;
  683. content: " ";
  684. }
  685. .user-panel:after {
  686. clear: both;
  687. }
  688. .user-panel > .image > img {
  689. width: 45px;
  690. height: 45px;
  691. }
  692. .user-panel > .info {
  693. font-weight: 600;
  694. padding: 5px 5px 5px 15px;
  695. font-size: 14px;
  696. line-height: 1;
  697. }
  698. .user-panel > .info > p {
  699. margin-bottom: 9px;
  700. }
  701. .user-panel > .info > a {
  702. text-decoration: none;
  703. padding-right: 5px;
  704. margin-top: 3px;
  705. font-size: 11px;
  706. font-weight: normal;
  707. }
  708. .user-panel > .info > a > .fa,
  709. .user-panel > .info > a > .ion,
  710. .user-panel > .info > a > .glyphicon {
  711. margin-right: 3px;
  712. }
  713. /*
  714. * Off Canvas
  715. * --------------------------------------------------
  716. * Gives us the push menu effect
  717. */
  718. @media screen and (max-width: 992px) {
  719. .relative {
  720. position: relative;
  721. }
  722. .row-offcanvas-right .sidebar-offcanvas {
  723. right: -220px;
  724. }
  725. .row-offcanvas-left .sidebar-offcanvas {
  726. left: -220px;
  727. }
  728. .row-offcanvas-right.active {
  729. right: 220px;
  730. }
  731. .row-offcanvas-left.active {
  732. left: 220px;
  733. }
  734. .sidebar-offcanvas {
  735. left: 0;
  736. }
  737. body.fixed .sidebar-offcanvas {
  738. margin-top: 50px;
  739. left: -220px;
  740. }
  741. body.fixed .row-offcanvas-left.active .navbar {
  742. left: 220px !important;
  743. right: 0;
  744. }
  745. body.fixed .row-offcanvas-left.active .sidebar-offcanvas {
  746. left: 0px;
  747. }
  748. }
  749. /*
  750. Dropdown menus
  751. ----------------------------
  752. */
  753. /*Dropdowns in general*/
  754. .dropdown-menu {
  755. -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
  756. -moz-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
  757. box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
  758. }
  759. .dropdown-menu > li > a > .glyphicon,
  760. .dropdown-menu > li > a > .fa,
  761. .dropdown-menu > li > a > .ion {
  762. margin-right: 10px;
  763. }
  764. .dropdown-menu > li > a:hover {
  765. background-color: #3c8dbc;
  766. color: #f9f9f9;
  767. }
  768. /*Drodown in navbars*/
  769. .skin-blue .navbar .dropdown-menu > li > a {
  770. color: #444444;
  771. }
  772. /*
  773. Navbar custom dropdown menu
  774. ------------------------------------
  775. */
  776. .navbar-nav > .notifications-menu > .dropdown-menu,
  777. .navbar-nav > .messages-menu > .dropdown-menu,
  778. .navbar-nav > .tasks-menu > .dropdown-menu {
  779. width: 280px;
  780. padding: 0 0 0 0!important;
  781. margin: 0!important;
  782. top: 100%;
  783. border: 1px solid #dfdfdf;
  784. -webkit-border-radius: 4px !important;
  785. -moz-border-radius: 4px !important;
  786. border-radius: 4px !important;
  787. }
  788. .navbar-nav > .notifications-menu > .dropdown-menu > li.header,
  789. .navbar-nav > .messages-menu > .dropdown-menu > li.header,
  790. .navbar-nav > .tasks-menu > .dropdown-menu > li.header {
  791. -webkit-border-top-left-radius: 4px;
  792. -webkit-border-top-right-radius: 4px;
  793. -webkit-border-bottom-right-radius: 0;
  794. -webkit-border-bottom-left-radius: 0;
  795. -moz-border-radius-topleft: 4px;
  796. -moz-border-radius-topright: 4px;
  797. -moz-border-radius-bottomright: 0;
  798. -moz-border-radius-bottomleft: 0;
  799. border-top-left-radius: 4px;
  800. border-top-right-radius: 4px;
  801. border-bottom-right-radius: 0;
  802. border-bottom-left-radius: 0;
  803. background-color: #ffffff;
  804. padding: 7px 10px;
  805. border-bottom: 1px solid #f4f4f4;
  806. color: #444444;
  807. font-size: 14px;
  808. }
  809. .navbar-nav > .notifications-menu > .dropdown-menu > li.header:after,
  810. .navbar-nav > .messages-menu > .dropdown-menu > li.header:after,
  811. .navbar-nav > .tasks-menu > .dropdown-menu > li.header:after {
  812. bottom: 100%;
  813. left: 92%;
  814. border: solid transparent;
  815. content: " ";
  816. height: 0;
  817. width: 0;
  818. position: absolute;
  819. pointer-events: none;
  820. border-color: rgba(255, 255, 255, 0);
  821. border-bottom-color: #ffffff;
  822. border-width: 7px;
  823. margin-left: -7px;
  824. }
  825. .navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a,
  826. .navbar-nav > .messages-menu > .dropdown-menu > li.footer > a,
  827. .navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a {
  828. -webkit-border-top-left-radius: 0px;
  829. -webkit-border-top-right-radius: 0px;
  830. -webkit-border-bottom-right-radius: 4px;
  831. -webkit-border-bottom-left-radius: 4px;
  832. -moz-border-radius-topleft: 0px;
  833. -moz-border-radius-topright: 0px;
  834. -moz-border-radius-bottomright: 4px;
  835. -moz-border-radius-bottomleft: 4px;
  836. border-top-left-radius: 0px;
  837. border-top-right-radius: 0px;
  838. border-bottom-right-radius: 4px;
  839. border-bottom-left-radius: 4px;
  840. font-size: 12px;
  841. background-color: #f4f4f4;
  842. padding: 7px 10px;
  843. border-bottom: 1px solid #eeeeee;
  844. color: #444444;
  845. text-align: center;
  846. }
  847. .navbar-nav > .notifications-menu > .dropdown-menu > li.footer > a:hover,
  848. .navbar-nav > .messages-menu > .dropdown-menu > li.footer > a:hover,
  849. .navbar-nav > .tasks-menu > .dropdown-menu > li.footer > a:hover {
  850. background: #f4f4f4;
  851. text-decoration: none;
  852. font-weight: normal;
  853. }
  854. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu,
  855. .navbar-nav > .messages-menu > .dropdown-menu > li .menu,
  856. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu {
  857. margin: 0;
  858. padding: 0;
  859. list-style: none;
  860. overflow-x: hidden;
  861. }
  862. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a,
  863. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a,
  864. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a {
  865. display: block;
  866. white-space: nowrap;
  867. /* Prevent text from breaking */
  868. border-bottom: 1px solid #f4f4f4;
  869. }
  870. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a:hover,
  871. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:hover,
  872. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a:hover {
  873. background: #f6f6f6;
  874. text-decoration: none;
  875. }
  876. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a {
  877. font-size: 12px;
  878. color: #444444;
  879. }
  880. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon,
  881. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa,
  882. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion {
  883. font-size: 20px;
  884. width: 50px;
  885. text-align: center;
  886. padding: 15px 0px;
  887. margin-right: 5px;
  888. /* Default background and font colors */
  889. background: #00c0ef;
  890. color: #f9f9f9;
  891. /* Fallback for browsers that doesn't support rgba */
  892. color: rgba(255, 255, 255, 0.7);
  893. }
  894. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon.danger,
  895. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa.danger,
  896. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion.danger {
  897. background: #f56954;
  898. }
  899. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon.warning,
  900. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa.warning,
  901. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion.warning {
  902. background: #f39c12;
  903. }
  904. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon.success,
  905. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa.success,
  906. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion.success {
  907. background: #00a65a;
  908. }
  909. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .glyphicon.info,
  910. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .fa.info,
  911. .navbar-nav > .notifications-menu > .dropdown-menu > li .menu > li > a > .ion.info {
  912. background: #00c0ef;
  913. }
  914. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a {
  915. margin: 0px;
  916. line-height: 20px;
  917. padding: 10px 5px 10px 5px;
  918. -webkit-border-radius: 4px;
  919. -moz-border-radius: 4px;
  920. border-radius: 4px;
  921. }
  922. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > div > img {
  923. margin: auto 10px auto auto;
  924. width: 40px;
  925. height: 40px;
  926. border: 1px solid #dddddd;
  927. }
  928. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > h4 {
  929. padding: 0;
  930. margin: 0 0 0 45px;
  931. color: #444444;
  932. font-size: 15px;
  933. }
  934. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > h4 > small {
  935. color: #999999;
  936. font-size: 10px;
  937. float: right;
  938. }
  939. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a > p {
  940. margin: 0 0 0 45px;
  941. font-size: 12px;
  942. color: #888888;
  943. }
  944. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:before,
  945. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after {
  946. display: table;
  947. content: " ";
  948. }
  949. .navbar-nav > .messages-menu > .dropdown-menu > li .menu > li > a:after {
  950. clear: both;
  951. }
  952. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a {
  953. padding: 10px;
  954. }
  955. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a > h3 {
  956. font-size: 14px;
  957. padding: 0;
  958. margin: 0 0 10px 0;
  959. color: #666666;
  960. }
  961. .navbar-nav > .tasks-menu > .dropdown-menu > li .menu > li > a > .progress {
  962. padding: 0;
  963. margin: 0;
  964. }
  965. .navbar-nav > .user-menu > .dropdown-menu {
  966. -webkit-border-radius: 0;
  967. -moz-border-radius: 0;
  968. border-radius: 0;
  969. padding: 1px 0 0 0;
  970. border-top-width: 0;
  971. width: 280px;
  972. }
  973. .navbar-nav > .user-menu > .dropdown-menu:after {
  974. bottom: 100%;
  975. right: 10px;
  976. border: solid transparent;
  977. content: " ";
  978. height: 0;
  979. width: 0;
  980. position: absolute;
  981. pointer-events: none;
  982. border-color: rgba(255, 255, 255, 0);
  983. border-bottom-color: #ffffff;
  984. border-width: 10px;
  985. margin-left: -10px;
  986. }
  987. .navbar-nav > .user-menu > .dropdown-menu > li.user-header {
  988. height: 175px;
  989. padding: 10px;
  990. background: #3c8dbc;
  991. text-align: center;
  992. }
  993. .navbar-nav > .user-menu > .dropdown-menu > li.user-header > img {
  994. z-index: 5;
  995. height: 90px;
  996. width: 90px;
  997. border: 8px solid;
  998. border-color: transparent;
  999. border-color: rgba(255, 255, 255, 0.2);
  1000. }
  1001. .navbar-nav > .user-menu > .dropdown-menu > li.user-header > p {
  1002. z-index: 5;
  1003. color: #f9f9f9;
  1004. color: rgba(255, 255, 255, 0.8);
  1005. font-size: 17px;
  1006. text-shadow: 2px 2px 3px #333333;
  1007. margin-top: 10px;
  1008. }
  1009. .navbar-nav > .user-menu > .dropdown-menu > li.user-header > p > small {
  1010. display: block;
  1011. font-size: 12px;
  1012. }
  1013. .navbar-nav > .user-menu > .dropdown-menu > li.user-body {
  1014. padding: 15px;
  1015. border-bottom: 1px solid #f4f4f4;
  1016. border-top: 1px solid #dddddd;
  1017. }
  1018. .navbar-nav > .user-menu > .dropdown-menu > li.user-body:before,
  1019. .navbar-nav > .user-menu > .dropdown-menu > li.user-body:after {
  1020. display: table;
  1021. content: " ";
  1022. }
  1023. .navbar-nav > .user-menu > .dropdown-menu > li.user-body:after {
  1024. clear: both;
  1025. }
  1026. .navbar-nav > .user-menu > .dropdown-menu > li.user-body > div > a {
  1027. color: #0073b7;
  1028. }
  1029. .navbar-nav > .user-menu > .dropdown-menu > li.user-footer {
  1030. background-color: #f9f9f9;
  1031. padding: 10px;
  1032. }
  1033. .navbar-nav > .user-menu > .dropdown-menu > li.user-footer:before,
  1034. .navbar-nav > .user-menu > .dropdown-menu > li.user-footer:after {
  1035. display: table;
  1036. content: " ";
  1037. }
  1038. .navbar-nav > .user-menu > .dropdown-menu > li.user-footer:after {
  1039. clear: both;
  1040. }
  1041. .navbar-nav > .user-menu > .dropdown-menu > li.user-footer .btn-default {
  1042. color: #666666;
  1043. }
  1044. /* Add fade animation to dropdown menus */
  1045. .open > .dropdown-menu {
  1046. animation-name: fadeAnimation;
  1047. animation-duration: .7s;
  1048. animation-iteration-count: 1;
  1049. animation-timing-function: ease;
  1050. animation-fill-mode: forwards;
  1051. -webkit-animation-name: fadeAnimation;
  1052. -webkit-animation-duration: .7s;
  1053. -webkit-animation-iteration-count: 1;
  1054. -webkit-animation-timing-function: ease;
  1055. -webkit-animation-fill-mode: forwards;
  1056. -moz-animation-name: fadeAnimation;
  1057. -moz-animation-duration: .7s;
  1058. -moz-animation-iteration-count: 1;
  1059. -moz-animation-timing-function: ease;
  1060. -moz-animation-fill-mode: forwards;
  1061. }
  1062. @keyframes fadeAnimation {
  1063. from {
  1064. opacity: 0;
  1065. top: 120%;
  1066. }
  1067. to {
  1068. opacity: 1;
  1069. top: 100%;
  1070. }
  1071. }
  1072. @-webkit-keyframes fadeAnimation {
  1073. from {
  1074. opacity: 0;
  1075. top: 120%;
  1076. }
  1077. to {
  1078. opacity: 1;
  1079. top: 100%;
  1080. }
  1081. }
  1082. /* Fix dropdown menu for small screens to display correctly on small screens */
  1083. @media screen and (max-width: 767px) {
  1084. .navbar-nav > .notifications-menu > .dropdown-menu,
  1085. .navbar-nav > .user-menu > .dropdown-menu,
  1086. .navbar-nav > .tasks-menu > .dropdown-menu,
  1087. .navbar-nav > .messages-menu > .dropdown-menu {
  1088. position: absolute;
  1089. top: 100%;
  1090. right: 0;
  1091. left: auto;
  1092. border-right: 1px solid #dddddd;
  1093. border-bottom: 1px solid #dddddd;
  1094. border-left: 1px solid #dddddd;
  1095. background: #ffffff;
  1096. }
  1097. }
  1098. /* Fix menu positions on xs screens to appear correctly and fully */
  1099. @media screen and (max-width: 480px) {
  1100. .navbar-nav > .notifications-menu > .dropdown-menu > li.header,
  1101. .navbar-nav > .tasks-menu > .dropdown-menu > li.header,
  1102. .navbar-nav > .messages-menu > .dropdown-menu > li.header {
  1103. /* Remove arrow from the top */
  1104. }
  1105. .navbar-nav > .notifications-menu > .dropdown-menu > li.header:after,
  1106. .navbar-nav > .tasks-menu > .dropdown-menu > li.header:after,
  1107. .navbar-nav > .messages-menu > .dropdown-menu > li.header:after {
  1108. border-width: 0px!important;
  1109. }
  1110. .navbar-nav > .tasks-menu > .dropdown-menu {
  1111. position: absolute;
  1112. right: -120px;
  1113. left: auto;
  1114. }
  1115. .navbar-nav > .notifications-menu > .dropdown-menu {
  1116. position: absolute;
  1117. right: -170px;
  1118. left: auto;
  1119. }
  1120. .navbar-nav > .messages-menu > .dropdown-menu {
  1121. position: absolute;
  1122. right: -210px;
  1123. left: auto;
  1124. }
  1125. }
  1126. /*
  1127. All form elements including input, select, textarea etc.
  1128. -----------------------------------------------------------------
  1129. */
  1130. .form-control {
  1131. -webkit-border-radius: 0px !important;
  1132. -moz-border-radius: 0px !important;
  1133. border-radius: 0px !important;
  1134. box-shadow: none;
  1135. }
  1136. .form-control:focus {
  1137. border-color: #3c8dbc !important;
  1138. box-shadow: none;
  1139. }
  1140. .form-group.has-success label {
  1141. color: #00a65a;
  1142. }
  1143. .form-group.has-success .form-control {
  1144. border-color: #00a65a !important;
  1145. box-shadow: none;
  1146. }
  1147. .form-group.has-warning label {
  1148. color: #f39c12;
  1149. }
  1150. .form-group.has-warning .form-control {
  1151. border-color: #f39c12 !important;
  1152. box-shadow: none;
  1153. }
  1154. .form-group.has-error label {
  1155. color: #f56954;
  1156. }
  1157. .form-group.has-error .form-control {
  1158. border-color: #f56954 !important;
  1159. box-shadow: none;
  1160. }
  1161. /* Input group */
  1162. .input-group .input-group-addon {
  1163. border-radius: 0;
  1164. background-color: #f4f4f4;
  1165. }
  1166. /* button groups */
  1167. .btn-group-vertical .btn.btn-flat:first-of-type,
  1168. .btn-group-vertical .btn.btn-flat:last-of-type {
  1169. border-radius: 0;
  1170. }
  1171. /* Checkbox and radio inputs */
  1172. .checkbox,
  1173. .radio {
  1174. padding-left: 0;
  1175. }
  1176. /*
  1177. Compenent: Progress bars
  1178. --------------------------------
  1179. */
  1180. /* size variation */
  1181. .progress.sm {
  1182. height: 10px;
  1183. }
  1184. .progress.xs {
  1185. height: 7px;
  1186. }
  1187. /* Vertical bars */
  1188. .progress.vertical {
  1189. position: relative;
  1190. width: 30px;
  1191. height: 200px;
  1192. display: inline-block;
  1193. margin-right: 10px;
  1194. }
  1195. .progress.vertical > .progress-bar {
  1196. width: 100%!important;
  1197. position: absolute;
  1198. bottom: 0;
  1199. }
  1200. .progress.vertical.sm {
  1201. width: 20px;
  1202. }
  1203. .progress.vertical.xs {
  1204. width: 10px;
  1205. }
  1206. /* Remove margins from progress bars when put in a table */
  1207. .table tr > td .progress {
  1208. margin: 0;
  1209. }
  1210. .progress-bar-light-blue,
  1211. .progress-bar-primary {
  1212. background-color: #3c8dbc;
  1213. }
  1214. .progress-striped .progress-bar-light-blue,
  1215. .progress-striped .progress-bar-primary {
  1216. 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));
  1217. 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);
  1218. 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);
  1219. 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);
  1220. }
  1221. .progress-bar-green,
  1222. .progress-bar-success {
  1223. background-color: #00a65a;
  1224. }
  1225. .progress-striped .progress-bar-green,
  1226. .progress-striped .progress-bar-success {
  1227. 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));
  1228. 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);
  1229. 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);
  1230. 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);
  1231. }
  1232. .progress-bar-aqua,
  1233. .progress-bar-info {
  1234. background-color: #00c0ef;
  1235. }
  1236. .progress-striped .progress-bar-aqua,
  1237. .progress-striped .progress-bar-info {
  1238. 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));
  1239. 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);
  1240. 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);
  1241. 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);
  1242. }
  1243. .progress-bar-yellow,
  1244. .progress-bar-warning {
  1245. background-color: #f39c12;
  1246. }
  1247. .progress-striped .progress-bar-yellow,
  1248. .progress-striped .progress-bar-warning {
  1249. 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));
  1250. 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);
  1251. 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);
  1252. 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);
  1253. }
  1254. .progress-bar-red,
  1255. .progress-bar-danger {
  1256. background-color: #f56954;
  1257. }
  1258. .progress-striped .progress-bar-red,
  1259. .progress-striped .progress-bar-danger {
  1260. 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));
  1261. 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);
  1262. 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);
  1263. 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);
  1264. }
  1265. /*
  1266. Component: Small boxes
  1267. */
  1268. .small-box {
  1269. position: relative;
  1270. display: block;
  1271. -webkit-border-radius: 2px;
  1272. -moz-border-radius: 2px;
  1273. border-radius: 2px;
  1274. margin-bottom: 15px;
  1275. }
  1276. .small-box > .inner {
  1277. padding: 10px;
  1278. }
  1279. .small-box > .small-box-footer {
  1280. position: relative;
  1281. text-align: center;
  1282. padding: 3px 0;
  1283. color: #fff;
  1284. color: rgba(255, 255, 255, 0.8);
  1285. display: block;
  1286. z-index: 10;
  1287. background: rgba(0, 0, 0, 0.1);
  1288. text-decoration: none;
  1289. }
  1290. .small-box > .small-box-footer:hover {
  1291. color: #fff;
  1292. background: rgba(0, 0, 0, 0.15);
  1293. }
  1294. .small-box h3 {
  1295. font-size: 38px;
  1296. font-weight: bold;
  1297. margin: 0 0 10px 0;
  1298. white-space: nowrap;
  1299. padding: 0;
  1300. }
  1301. .small-box p {
  1302. font-size: 15px;
  1303. }
  1304. .small-box p > small {
  1305. display: block;
  1306. color: #f9f9f9;
  1307. font-size: 13px;
  1308. margin-top: 5px;
  1309. }
  1310. .small-box h3,
  1311. .small-box p {
  1312. z-index: 5px;
  1313. }
  1314. .small-box .icon {
  1315. position: absolute;
  1316. top: auto;
  1317. bottom: 5px;
  1318. right: 5px;
  1319. z-index: 0;
  1320. font-size: 90px;
  1321. color: rgba(0, 0, 0, 0.15);
  1322. }
  1323. .small-box:hover {
  1324. text-decoration: none;
  1325. color: #f9f9f9;
  1326. }
  1327. .small-box:hover .icon {
  1328. animation-name: tansformAnimation;
  1329. animation-duration: .5s;
  1330. animation-iteration-count: 1;
  1331. animation-timing-function: ease;
  1332. animation-fill-mode: forwards;
  1333. -webkit-animation-name: tansformAnimation;
  1334. -webkit-animation-duration: .5s;
  1335. -webkit-animation-iteration-count: 1;
  1336. -webkit-animation-timing-function: ease;
  1337. -webkit-animation-fill-mode: forwards;
  1338. -moz-animation-name: tansformAnimation;
  1339. -moz-animation-duration: .5s;
  1340. -moz-animation-iteration-count: 1;
  1341. -moz-animation-timing-function: ease;
  1342. -moz-animation-fill-mode: forwards;
  1343. }
  1344. @keyframes tansformAnimation {
  1345. from {
  1346. font-size: 90px;
  1347. }
  1348. to {
  1349. font-size: 100px;
  1350. }
  1351. }
  1352. @-webkit-keyframes tansformAnimation {
  1353. from {
  1354. font-size: 90px;
  1355. }
  1356. to {
  1357. font-size: 100px;
  1358. }
  1359. }
  1360. @media screen and (max-width: 480px) {
  1361. .small-box {
  1362. text-align: center;
  1363. }
  1364. .small-box .icon {
  1365. display: none;
  1366. }
  1367. .small-box p {
  1368. font-size: 12px;
  1369. }
  1370. }
  1371. /*
  1372. component: Boxes
  1373. -------------------------
  1374. */
  1375. .box {
  1376. position: relative;
  1377. background: #ffffff;
  1378. border-top: 2px solid #c1c1c1;
  1379. margin-bottom: 20px;
  1380. -webkit-border-radius: 3px;
  1381. -moz-border-radius: 3px;
  1382. border-radius: 3px;
  1383. width: 100%;
  1384. box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
  1385. }
  1386. .box.box-primary {
  1387. border-top-color: #3c8dbc;
  1388. }
  1389. .box.box-info {
  1390. border-top-color: #00c0ef;
  1391. }
  1392. .box.box-danger {
  1393. border-top-color: #f56954;
  1394. }
  1395. .box.box-warning {
  1396. border-top-color: #f39c12;
  1397. }
  1398. .box.box-success {
  1399. border-top-color: #00a65a;
  1400. }
  1401. .box.height-control .box-body {
  1402. max-height: 300px;
  1403. overflow: auto;
  1404. }
  1405. .box .box-header {
  1406. position: relative;
  1407. -webkit-border-top-left-radius: 3px;
  1408. -webkit-border-top-right-radius: 3px;
  1409. -webkit-border-bottom-right-radius: 0;
  1410. -webkit-border-bottom-left-radius: 0;
  1411. -moz-border-radius-topleft: 3px;
  1412. -moz-border-radius-topright: 3px;
  1413. -moz-border-radius-bottomright: 0;
  1414. -moz-border-radius-bottomleft: 0;
  1415. border-top-left-radius: 3px;
  1416. border-top-right-radius: 3px;
  1417. border-bottom-right-radius: 0;
  1418. border-bottom-left-radius: 0;
  1419. border-bottom: 0px solid #f4f4f4;
  1420. color: #444;
  1421. }
  1422. .box .box-header:before,
  1423. .box .box-header:after {
  1424. display: table;
  1425. content: " ";
  1426. }
  1427. .box .box-header:after {
  1428. clear: both;
  1429. }
  1430. .box .box-header > .fa,
  1431. .box .box-header > .glyphicon,
  1432. .box .box-header > .ion,
  1433. .box .box-header .box-title {
  1434. display: inline-block;
  1435. padding: 10px 10px 10px 10px;
  1436. margin: 0;
  1437. font-size: 20px;
  1438. font-weight: 400;
  1439. float: left;
  1440. cursor: default;
  1441. }
  1442. .box .box-header a {
  1443. color: #444;
  1444. }
  1445. .box .box-header > .box-tools {
  1446. padding: 5px 10px 5px 5px;
  1447. }
  1448. .box .box-body {
  1449. padding: 10px;
  1450. -webkit-border-top-left-radius: 0;
  1451. -webkit-border-top-right-radius: 0;
  1452. -webkit-border-bottom-right-radius: 3px;
  1453. -webkit-border-bottom-left-radius: 3px;
  1454. -moz-border-radius-topleft: 0;
  1455. -moz-border-radius-topright: 0;
  1456. -moz-border-radius-bottomright: 3px;
  1457. -moz-border-radius-bottomleft: 3px;
  1458. border-top-left-radius: 0;
  1459. border-top-right-radius: 0;
  1460. border-bottom-right-radius: 3px;
  1461. border-bottom-left-radius: 3px;
  1462. }
  1463. .box .box-body > table,
  1464. .box .box-body > .table {
  1465. margin-bottom: 0;
  1466. }
  1467. .box .box-body.chart-responsive {
  1468. width: 100%;
  1469. overflow: hidden;
  1470. }
  1471. .box .box-body > .chart {
  1472. position: relative;
  1473. overflow: hidden;
  1474. width: 100%;
  1475. }
  1476. .box .box-body > .chart svg,
  1477. .box .box-body > .chart canvas {
  1478. width: 100%!important;
  1479. }
  1480. .box .box-body .fc {
  1481. margin-top: 5px;
  1482. }
  1483. .box .box-body .fc-header-title h2 {
  1484. font-size: 15px;
  1485. line-height: 1.6em;
  1486. color: #666;
  1487. margin-left: 10px;
  1488. }
  1489. .box .box-body .fc-header-right {
  1490. padding-right: 10px;
  1491. }
  1492. .box .box-body .fc-header-left {
  1493. padding-left: 10px;
  1494. }
  1495. .box .box-body .fc-widget-header {
  1496. background: #fafafa;
  1497. box-shadow: inset 0px -3px 1px rgba(0, 0, 0, 0.02);
  1498. }
  1499. .box .box-body .fc-grid {
  1500. width: 100%;
  1501. border: 0;
  1502. }
  1503. .box .box-body .fc-widget-header:first-of-type,
  1504. .box .box-body .fc-widget-content:first-of-type {
  1505. border-left: 0;
  1506. border-right: 0;
  1507. }
  1508. .box .box-body .fc-widget-header:last-of-type,
  1509. .box .box-body .fc-widget-content:last-of-type {
  1510. border-right: 0;
  1511. }
  1512. .box .box-body .table {
  1513. margin-bottom: 0;
  1514. }
  1515. .box .box-body .full-width-chart {
  1516. margin: -19px;
  1517. }
  1518. .box .box-body.no-padding .full-width-chart {
  1519. margin: -9px;
  1520. }
  1521. .box .box-footer {
  1522. border-top: 1px solid #f4f4f4;
  1523. -webkit-border-top-left-radius: 0;
  1524. -webkit-border-top-right-radius: 0;
  1525. -webkit-border-bottom-right-radius: 3px;
  1526. -webkit-border-bottom-left-radius: 3px;
  1527. -moz-border-radius-topleft: 0;
  1528. -moz-border-radius-topright: 0;
  1529. -moz-border-radius-bottomright: 3px;
  1530. -moz-border-radius-bottomleft: 3px;
  1531. border-top-left-radius: 0;
  1532. border-top-right-radius: 0;
  1533. border-bottom-right-radius: 3px;
  1534. border-bottom-left-radius: 3px;
  1535. padding: 10px;
  1536. background-color: #ffffff;
  1537. }
  1538. .box.box-solid {
  1539. border-top: 0px;
  1540. }
  1541. .box.box-solid > .box-header {
  1542. padding-bottom: 0px!important;
  1543. }
  1544. .box.box-solid > .box-header .btn.btn-default {
  1545. background: transparent;
  1546. }
  1547. .box.box-solid.box-primary > .box-header {
  1548. color: #fff;
  1549. background: #3c8dbc;
  1550. background-color: #3c8dbc;
  1551. }
  1552. .box.box-solid.box-primary > .box-header a {
  1553. color: #444;
  1554. }
  1555. .box.box-solid.box-info > .box-header {
  1556. color: #fff;
  1557. background: #00c0ef;
  1558. background-color: #00c0ef;
  1559. }
  1560. .box.box-solid.box-info > .box-header a {
  1561. color: #444;
  1562. }
  1563. .box.box-solid.box-danger > .box-header {
  1564. color: #fff;
  1565. background: #f56954;
  1566. background-color: #f56954;
  1567. }
  1568. .box.box-solid.box-danger > .box-header a {
  1569. color: #444;
  1570. }
  1571. .box.box-solid.box-warning > .box-header {
  1572. color: #fff;
  1573. background: #f39c12;
  1574. background-color: #f39c12;
  1575. }
  1576. .box.box-solid.box-warning > .box-header a {
  1577. color: #444;
  1578. }
  1579. .box.box-solid.box-success > .box-header {
  1580. color: #fff;
  1581. background: #00a65a;
  1582. background-color: #00a65a;
  1583. }
  1584. .box.box-solid.box-success > .box-header a {
  1585. color: #444;
  1586. }
  1587. .box.box-solid > .box-header > .box-tools .btn {
  1588. border: 0;
  1589. box-shadow: none;
  1590. }
  1591. .box.box-solid.collapsed-box .box-header {
  1592. -webkit-border-radius: 3px;
  1593. -moz-border-radius: 3px;
  1594. border-radius: 3px;
  1595. }
  1596. .box.box-solid[class*='bg'] > .box-header {
  1597. color: #fff;
  1598. }
  1599. .box .box-group > .box {
  1600. margin-bottom: 5px;
  1601. }
  1602. .box .knob-label {
  1603. text-align: center;
  1604. color: #333;
  1605. font-weight: 100;
  1606. font-size: 12px;
  1607. margin-bottom: 0.3em;
  1608. }
  1609. .box .todo-list {
  1610. margin: 0;
  1611. padding: 0px 0px;
  1612. list-style: none;
  1613. }
  1614. .box .todo-list > li {
  1615. -webkit-border-radius: 2px;
  1616. -moz-border-radius: 2px;
  1617. border-radius: 2px;
  1618. padding: 10px;
  1619. background: #f3f4f5;
  1620. margin-bottom: 2px;
  1621. border-left: 2px solid #e6e7e8;
  1622. color: #444;
  1623. }
  1624. .box .todo-list > li:last-of-type {
  1625. margin-bottom: 0;
  1626. }
  1627. .box .todo-list > li.danger {
  1628. border-left-color: #f56954;
  1629. }
  1630. .box .todo-list > li.warning {
  1631. border-left-color: #f39c12;
  1632. }
  1633. .box .todo-list > li.info {
  1634. border-left-color: #00c0ef;
  1635. }
  1636. .box .todo-list > li.success {
  1637. border-left-color: #00a65a;
  1638. }
  1639. .box .todo-list > li.primary {
  1640. border-left-color: #3c8dbc;
  1641. }
  1642. .box .todo-list > li > input[type='checkbox'] {
  1643. margin: 0 10px 0 5px;
  1644. }
  1645. .box .todo-list > li .text {
  1646. display: inline-block;
  1647. margin-left: 5px;
  1648. font-weight: 600;
  1649. }
  1650. .box .todo-list > li .label {
  1651. margin-left: 10px;
  1652. font-size: 9px;
  1653. }
  1654. .box .todo-list > li .tools {
  1655. display: none;
  1656. float: right;
  1657. color: #f56954;
  1658. }
  1659. .box .todo-list > li .tools > .fa,
  1660. .box .todo-list > li .tools > .glyphicon,
  1661. .box .todo-list > li .tools > .ion {
  1662. margin-right: 5px;
  1663. cursor: pointer;
  1664. }
  1665. .box .todo-list > li:hover .tools {
  1666. display: inline-block;
  1667. }
  1668. .box .todo-list > li.done {
  1669. color: #999;
  1670. }
  1671. .box .todo-list > li.done .text {
  1672. text-decoration: line-through;
  1673. font-weight: 500;
  1674. }
  1675. .box .todo-list > li.done .label {
  1676. background: #eaeaec !important;
  1677. }
  1678. .box .todo-list .handle {
  1679. display: inline-block;
  1680. cursor: move;
  1681. margin: 0 5px;
  1682. }
  1683. .box .chat {
  1684. padding: 5px 20px 5px 10px;
  1685. }
  1686. .box .chat .item {
  1687. margin-bottom: 10px;
  1688. }
  1689. .box .chat .item:before,
  1690. .box .chat .item:after {
  1691. display: table;
  1692. content: " ";
  1693. }
  1694. .box .chat .item:after {
  1695. clear: both;
  1696. }
  1697. .box .chat .item > img {
  1698. width: 40px;
  1699. height: 40px;
  1700. border: 2px solid transparent;
  1701. -webkit-border-radius: 50% !important;
  1702. -moz-border-radius: 50% !important;
  1703. border-radius: 50% !important;
  1704. }
  1705. .box .chat .item > img.online {
  1706. border: 2px solid #00a65a;
  1707. }
  1708. .box .chat .item > img.offline {
  1709. border: 2px solid #f56954;
  1710. }
  1711. .box .chat .item > .message {
  1712. margin-left: 55px;
  1713. margin-top: -40px;
  1714. }
  1715. .box .chat .item > .message > .name {
  1716. display: block;
  1717. font-weight: 600;
  1718. }
  1719. .box .chat .item > .attachment {
  1720. -webkit-border-radius: 3px;
  1721. -moz-border-radius: 3px;
  1722. border-radius: 3px;
  1723. background: #f0f0f0;
  1724. margin-left: 65px;
  1725. margin-right: 15px;
  1726. padding: 10px;
  1727. }
  1728. .box .chat .item > .attachment > h4 {
  1729. margin: 0 0 5px 0;
  1730. font-weight: 600;
  1731. font-size: 14px;
  1732. }
  1733. .box .chat .item > .attachment > p,
  1734. .box .chat .item > .attachment > .filename {
  1735. font-weight: 600;
  1736. font-size: 13px;
  1737. font-style: italic;
  1738. margin: 0;
  1739. }
  1740. .box .chat .item > .attachment:before,
  1741. .box .chat .item > .attachment:after {
  1742. display: table;
  1743. content: " ";
  1744. }
  1745. .box .chat .item > .attachment:after {
  1746. clear: both;
  1747. }
  1748. .box > .overlay,
  1749. .box > .loading-img {
  1750. position: absolute;
  1751. top: 0;
  1752. left: 0;
  1753. width: 100%;
  1754. height: 100%;
  1755. }
  1756. .box > .overlay {
  1757. z-index: 1010;
  1758. background: rgba(255, 255, 255, 0.7);
  1759. }
  1760. .box > .overlay.dark {
  1761. background: rgba(0, 0, 0, 0.5);
  1762. }
  1763. .box > .loading-img {
  1764. z-index: 1020;
  1765. background: transparent url('../img/ajax-loader1.gif') 50% 50% no-repeat;
  1766. }
  1767. /*
  1768. Component: timeline
  1769. --------------------
  1770. */
  1771. .timeline {
  1772. position: relative;
  1773. margin: 0 0 30px 0;
  1774. padding: 0;
  1775. list-style: none;
  1776. }
  1777. .timeline:before {
  1778. content: '';
  1779. position: absolute;
  1780. top: 0px;
  1781. bottom: 0;
  1782. width: 5px;
  1783. background: #ddd;
  1784. left: 30px;
  1785. border: 1px solid #eee;
  1786. margin: 0;
  1787. -webkit-border-radius: 2px;
  1788. -moz-border-radius: 2px;
  1789. border-radius: 2px;
  1790. }
  1791. .timeline > li {
  1792. position: relative;
  1793. margin-right: 10px;
  1794. margin-bottom: 15px;
  1795. }
  1796. .timeline > li:before,
  1797. .timeline > li:after {
  1798. display: table;
  1799. content: " ";
  1800. }
  1801. .timeline > li:after {
  1802. clear: both;
  1803. }
  1804. .timeline > li > .timeline-item {
  1805. margin-top: 10px;
  1806. border: 0px solid #dfdfdf;
  1807. background: #fff;
  1808. color: #555;
  1809. margin-left: 60px;
  1810. margin-right: 15px;
  1811. padding: 5px;
  1812. position: relative;
  1813. box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
  1814. }
  1815. .timeline > li > .timeline-item > .time {
  1816. color: #999;
  1817. float: right;
  1818. margin: 2px 0 0 0;
  1819. }
  1820. .timeline > li > .timeline-item > .timeline-header {
  1821. margin: 0;
  1822. color: #555;
  1823. border-bottom: 1px solid #f4f4f4;
  1824. padding: 5px;
  1825. font-size: 16px;
  1826. line-height: 1.1;
  1827. }
  1828. .timeline > li > .timeline-item > .timeline-header > a {
  1829. font-weight: 600;
  1830. }
  1831. .timeline > li > .timeline-item > .timeline-body,
  1832. .timeline > li > .timeline-item > .timeline-footer {
  1833. padding: 10px;
  1834. }
  1835. .timeline > li.time-label > span {
  1836. font-weight: 600;
  1837. padding: 5px;
  1838. display: inline-block;
  1839. background-color: #fff;
  1840. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
  1841. -webkit-border-radius: 4px;
  1842. -moz-border-radius: 4px;
  1843. border-radius: 4px;
  1844. }
  1845. .timeline > li > .fa,
  1846. .timeline > li > .glyphicon,
  1847. .timeline > li > .ion {
  1848. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  1849. width: 30px;
  1850. height: 30px;
  1851. font-size: 15px;
  1852. line-height: 30px;
  1853. position: absolute;
  1854. color: #666;
  1855. background: #eee;
  1856. border-radius: 50%;
  1857. text-align: center;
  1858. left: 18px;
  1859. top: 0;
  1860. }
  1861. /*
  1862. Component: Buttons
  1863. -------------------------
  1864. */
  1865. .btn {
  1866. font-weight: 500;
  1867. -webkit-border-radius: 3px;
  1868. -moz-border-radius: 3px;
  1869. border-radius: 3px;
  1870. border: 1px solid transparent;
  1871. -webkit-box-shadow: inset 0px -2px 0px 0px rgba(0, 0, 0, 0.09);
  1872. -moz-box-shadow: inset 0px -2px 0px 0px rgba(0, 0, 0, 0.09);
  1873. box-shadow: inset 0px -1px 0px 0px rgba(0, 0, 0, 0.09);
  1874. }
  1875. .btn.btn-default {
  1876. background-color: #fafafa;
  1877. color: #666;
  1878. border-color: #ddd;
  1879. border-bottom-color: #ddd;
  1880. }
  1881. .btn.btn-default:hover,
  1882. .btn.btn-default:active,
  1883. .btn.btn-default.hover {
  1884. background-color: #f4f4f4!important;
  1885. }
  1886. .btn.btn-default.btn-flat {
  1887. border-bottom-color: #d9dadc;
  1888. }
  1889. .btn.btn-primary {
  1890. background-color: #3c8dbc;
  1891. border-color: #367fa9;
  1892. }
  1893. .btn.btn-primary:hover,
  1894. .btn.btn-primary:active,
  1895. .btn.btn-primary.hover {
  1896. background-color: #367fa9;
  1897. }
  1898. .btn.btn-success {
  1899. background-color: #00a65a;
  1900. border-color: #008d4c;
  1901. }
  1902. .btn.btn-success:hover,
  1903. .btn.btn-success:active,
  1904. .btn.btn-success.hover {
  1905. background-color: #008d4c;
  1906. }
  1907. .btn.btn-info {
  1908. background-color: #00c0ef;
  1909. border-color: #00acd6;
  1910. }
  1911. .btn.btn-info:hover,
  1912. .btn.btn-info:active,
  1913. .btn.btn-info.hover {
  1914. background-color: #00acd6;
  1915. }
  1916. .btn.btn-danger {
  1917. background-color: #f56954;
  1918. border-color: #f4543c;
  1919. }
  1920. .btn.btn-danger:hover,
  1921. .btn.btn-danger:active,
  1922. .btn.btn-danger.hover {
  1923. background-color: #f4543c;
  1924. }
  1925. .btn.btn-warning {
  1926. background-color: #f39c12;
  1927. border-color: #e08e0b;
  1928. }
  1929. .btn.btn-warning:hover,
  1930. .btn.btn-warning:active,
  1931. .btn.btn-warning.hover {
  1932. background-color: #e08e0b;
  1933. }
  1934. .btn.btn-flat {
  1935. -webkit-border-radius: 0;
  1936. -moz-border-radius: 0;
  1937. border-radius: 0;
  1938. -webkit-box-shadow: none;
  1939. -moz-box-shadow: none;
  1940. box-shadow: none;
  1941. border-width: 1px;
  1942. }
  1943. .btn:active {
  1944. -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  1945. -moz-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  1946. box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  1947. }
  1948. .btn:focus {
  1949. outline: none;
  1950. }
  1951. .btn.btn-file {
  1952. position: relative;
  1953. overflow: hidden;
  1954. }
  1955. .btn.btn-file > input[type='file'] {
  1956. position: absolute;
  1957. top: 0;
  1958. right: 0;
  1959. min-width: 100%;
  1960. min-height: 100%;
  1961. font-size: 100px;
  1962. text-align: right;
  1963. filter: alpha(opacity=0);
  1964. opacity: 0;
  1965. outline: none;
  1966. background: white;
  1967. cursor: inherit;
  1968. display: block;
  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. }