_ui_element.scss 126 KB

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