style.css 86 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524
  1. /* @override http://macs.local/david/wp-content/themes/dw/style.css */
  2. /*!
  3. Theme Name: dw
  4. Theme URI: http://davidawindham.com/
  5. Author: windhamdavid
  6. Description: Something Else
  7. Version: 2.0
  8. License URI: http://www.gnu.org/licenses/gpl-2.0.html
  9. Thanks:
  10. normalize.css v3.0.1 * MIT License
  11. bootstrap v3.2.0 * MIT License
  12. font awesome 4.2.0 * MIT License
  13. _s | GPL License
  14. */
  15. html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}
  16. html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{font-family:inherit;font-size: 100%;font-style:inherit;font-weight:inherit;background:transparent;border:0;margin:0;padding:0;outline:0;vertical-align: baseline;}
  17. html{overflow-y: scroll;-webkit-text-size-adjust:100%;-ms-text-size-adjust: 100%;}
  18. body{line-height:1;}
  19. *,*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
  20. article,aside,details,figcaption,figure,footer,header,main,nav,section{display:block;}
  21. h1,h2,h3,h4,h5,h6{clear:both;font-weight:normal;}
  22. ol,ul{list-style: none;}
  23. blockquote,q{quotes: "" "";}
  24. blockquote:before,blockquote:after,q:before,q:after{content:'';}
  25. del {text-decoration:line-through;}
  26. table{border-collapse:collapse;border-spacing:0;}
  27. a:focus {outline:thin dotted;}
  28. a img {border: 0;}
  29. .clear {clear: both;}
  30. /*============================================
  31. Body
  32. ==============================================*/
  33. body {
  34. background: rgba(242,242,242,.7)
  35. }
  36. /*============================================
  37. Typography
  38. ==============================================*/
  39. @font-face {
  40. font-family: 'Computer Modern';
  41. src: local("☺"),
  42. url('fonts/cmunrm.woff') format('woff'),
  43. url('fonts/cmunrm.ttf') format('truetype'),
  44. url('fonts/cmunrm.otf') format('opentype'),
  45. url('fonts/cmunrm.eot?') format('embedded-opentype');
  46. font-weight: normal;
  47. font-style: normal;
  48. }
  49. @font-face {
  50. font-family: 'Computer Modern';
  51. src: local("☺"),
  52. url('fonts/cmunbx.woff') format('woff'),
  53. url('fonts/cmunbx.ttf') format('truetype'),
  54. url('fonts/cmunbx.otf') format('opentype'),
  55. url('fonts/cmunbx.eot?') format('embedded-opentype');
  56. font-weight: bold;
  57. font-style: normal;
  58. }
  59. @font-face {
  60. font-family: 'Computer Modern';
  61. src: local("☺"),
  62. url('fonts/cmunsl.woff') format('woff'),
  63. url('fonts/cmunsl.ttf') format('truetype'),
  64. url('fonts/cmunsl.eot?') format('embedded-opentype');
  65. font-weight: normal;
  66. font-style: italic;
  67. }
  68. @font-face {
  69. font-family: 'CM Sans';
  70. src: local("☺"),
  71. url('fonts/cmunsx.woff') format('woff'),
  72. url('fonts/cmunsx.ttf') format('truetype'),
  73. url('fonts/cmunsx.eot?') format('embedded-opentype');
  74. font-weight: normal;
  75. font-style: normal;
  76. }
  77. @font-face {
  78. font-family: 'CM Bright';
  79. src: local("☺"),
  80. url('fonts/cmunbbx.woff') format('woff'),
  81. url('fonts/cmunbbx.ttf') format('truetype'),
  82. url('fonts/cmunbbx.eot?') format('embedded-opentype');
  83. font-weight: normal;
  84. font-style: normal;
  85. }
  86. @font-face {
  87. font-family: 'CM Concrete';
  88. src: local("☺"),
  89. url('fonts/cmunobx.woff') format('woff'),
  90. url('fonts/cmunobx.ttf') format('truetype'),
  91. url('fonts/cmunobx.eot?') format('embedded-opentype');
  92. font-weight: normal;
  93. font-style: normal;
  94. }
  95. @font-face {
  96. font-family: 'CM Type';
  97. src: local("☺"),
  98. url('fonts/cmunobx.woff') format('woff'),
  99. url('fonts/cmunobx.ttf') format('truetype'),
  100. url('fonts/cmunobx.eot?') format('embedded-opentype');
  101. font-weight: normal;
  102. font-style: normal;
  103. }
  104. .cm {
  105. font-family: "Computer Modern";
  106. }
  107. .cm-sans {
  108. font-family: "CM Sans";
  109. }
  110. .cm-concrete {
  111. font-family: "CM Concrete";
  112. }
  113. .cm-bright {
  114. font-family: "CM Bright";
  115. }
  116. .cm-type {
  117. font-family: "CM Type";
  118. }
  119. .courier {
  120. font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
  121. }
  122. .didot {
  123. font-family: Didot, "Didot LT STD", "Hoefler Text", Garamond, "Times New Roman", serif;
  124. }
  125. .georgia {
  126. font-family: Georgia, Times, "Times New Roman", serif;
  127. }
  128. .helvetica {
  129. font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  130. }
  131. * {
  132. -webkit-font-smoothing: antialiased !important;
  133. text-rendering: optimizeLegibility !important;
  134. font-weight: normal;
  135. font-size: 16px;
  136. line-height: 1.42857143;
  137. }
  138. input,button,select,textarea {
  139. font-family: inherit;
  140. font-size: inherit;
  141. line-height: inherit;
  142. }
  143. .firstcharacter {
  144. float: left;
  145. color: #000;
  146. font-size: 58px;
  147. line-height: 34px;
  148. padding-top: 4px;
  149. padding-right: 6px;
  150. padding-left: 0px;
  151. font-family: Georgia;
  152. }
  153. .tight {
  154. margin: 3px 0;
  155. }
  156. .light {
  157. color:#fcfcfc !important;
  158. }
  159. .darken {
  160. color:#333
  161. }
  162. .dim {
  163. color: #737373;
  164. }
  165. .dull {
  166. color: #535353;
  167. }
  168. .right {
  169. text-align: right;
  170. }
  171. em {
  172. font-weight: bold;
  173. }
  174. .big {
  175. font-size: 29px;
  176. font-weight: bold;
  177. letter-spacing: -1px;
  178. }
  179. .super {
  180. margin: 40px 0 0;
  181. font-size: 43px;
  182. font-weight: bold;
  183. letter-spacing: -2px;
  184. }
  185. .super-duper {
  186. font-size: 100px;
  187. font-weight: bold;
  188. letter-spacing: -2px;
  189. }
  190. h5.contact {
  191. margin: 0 0 5px !important;
  192. }
  193. .conq {
  194. font-family: "aw-conqueror-didot",serif;
  195. font-style: normal;
  196. font-weight: 300;
  197. }
  198. .email a {
  199. color: #777;
  200. }
  201. /*============================================
  202. Grid
  203. ==============================================*/
  204. .container {
  205. padding-right: 15px;
  206. padding-left: 15px;
  207. margin-right: auto;
  208. margin-left: auto;
  209. }
  210. @media (max-width: 667px) {
  211. body {
  212. background: #fff;
  213. }
  214. article.single {
  215. padding: 20px 0px;
  216. }
  217. .super-duper {
  218. font-size: 63px;
  219. }
  220. #caro {
  221. min-height: 300px;
  222. }
  223. }
  224. @media (max-width: 768px) and (min-width: 668px) {
  225. article.single {
  226. padding: 70px 20px 70px;
  227. }
  228. }
  229. @media (min-width: 768px) {
  230. .container {
  231. width: 760px;
  232. }
  233. .site-title {
  234. font-size: 25px;
  235. }
  236. article.single {
  237. padding: 70px 40px 70px;
  238. }
  239. }
  240. @media (min-width: 992px) {
  241. .container {
  242. width: 970px;
  243. }
  244. article.single {
  245. background: #fff;
  246. padding: 70px 80px 140px;
  247. }
  248. }
  249. @media (min-width: 1200px) {
  250. .container {
  251. width: 1170px;
  252. }
  253. article.single {
  254. background: #fff;
  255. padding: 70px 100px 140px;
  256. }
  257. }
  258. @media (min-width: 1310px) {
  259. }
  260. @media print {
  261. * {
  262. color: #000 !important;
  263. text-shadow: none !important;
  264. background: transparent !important;
  265. -webkit-box-shadow: none !important;
  266. box-shadow: none !important;
  267. }
  268. }
  269. /*============================================
  270. Loader / Transit
  271. ==============================================*/
  272. #loader {
  273. position: fixed;
  274. width: 100%;
  275. height: 100%;
  276. top: 0;
  277. left: 0;
  278. font-size: 150px;
  279. text-align: center;
  280. vertical-align: middle;
  281. color: #222;
  282. z-index: 200000;
  283. background-color: #222;
  284. }
  285. .loading-animation {
  286. width: 250px;
  287. height: 250px;
  288. position: absolute;
  289. top: 0;
  290. bottom: 0;
  291. right: 0;
  292. left: 0;
  293. margin: auto;
  294. }
  295. .loading-animation svg {
  296. position:absolute;
  297. top:0;
  298. left:0;
  299. -webkit-transform-origin:center center;
  300. -ms-transform-origin:center center;
  301. -o-transform-origin:center center;
  302. transform-origin:center center;
  303. -webkit-transition:all 0.3s;
  304. -o-transition:all 0.3s;
  305. transition:all 0.3s;
  306. -webkit-transform:rotateY(0deg);
  307. -ms-transform:rotateY(0deg);
  308. -o-transform:rotateY(0deg);
  309. transform:rotateY(0deg);
  310. }
  311. .loading-animation path {
  312. fill:none;
  313. stroke:#fff;
  314. stroke-width:2;
  315. -webkit-transition:all .3s;
  316. -o-transition:all .3s;
  317. transition:all .3s;
  318. }
  319. .loading-animation .l1 path {
  320. fill:rgba(242,242,242,.1);
  321. stroke-dasharray:450;
  322. stroke-dashoffset:900;
  323. -webkit-animation:LOADING1 4s linear 0s infinite;
  324. -o-animation:LOADING1 4s linear 0s infinite;
  325. animation:LOADING1 4s linear 0s infinite;
  326. }
  327. .loading-animation .l2 path {
  328. fill:rgba(242,242,242,.1);
  329. stroke-dasharray:340;
  330. stroke-dashoffset:340;
  331. -webkit-animation:LOADING2 3s linear 0s infinite;
  332. -o-animation:LOADING2 3s linear 0s infinite;
  333. animation:LOADING2 3s linear 0s infinite;
  334. }
  335. .loading-animation .l3 path {
  336. fill:none;
  337. stroke-width:1;
  338. stroke-dasharray:33;
  339. stroke-dashoffset:33;
  340. -webkit-animation:LOADING3 2s linear 0s infinite;
  341. -o-animation:LOADING3 2s linear 0s infinite;
  342. animation:LOADING3 2s linear 0s infinite;
  343. }
  344. @-webkit-keyframes LOADING1 {
  345. 0%{stroke-dashoffset:-900;}
  346. 50%{stroke-dashoffset:0;}
  347. 100%{stroke-dashoffset:900;}
  348. }
  349. @-moz-keyframes LOADING1 {
  350. 0%{stroke-dashoffset:-900;}
  351. 50%{stroke-dashoffset:0;}
  352. 100%{stroke-dashoffset:900;}
  353. }
  354. @-o-keyframes LOADING1 {
  355. 0%{stroke-dashoffset:-900;}
  356. 50%{stroke-dashoffset:0;}
  357. 100%{stroke-dashoffset:900;}
  358. }
  359. @keyframes LOADING1 {
  360. 0%{stroke-dashoffset:-900;}
  361. 50%{stroke-dashoffset:0;}
  362. 100%{stroke-dashoffset:900;}
  363. }
  364. @-webkit-keyframes LOADING2 {
  365. 0%{stroke-dashoffset:340;}
  366. 50%{stroke-dashoffset:0;}
  367. 100%{stroke-dashoffset:-340;}
  368. }
  369. @-moz-keyframes LOADING2 {
  370. 0%{stroke-dashoffset:340;}
  371. 50%{stroke-dashoffset:0;}
  372. 100%{stroke-dashoffset:-340;}
  373. }
  374. @-o-keyframes LOADING2 {
  375. 0%{stroke-dashoffset:340;}
  376. 50%{stroke-dashoffset:0;}
  377. 100%{stroke-dashoffset:-340;}
  378. }
  379. @keyframes LOADING2 {
  380. 0%{stroke-dashoffset:340;}
  381. 50%{stroke-dashoffset:0;}
  382. 100%{stroke-dashoffset:-340;}
  383. }
  384. @-webkit-keyframes LOADING3 {
  385. 0%{stroke-dashoffset:-230;}
  386. 50%{stroke-dashoffset:0;}
  387. 100%{stroke-dashoffset:230;}
  388. }
  389. @-moz-keyframes LOADING3 {
  390. 0%{stroke-dashoffset:-230;}
  391. 50%{stroke-dashoffset:0;}
  392. 100%{stroke-dashoffset:230;}
  393. }
  394. @-o-keyframes LOADING3 {
  395. 0%{stroke-dashoffset:-230;}
  396. 50%{stroke-dashoffset:0;}
  397. 100%{stroke-dashoffset:230;}
  398. }
  399. @keyframes LOADING3 {
  400. 0%{stroke-dashoffset:-230;}
  401. 50%{stroke-dashoffset:0;}
  402. 100%{stroke-dashoffset:230;}
  403. }
  404. .svg-wrap .l1 {
  405. -webkit-animation:TURN 3s linear 0s infinite;
  406. -o-animation:TURN 3s linear 0s infinite;
  407. animation:TURN 3s linear 0s infinite;
  408. }
  409. .svg-wrap .l2 {
  410. -webkit-animation:TURN 2s linear 0s infinite;
  411. -o-animation:TURN 2s linear 0s infinite;
  412. animation:TURN 2s linear 0s infinite;
  413. }
  414. .svg-wrap .l3 {
  415. -webkit-animation:TURN 4.5s linear 0s infinite;
  416. -o-animation:TURN 4.5s linear 0s infinite;
  417. animation:TURN 4.5s linear 0s infinite;
  418. }
  419. @-webkit-keyframes TURN {
  420. 0%{-webkit-transform:rotateY(0deg);opacity:1}
  421. 25%{-webkit-transform:rotateY(90deg);opacity:.6}
  422. 50%{-webkit-transform:rotateY(180deg);opacity:1}
  423. 75%{-webkit-transform:rotateY(270deg);opacity:.6}
  424. 100%{-webkit-transform:rotateY(360deg);opacity:1}}
  425. @-webkit-keyframes TURNBACK {
  426. 0%{-webkit-transform:rotateY(360deg);opacity:1}
  427. 25%{-webkit-transform:rotateY(270deg);opacity:.6}
  428. 50%{-webkit-transform:rotateY(180deg);opacity:1}
  429. 75%{-webkit-transform:rotateY(90deg);opacity:.6}
  430. 100%{-webkit-transform:rotateY(0deg);opacity:1}}
  431. .m-scene .scene_element {
  432. -webkit-animation-duration: 0.25s;
  433. animation-duration: 0.25s;
  434. -webkit-transition-timing-function: ease-in;
  435. transition-timing-function: ease-in;
  436. -webkit-animation-fill-mode: both;
  437. animation-fill-mode: both; }
  438. .m-scene .scene_element--fadein {
  439. -webkit-animation-name: fadeIn;
  440. animation-name: fadeIn; }
  441. .m-scene .scene_element--fadeinup {
  442. -webkit-animation-name: fadeInUp;
  443. animation-name: fadeInUp; }
  444. .m-scene .scene_element--fadeinright {
  445. -webkit-animation-name: fadeInRight;
  446. animation-name: fadeInRight; }
  447. .m-scene .scene_element--delayed {
  448. -webkit-animation-delay: 0.25s;
  449. animation-delay: 0.25s; }
  450. .m-scene.is-exiting .scene_element {
  451. -webkit-animation-direction: alternate-reverse;
  452. animation-direction: alternate-reverse; }
  453. .m-scene.is-exiting .scene_element--delayed {
  454. -webkit-animation-delay: 0s;
  455. animation-delay: 0s; }
  456. .m-scene.is-exiting .scene_element--noexiting {
  457. -webkit-animation-direction: alternate-reverse;
  458. animation-direction: alternate-reverse; }
  459. /*============================================
  460. Intro
  461. ==============================================*/
  462. @keyframes blink {
  463. 0% { opacity: 0; }
  464. 25% { opacity: 1; }
  465. 50% { opacity: 1; }
  466. 100% { opacity: 0; }
  467. }
  468. @-webkit-keyframes blink {
  469. 0% { opacity: 0; }
  470. 25% { opacity: 1; }
  471. 50% { opacity: 1; }
  472. 100% { opacity: 0; }
  473. }
  474. @-ms-keyframes blink {
  475. 0% { opacity: 0; }
  476. 25% { opacity: 1; }
  477. 50% { opacity: 1; }
  478. 100% { opacity: 0; }
  479. }
  480. @-moz-keyframes blink {
  481. 0% { opacity: 0; }
  482. 25% { opacity: 1; }
  483. 50% { opacity: 1; }
  484. 100% { opacity: 0; }
  485. }
  486. .welcome::after {
  487. visibility: visible;
  488. content: '';
  489. background-color:green;
  490. opacity: 0;
  491. display: inline-block;
  492. position: relative;
  493. width: 0.5em;
  494. height: 1em;
  495. top: 5px;
  496. margin-left: 0;
  497. margin-bottom: 2px;
  498. -webkit-animation: blink 1s 20;
  499. -moz-animation: blink 1s 20;
  500. animation: blink 1s 20;
  501. }
  502. .welcome-back-text::after {
  503. visibility: visible;
  504. content: '';
  505. background-color:green;
  506. opacity: 0;
  507. display: inline-block;
  508. position: relative;
  509. width: 0.5em;
  510. height: 1em;
  511. top: 5px;
  512. margin-left: 0;
  513. margin-bottom: 2px;
  514. -webkit-animation: blink 1s 3;
  515. -moz-animation: blink 1s 3;
  516. animation: blink 1s 3;
  517. }
  518. .welcome-back {
  519. min-height: 500px;
  520. padding: 70px 50px 40px;
  521. font-size: 24px;
  522. color: #34F743;
  523. background: transparent url('img/terminal.svg');
  524. background-size: cover;
  525. border-radius: 1px;
  526. }
  527. .terminal-welcome .modal-content {
  528. margin: 0 0 100px;
  529. border: none;
  530. box-shadow:none;
  531. background-color: transparent !important;
  532. }
  533. .terminal {
  534. margin-top:30px;
  535. }
  536. .terminal .modal-content {
  537. margin: 0 0 100px;
  538. border: none;
  539. box-shadow:none;
  540. background-color: transparent !important;
  541. }
  542. [contenteditable] {outline: none;}
  543. .typed-cursor{
  544. display: none;
  545. }
  546. .thermo span.prompt {
  547. color: #389436;
  548. }
  549. .thermo p.input {
  550. line-height: 11px !important;
  551. margin: 0px;
  552. }
  553. .thermo p.response {
  554. line-height: 11px !important;
  555. margin: 0px;
  556. color:#34F743;
  557. }
  558. .thermo span.u {
  559. color: #389436;
  560. }
  561. .thermo span.at {
  562. color: #38BBC6;
  563. }
  564. .thermo span.mee {
  565. color: #389436;
  566. }
  567. .thermo-intro span.prompt {
  568. color: #389436;
  569. }
  570. .thermo-intro p.input {
  571. line-height: 11px !important;
  572. margin: 0px;
  573. }
  574. .thermo-intro p.response {
  575. line-height: 11px !important;
  576. margin: 0px;
  577. color:#34F743;
  578. }
  579. .thermo-intro span.u {
  580. color: #389436;
  581. }
  582. .thermo-intro span.at {
  583. color: #38BBC6;
  584. }
  585. .thermo-intro span.mee {
  586. color: #389436;
  587. }
  588. .big-top {
  589. height: auto;
  590. margin: 0 auto;
  591. width: 100%;
  592. position: relative;
  593. box-shadow: 0 0 50px rgba(0,0,0,0.8);
  594. padding: 100px 0;
  595. }
  596. .about {
  597. padding: 30px 0 0;
  598. }
  599. .carousel-fade .carousel-inner .item {
  600. left: 0 !important;
  601. opacity: 0;
  602. -webkit-transition-property: opacity;
  603. -moz-transition-property: opacity;
  604. -o-transition-property: opacity;
  605. transition-property: opacity;
  606. }
  607. .carousel-fade .carousel-inner .active {
  608. opacity: 1;
  609. }
  610. .carousel-fade .carousel-inner .active.left,
  611. .carousel-fade .carousel-inner .active.right {
  612. left: 0;
  613. opacity: 0;
  614. z-index: 1;
  615. }
  616. .carousel-fade .carousel-inner .next.left,
  617. .carousel-fade .carousel-inner .prev.right {
  618. opacity: 1;
  619. }
  620. .carousel-fade .carousel-control {
  621. z-index: 2;
  622. }
  623. #caro-lead {
  624. min-height: 400px;
  625. }
  626. #caro {
  627. min-height: 300px;
  628. }
  629. .hide-svg {
  630. visibility: hidden;
  631. }
  632. .fade-svg {
  633. -webkit-animation: fadeOut 1s;
  634. -moz-animation: fadeOut 1s;
  635. -o-animation: fadeOut 1s;
  636. -ms-animation: fadeOut 1s;
  637. animation: fadeOut 1s;
  638. }
  639. .show-svg {
  640. -webkit-animation: fadeIn 1s;
  641. -moz-animation: fadeIn 1s;
  642. -o-animation: fadeIn 1s;
  643. -ms-animation: fadeIn 1s;
  644. animation: fadeIn 1s;
  645. }
  646. #caro #svg-imac {
  647. max-height: 340px;
  648. }
  649. #caro #svg-imac.bg {
  650. background: transparent url('img/web.gif') no-repeat 28% 15%;
  651. background-size:95%;
  652. }
  653. #caro #svg-device {
  654. float:right;
  655. margin-top:-115px;
  656. }
  657. #studio-caro {
  658. -webkit-transition: all 1s ease;
  659. -moz-transition: all 1s ease;
  660. -o-transition: all 1s ease;
  661. transition: all 1s ease;
  662. }
  663. #studio-caro .carousel-indicators {
  664. left: 10%;
  665. bottom: 0;
  666. }
  667. .caro-grad_old {
  668. background: #5E7A9B;
  669. background: -webkit-linear-gradient(top, #355069 0, #5e7a9b 100%);
  670. background: -moz-linear-gradient(top, #355069 0, #5e7a9b 100%);
  671. background: -o-linear-gradient(top, #355069 0, #5e7a9b 100%);
  672. background: linear-gradient(top, #355069 0, #5e7a9b 100%);
  673. }
  674. .caro-grad {
  675. background:#404040;
  676. }
  677. .caro-grad2 {
  678. background: #000000;
  679. }
  680. .caro-grad3 {
  681. background: #ffffff;
  682. }
  683. .caro-grad5 {
  684. background: none;
  685. }
  686. .darken-carousel-indicators {
  687. border: 1px solid #000 !important;
  688. }
  689. .carousel-indicators .darken-carousel-indicators.active {
  690. background: #000 !important;
  691. }
  692. .bg1 {
  693. background-size: cover;
  694. -webkit-background-size: cover;
  695. -moz-background-size: cover;
  696. -o-background-size: cover;
  697. background-size: cover;
  698. }
  699. .blur {
  700. -webkit-filter: blur(5px);
  701. -moz-filter: blur(5px);
  702. -o-filter: blur(5px);
  703. -ms-filter: blur(5px);
  704. filter: blur(5px);
  705. }
  706. #tv {
  707. position: fixed;
  708. right: 0;
  709. top: 0;
  710. min-width: 101%;
  711. min-height: 101%;
  712. width: auto;
  713. height: auto;
  714. z-index: -100;
  715. /*background: url(img/tv.gif) no-repeat;*/
  716. background-size: cover;
  717. -webkit-background-size: cover;
  718. -moz-background-size: cover;
  719. -o-background-size: cover;
  720. filter: saturate(0);
  721. -webkit-filter: saturate(0);
  722. transform-origin: 50% 50%;
  723. -webkit-transform-origin: 50% 50%;
  724. border: none;
  725. }
  726. @-webkit-keyframes vidblur {
  727. 0% {-webkit-filter: blur(0px) saturate(0) hue-rotate(0deg);}
  728. 100% {-webkit-filter: blur(4px) saturate(2) hue-rotate(100deg);}
  729. }
  730. @-webkit-keyframes vidunblur {
  731. 0% {-webkit-filter: blur(4px) saturate(2) hue-rotate(100deg);;}
  732. 100% {-webkit-filter: blur(0px) saturate(0) hue-rotate(0deg);}
  733. }
  734. #tv.blur {
  735. -webkit-animation: vidblur 4s;
  736. animation: vidblur 4s;
  737. }
  738. #tv.unblur {
  739. -webkit-animation: vidunblur 4s;
  740. animation: vidunblur 4s;
  741. }
  742. .wallpaper,
  743. .wallpaper .wallpaper-container,
  744. .wallpaper .wallpaper-media {
  745. -webkit-transition: opacity 0.5s linear !important;
  746. transition: opacity 0.5s linear !important;
  747. }
  748. .wallpaper { overflow: hidden; position: relative; }
  749. .wallpaper .wallpaper-container { height: 100%; overflow: hidden; position: absolute; top: 0; left:0px; width: 100%; z-index: -1; }
  750. .wallpaper .wallpaper-media { left: 0; opacity: 0; position: absolute; top: 0; }
  751. .wallpaper .wallpaper-media.animated {
  752. -webkit-transition: opacity 0.5s linear !important;
  753. transition: opacity 0.5s linear !important;
  754. }
  755. .wallpaper .wallpaper-media img,
  756. .wallpaper .wallpaper-media video,
  757. .wallpaper .wallpaper-media iframe { display: block; height: 100%; width: 100%; }
  758. .wallpaper .wallpaper-embed.ready:after { content: ''; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 1; }
  759. .wallpaper .wallpaper-embed.ready iframe { /* pointer-events: none; - safari doesn't like this :/ */ z-index: 0; }
  760. .wallpaper .wallpaper-media.native { background-position: center; background-size: cover; height: 100%; width: 100%; }
  761. .wallpaper .wallpaper-media.native img { display: none; }
  762. .wallpaper .wallpaper-media.fixed { background-position: center; background-attachment: fixed; height: 100%; width: 100%; }
  763. .wallpaper .wallpaper-media.fixed img { display: none; }
  764. .touch-carousel {
  765. position:relative;
  766. overflow:hidden;
  767. width:100%;
  768. -webkit-transform:translate3d(0,0,0) scale3d(1,1,1);
  769. -webkit-backface-visibility:hidden;
  770. -webkit-transform-style:preserve-3d;
  771. -webkit-tap-highlight-color:rgba(0,0,0,0);
  772. -webkit-touch-callout:none;
  773. -webkit-user-select:none;
  774. -moz-user-select:none;
  775. -ms-user-select:none;
  776. user-select:none
  777. }
  778. .touch-carousel .carousel-inner {
  779. overflow:hidden;
  780. -webkit-transform:translate3d(0%,0,0) scale3d(1,1,1);
  781. -moz-transform:translate3d(0%,0,0) scale3d(1,1,1);
  782. -ms-transform:translate3d(0%,0,0) scale3d(1,1,1);
  783. transform:translate3d(0%,0,0) scale3d(1,1,1);
  784. -webkit-backface-visibility:hidden;
  785. -webkit-transform-style:preserve-3d;
  786. -webkit-tap-highlight-color:rgba(0,0,0,0);
  787. -webkit-touch-callout:none;
  788. -webkit-user-select:none;
  789. -moz-user-select:none;
  790. -ms-user-select:none;
  791. user-select:none
  792. }
  793. .touch-carousel .carousel-inner>.item {
  794. position:relative;
  795. float:left;
  796. display:block;
  797. -webkit-transition:none;
  798. -moz-transition:none;
  799. transition:none;
  800. -webkit-backface-visibility:hidden;
  801. -webkit-transform-style:preserve-3d
  802. }
  803. .touch-carousel .carousel-inner>.item * {
  804. -webkit-transition:none;
  805. -moz-transition:none;transition:none
  806. }
  807. .touch-carousel .carousel-inner.animate {
  808. -webkit-transition:all .3s linear;
  809. -moz-transition:all .3s linear;
  810. transition:all .3s linear
  811. }
  812. /*============================================
  813. Navbar
  814. ==============================================*/
  815. .navbar {
  816. -webkit-transition: background-color 0.3s;
  817. -moz-transition: background-color 0.3s;
  818. transition: background-color 0.3s;
  819. -webkit-transform: translate3d(0, 0, 0);
  820. -moz-transform: translate3d(0, 0, 0);
  821. -ms-transform: translate3d(0, 0, 0);
  822. -o-transform: translate3d(0, 0, 0);
  823. transform: translate3d(0, 0, 0);
  824. }
  825. .navbar.fixed {
  826. position: fixed;
  827. top: -81px;
  828. -webkit-transition: all .3s ease-in-out;
  829. -moz-transition: all .3s ease-in-out;
  830. transition: all .3s ease-in-out;
  831. }
  832. .navbar.visible {
  833. -webkit-transform: translate3d(0, 100%, 0);
  834. -moz-transform: translate3d(0, 100%, 0);
  835. -ms-transform: translate3d(0, 100%, 0);
  836. -o-transform: translate3d(0, 100%, 0);
  837. transform: translate3d(0, 100%, 0);
  838. background-color: rgba(237, 237, 237, 0.7);
  839. }
  840. #nav {
  841. width: 100%;
  842. }
  843. #nav.affix-top {
  844. width: 100%;
  845. background-color: rgba(237, 237, 237, 0.0);
  846. }
  847. #nav.affix-top {
  848. visibility: visible;
  849. position: absolute;
  850. top:0;
  851. left:0;
  852. height:80px;
  853. -webkit-transition: all .3s ease-in-out;
  854. -moz-transition: all .3s ease-in-out;
  855. transition: all .3s ease-in-out;
  856. }
  857. #nav.affix {
  858. position: fixed;
  859. top: 0;
  860. z-index:10;
  861. -webkit-transition: all .3s ease-in-out;
  862. -moz-transition: all .3s ease-in-out;
  863. transition: all .3s ease-in-out;
  864. }
  865. /*============================================
  866. NavMenu
  867. ==============================================*/
  868. .nav-tabs-bottom {
  869. border-bottom: 0;
  870. border-top: 1px solid #dddddd;
  871. }
  872. .nav-tabs-bottom > li {
  873. margin-bottom: 0;
  874. margin-top: -1px;
  875. }
  876. .nav-tabs-bottom > li > a {
  877. border-radius: 0 0 4px 4px;
  878. }
  879. .nav-tabs-bottom > li > a:hover,
  880. .nav-tabs-bottom > li > a:focus,
  881. .nav-tabs-bottom > li.active > a,
  882. .nav-tabs-bottom > li.active > a:hover,
  883. .nav-tabs-bottom > li.active > a:focus {
  884. border: 1px solid #dddddd;
  885. border-top-color: transparent;
  886. }
  887. .nav-tabs-left {
  888. border-bottom: 0;
  889. border-right: 1px solid #dddddd;
  890. }
  891. .nav-tabs-left > li {
  892. margin-bottom: 0;
  893. margin-right: -1px;
  894. float: none;
  895. }
  896. .nav-tabs-left > li > a {
  897. border-radius: 4px 0 0 4px;
  898. margin-right: 0;
  899. margin-bottom: 2px;
  900. }
  901. .nav-tabs-left > li > a:hover,
  902. .nav-tabs-left > li > a:focus,
  903. .nav-tabs-left > li.active > a,
  904. .nav-tabs-left > li.active > a:hover,
  905. .nav-tabs-left > li.active > a:focus {
  906. border: 1px solid #dddddd;
  907. border-right-color: transparent;
  908. }
  909. .row > .nav-tabs-left {
  910. padding-right: 0;
  911. padding-left: 15px;
  912. margin-right: -1px;
  913. position: relative;
  914. z-index: 1;
  915. }
  916. .row > .nav-tabs-left + .tab-content {
  917. border-left: 1px solid #dddddd;
  918. }
  919. .nav-tabs-right {
  920. border-bottom: 0;
  921. border-left: 1px solid #dddddd;
  922. }
  923. .nav-tabs-right > li {
  924. margin-bottom: 0;
  925. margin-left: -1px;
  926. float: none;
  927. }
  928. .nav-tabs-right > li > a {
  929. border-radius: 0 4px 4px 0;
  930. margin-left: 0;
  931. margin-bottom: 2px;
  932. }
  933. .nav-tabs-right > li > a:hover,
  934. .nav-tabs-right > li > a:focus,
  935. .nav-tabs-right > li.active > a,
  936. .nav-tabs-right > li.active > a:hover,
  937. .nav-tabs-right > li.active > a:focus {
  938. border: 1px solid #dddddd;
  939. border-left-color: transparent;
  940. }
  941. .row > .nav-tabs-right {
  942. padding-left: 0;
  943. padding-right: 15px;
  944. }
  945. .offcanvas {
  946. display: none;
  947. }
  948. .offcanvas.in {
  949. display: block;
  950. }
  951. @media (max-width: 767px) {
  952. .offcanvas-xs {
  953. display: none;
  954. }
  955. .offcanvas-xs.in {
  956. display: block;
  957. }
  958. }
  959. @media (max-width: 991px) {
  960. .offcanvas-sm {
  961. display: none;
  962. }
  963. .offcanvas-sm.in {
  964. display: block;
  965. }
  966. }
  967. @media (max-width: 1199px) {
  968. .offcanvas-md {
  969. display: none;
  970. }
  971. .offcanvas-md.in {
  972. display: block;
  973. }
  974. }
  975. .offcanvas-lg {
  976. display: none;
  977. }
  978. .offcanvas-lg.in {
  979. display: block;
  980. }
  981. .canvas-sliding {
  982. -webkit-transition: top 0.35s, left 0.35s, bottom 0.35s, right 0.35s;
  983. transition: top 0.35s, left 0.35s, bottom 0.35s, right 0.35s;
  984. }
  985. .offcanvas-clone {
  986. height: 0px !important;
  987. width: 0px !important;
  988. overflow: hidden !important;
  989. border: none !important;
  990. margin: 0px !important;
  991. padding: 0px !important;
  992. position: absolute !important;
  993. top: auto !important;
  994. left: auto !important;
  995. bottom: 0px !important;
  996. right: 0px !important;
  997. opacity: 0 !important;
  998. }
  999. .offcanvas.in {
  1000. display: block;
  1001. }
  1002. .canvas-sliding {
  1003. -webkit-transition: .25s ease-in-out;
  1004. transition: .25s ease-in-out;
  1005. }
  1006. .navmenu,
  1007. .navbar-offcanvas {
  1008. width: 170px;
  1009. height: auto;
  1010. }
  1011. .navmenu-fixed-right,
  1012. .navbar-offcanvas {
  1013. position: fixed;
  1014. top: 80px;
  1015. bottom: 0;
  1016. z-index: 1030;
  1017. overflow-y: auto;
  1018. border-radius: 0;
  1019. left: auto;
  1020. right: 0;
  1021. }
  1022. .nav-toggle {
  1023. padding: 15px 0;
  1024. padding: 10px 35px 16px 0px;
  1025. right: 15px;
  1026. top: 25px;
  1027. cursor: pointer;
  1028. position: absolute;
  1029. }
  1030. .nav-toggle span, .nav-toggle span:before, .nav-toggle span:after {
  1031. cursor: pointer;
  1032. border-radius: 1px;
  1033. height: 5px;
  1034. width: 35px;
  1035. background: #333E52;
  1036. position: absolute;
  1037. display: block;
  1038. content: '';
  1039. }
  1040. .nav-toggle span:before {
  1041. top: -10px;
  1042. }
  1043. .nav-toggle span:after {
  1044. bottom: -10px;
  1045. }
  1046. .nav-toggle span, .nav-toggle span:before, .nav-toggle span:after {
  1047. transition: all 500ms ease-in-out;
  1048. }
  1049. .nav-toggle.active span {
  1050. background-color: transparent;
  1051. }
  1052. .nav-toggle.active span:before, .nav-toggle.active span:after {
  1053. top: 0;
  1054. }
  1055. .nav-toggle.active span:before {
  1056. transform: rotate(45deg);
  1057. -webkit-transform: rotate(45deg);
  1058. -o-transform: rotate(45deg);
  1059. }
  1060. .nav-toggle.active span:after {
  1061. transform: rotate(-45deg);
  1062. -webkit-transform: rotate(-45deg);
  1063. -o-transform: rotate(-45deg);
  1064. }
  1065. ul.social li {
  1066. float: left;
  1067. padding: 1px 3px;
  1068. }
  1069. #archives li {
  1070. list-style: none;
  1071. margin: 2px 8px;
  1072. float: left;
  1073. }
  1074. .fa {
  1075. color: #777;
  1076. }
  1077. .fa-15x {
  1078. font-size: 1.6em !important;
  1079. padding: 2px 2px;
  1080. }
  1081. /*============================================
  1082. Header
  1083. ==============================================*/
  1084. .site-title {
  1085. float: right;
  1086. padding: 15px 0;
  1087. font-family: "Computer Modern";
  1088. }
  1089. .site-title a {
  1090. color: #333;
  1091. text-decoration: none;
  1092. }
  1093. img.dw {
  1094. float: right;
  1095. margin: 15px 0;
  1096. }
  1097. #site-description {
  1098. clear: right;
  1099. float: right;
  1100. font-style: italic;
  1101. margin: 14px 0 18px 0;
  1102. width: 160px;
  1103. }
  1104. .logo {
  1105. margin: 0 auto;
  1106. vertical-align: top;
  1107. }
  1108. .front-nav {
  1109. margin: 10px 0 0;
  1110. }
  1111. /*============================================
  1112. Content
  1113. ==============================================*/
  1114. .screen-reader {
  1115. text-indent: -10000px;
  1116. top:auto;
  1117. width:1px;
  1118. height:1px;
  1119. overflow:hidden;
  1120. }
  1121. .divider {
  1122. border-bottom: 1px solid #cecece;
  1123. width:100%;
  1124. margin: 30px 0 30px;
  1125. }
  1126. .studio-tools{
  1127. border-left: 1px solid #cecece;
  1128. margin: 28px 0px;
  1129. padding: 0 10px;
  1130. }
  1131. .studio-subnav {
  1132. border-right: 1px solid #cecece;
  1133. margin: 28px 0px;
  1134. padding: 0 10px;
  1135. }
  1136. .studio-subnav a {
  1137. color: #000;
  1138. text-decoration: none;
  1139. }
  1140. .studio-subnav li.active a {
  1141. color: #FF0000;
  1142. text-decoration: none;
  1143. }
  1144. .studio-subnav li.active .fa {
  1145. color: #FF0000;
  1146. }
  1147. .studio-subnav a:hover {
  1148. color: #FF0000;
  1149. text-decoration: none;
  1150. }
  1151. .studio-subnav .fa {
  1152. color: #000;
  1153. text-decoration: none;
  1154. }
  1155. #studio-tab h4 {
  1156. line-height: 24px;
  1157. }
  1158. .studio-top.affix {
  1159. position: fixed;
  1160. top: 0;
  1161. z-index: 100;
  1162. background: #fff;
  1163. width: 100%
  1164. }
  1165. /*===== Structure =====*/
  1166. .a:hover {
  1167. color: #1d8;
  1168. }
  1169. .leader {
  1170. padding: 100px 0 0;
  1171. }
  1172. .leader-gap {
  1173. padding: 40px 0;
  1174. }
  1175. .posts-front {
  1176. padding: 40px 0;
  1177. }
  1178. .dark {
  1179. background: #222;
  1180. }
  1181. .bottom {
  1182. padding-top: 50px;
  1183. }
  1184. .footer {
  1185. padding: 50px 0;
  1186. }
  1187. .footer-home {
  1188. padding: 90px 0 50px;
  1189. }
  1190. .centered {
  1191. float: none;
  1192. margin: 0 auto;
  1193. }
  1194. .border-left {
  1195. border-left: 1px solid #333;
  1196. }
  1197. article#main {
  1198. padding: 0px;
  1199. }
  1200. article#main .entry-content {
  1201. padding: 15px;
  1202. }
  1203. article h2 {
  1204. font-size: 28px;
  1205. }
  1206. article.home {
  1207. background: rgba(255, 255, 255, 0.9);
  1208. padding: 70px 60px;
  1209. border-radius: 5px;
  1210. min-height: 180px;
  1211. box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  1212. }
  1213. article.single {
  1214. background: #fff;
  1215. box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  1216. }
  1217. article.blurb {
  1218. background: #fff;
  1219. padding: 10px 15px;
  1220. margin:25px 0;
  1221. box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  1222. }
  1223. article.studio {
  1224. background: #fff;
  1225. padding: 0 15px 10px;
  1226. margin:0 0 20px;
  1227. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  1228. }
  1229. .studio-thumbnail {
  1230. max-height:180px;
  1231. overflow:hidden;
  1232. }
  1233. img.studio-thumb {
  1234. box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  1235. -webkit-filter: saturate(0) opacity(0.6);
  1236. filter: saturate(0) opacity(0.6);
  1237. -webkit-transition: all 1s;
  1238. transition: all 1s;
  1239. }
  1240. img.studio-thumb:hover {
  1241. -webkit-filter: saturate(1) opacity(1);
  1242. filter: saturate(1) opacity(1);
  1243. }
  1244. .post {
  1245. margin-bottom: 40px;
  1246. }
  1247. article p {
  1248. text-indent: 12px;
  1249. }
  1250. p.nobreak {
  1251. margin: 0 0 10px !important;
  1252. }
  1253. table.icons tbody > tr > td {
  1254. border:none;
  1255. }
  1256. table.icons tbody > tr > td {
  1257. border:none;
  1258. padding: 1px;
  1259. }
  1260. /*===== Footer =====*/
  1261. p.cc {
  1262. float: right;
  1263. font-size: 14px;
  1264. margin: 2px 20px 30px 10px;
  1265. }
  1266. span.quiet {
  1267. display: none;
  1268. }
  1269. span.right {
  1270. float: right;
  1271. }
  1272. .footer {
  1273. padding: 50px 0 30px;
  1274. }
  1275. .form-row {
  1276. margin: 10px 0;
  1277. }
  1278. .form-row.checkbox {
  1279. font-size: 0.85em;
  1280. }
  1281. .form-row.texts:first-of-type {
  1282. margin-top: 28px;
  1283. }
  1284. .form-row.texts + .form-row:not(.texts) {
  1285. margin-top: 30px;
  1286. }
  1287. .checkbox-field input {
  1288. margin-right: 10px;
  1289. }
  1290. .entry-content ul {
  1291. margin: 10px 20px;
  1292. }
  1293. .entry-content ul.sitemap {
  1294. margin: 0;
  1295. }
  1296. /*===== Wordpress =====*/
  1297. #content {
  1298. margin-bottom: 36px;
  1299. margin-top: 100px;
  1300. }
  1301. #content,
  1302. #content input,
  1303. #content textarea {
  1304. color: #111;
  1305. }
  1306. #content p,
  1307. #content ul,
  1308. #content ol,
  1309. #content dd,
  1310. #content pre,
  1311. #content hr {
  1312. margin-bottom: 24px;
  1313. }
  1314. #content ul ul,
  1315. #content ol ol,
  1316. #content ul ol,
  1317. #content ol ul {
  1318. margin-bottom: 0;
  1319. }
  1320. #content pre,
  1321. #content kbd,
  1322. #content tt,
  1323. #content var {
  1324. font-size: 15px;
  1325. line-height: 21px;
  1326. }
  1327. #content code {
  1328. font-size: 13px;
  1329. }
  1330. #content dt,
  1331. #content th {
  1332. color: #000;
  1333. }
  1334. #content h1,
  1335. #content h2,
  1336. #content h3,
  1337. #content h4,
  1338. #content h5,
  1339. #content h6 {
  1340. color: #000;
  1341. line-height: 1.5em;
  1342. margin: 0 0 16px 0;
  1343. }
  1344. #content table {
  1345. border: 1px solid #e7e7e7;
  1346. margin: 0 -1px 24px 0;
  1347. text-align: left;
  1348. width: 100%;
  1349. }
  1350. #content tr th,
  1351. #content thead th {
  1352. color: #888;
  1353. font-size: 12px;
  1354. font-weight: bold;
  1355. line-height: 18px;
  1356. padding: 9px 24px;
  1357. }
  1358. #content tr td {
  1359. border-top: 1px solid #e7e7e7;
  1360. padding: 6px 24px;
  1361. }
  1362. #content tr.odd td {
  1363. background: #f2f7fc;
  1364. }
  1365. .hentry {
  1366. margin: 0 0 30px 0;
  1367. }
  1368. .reserved-gallery {
  1369. float: left;
  1370. padding: 5px;
  1371. }
  1372. .home .sticky {
  1373. background: #f2f7fc;
  1374. border-top: 4px solid #000;
  1375. margin-left: -20px;
  1376. margin-right: -20px;
  1377. padding: 18px 20px;
  1378. }
  1379. .single .hentry {
  1380. margin: 0 0 36px 0;
  1381. }
  1382. .page-title {
  1383. color: #000;
  1384. font-size: 14px;
  1385. font-weight: bold;
  1386. margin: 0 0 36px 0;
  1387. }
  1388. .page-title span {
  1389. color: #333;
  1390. font-size: 16px;
  1391. font-style: italic;
  1392. font-weight: normal;
  1393. }
  1394. .entry-caption-parent .page-title span {
  1395. color: #777;
  1396. font-size: 12px;
  1397. font-style: italic;
  1398. font-weight: normal;
  1399. }
  1400. .nav-previous span.meta-nav {
  1401. color: #888;
  1402. font-size: 12px;
  1403. font-style: italic;
  1404. font-weight: normal;
  1405. }
  1406. .nav-next span.meta-nav {
  1407. color: #888;
  1408. font-size: 12px;
  1409. font-style: italic;
  1410. font-weight: normal;
  1411. }
  1412. .page-title a:link,
  1413. .page-title a:visited {
  1414. color: #888;
  1415. text-decoration: none;
  1416. }
  1417. .page-title a:active,
  1418. .page-title a:hover {
  1419. color: #2a6496;
  1420. }
  1421. #content .entry-title {
  1422. color: #000;
  1423. font-size: 26px;
  1424. line-height: 1.3em;
  1425. margin-bottom: 20px;
  1426. }
  1427. h2.entry-title {
  1428. color: #999;
  1429. }
  1430. .entry-title a:link,
  1431. .entry-title a:visited {
  1432. color: #000;
  1433. text-decoration: none;
  1434. }
  1435. .entry-title a:active,
  1436. .entry-title a:hover {
  1437. color: #2a6496;
  1438. }
  1439. .entry-meta {
  1440. color: #888;
  1441. font-size: 12px;
  1442. }
  1443. .entry-meta-attachment {
  1444. float: right;
  1445. color: #888;
  1446. font: 11px "Courier New", Courier, mono;
  1447. }
  1448. .entry-meta abbr,
  1449. .entry-utility abbr {
  1450. border: none;
  1451. }
  1452. .entry-meta abbr:hover,
  1453. .entry-utility abbr:hover {
  1454. border-bottom: 1px dotted #666;
  1455. }
  1456. .entry-content,
  1457. .entry-summary {
  1458. clear: both;
  1459. padding: 18px 0 20px;
  1460. }
  1461. .entry-guestbook {
  1462. clear: both;
  1463. padding: 3px 0 10px 0;
  1464. }
  1465. .entry-content p {
  1466. font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
  1467. }
  1468. .signature {
  1469. float: right;
  1470. margin: 10px 150px 40px 0px;
  1471. }
  1472. .bypostauthor {
  1473. }
  1474. #inside h3 {
  1475. font: 16px "Courier New", Courier, mono;
  1476. line-height: 10px;
  1477. margin: 0 0 10px 0;
  1478. }
  1479. #inside p {
  1480. margin: 0 0 10px 0;
  1481. line-height: 20px;
  1482. }
  1483. #content .entry-summary p:last-child {
  1484. margin-bottom: 12px;
  1485. }
  1486. .entry-content fieldset {
  1487. border: 1px solid #e7e7e7;
  1488. margin: 0 0 24px 0;
  1489. padding: 24px;
  1490. }
  1491. .entry-content fieldset legend {
  1492. background: #fff;
  1493. color: #000;
  1494. font-weight: bold;
  1495. padding: 0 24px;
  1496. }
  1497. .entry-content input {
  1498. margin: 0 0 20px 0;
  1499. }
  1500. .entry-content input.file,
  1501. .entry-content input.button {
  1502. margin-right: 24px;
  1503. }
  1504. .entry-content label {
  1505. color: #888;
  1506. font-size: 12px;
  1507. }
  1508. .entry-content select {
  1509. margin: 0 0 24px 0;
  1510. }
  1511. .entry-content sup,
  1512. .entry-content sub {
  1513. font-size: 10px;
  1514. }
  1515. .entry-content blockquote.left {
  1516. float: left;
  1517. margin-left: 0;
  1518. margin-right: 24px;
  1519. text-align: right;
  1520. width: 33%;
  1521. }
  1522. .entry-content blockquote.right {
  1523. float: right;
  1524. margin-left: 24px;
  1525. margin-right: 0;
  1526. text-align: left;
  1527. width: 33%;
  1528. }
  1529. .page-link {
  1530. color: #000;
  1531. font-weight: bold;
  1532. margin: 0 0 22px 0;
  1533. word-spacing: 0.5em;
  1534. }
  1535. .page-link a:link,
  1536. .page-link a:visited {
  1537. background: #f1f1f1;
  1538. color: #333;
  1539. font-weight: normal;
  1540. padding: 0.5em 0.75em;
  1541. text-decoration: none;
  1542. }
  1543. .home .sticky .page-link a {
  1544. background: #d9e8f7;
  1545. }
  1546. .page-link a:active,
  1547. .page-link a:hover {
  1548. color: #ff4b33;
  1549. }
  1550. body.page .edit-link {
  1551. clear: both;
  1552. display: block;
  1553. }
  1554. .entry-utility {
  1555. clear: both;
  1556. color: #888;
  1557. font-size: 12px;
  1558. line-height: 18px;
  1559. }
  1560. .entry-meta a,
  1561. .entry-utility a {
  1562. color: #888;
  1563. }
  1564. .entry-meta a:hover,
  1565. .entry-utility a:hover {
  1566. color: #ff4b33;
  1567. }
  1568. #content .video-player {
  1569. padding: 0;
  1570. }
  1571. .date {
  1572. float: right;
  1573. margin: 0px 0 20px 50px;
  1574. color: #777;
  1575. font: 14px/18px "Courier New", Courier, mono;
  1576. }
  1577. .front-date {
  1578. float: right;
  1579. margin: 0px 0 0px 40px;
  1580. color: #777;
  1581. font: 14px/18px "Courier New", Courier, mono;
  1582. }
  1583. #content ul li li {
  1584. padding: 0 0 0 20px;
  1585. }
  1586. .list-group-horizontal .list-group-item {
  1587. display: inline-block;
  1588. }
  1589. .list-group-horizontal .list-group-item {
  1590. margin-bottom: 0;
  1591. margin-left:-2px;
  1592. margin-right: 0;
  1593. }
  1594. .list-group-horizontal .list-group-item:first-child {
  1595. border-top-right-radius:0;
  1596. border-bottom-left-radius:4px;
  1597. }
  1598. .list-group-horizontal .list-group-item:last-child {
  1599. border-top-right-radius:4px;
  1600. border-bottom-left-radius:0;
  1601. }
  1602. /*============================================
  1603. Meta
  1604. ==============================================*/
  1605. .meta {
  1606. font-size: 11px;
  1607. }
  1608. .categories-fb {
  1609. text-align: right;
  1610. }
  1611. span.fb {
  1612. width: 16px;
  1613. height: 16px;
  1614. margin-left: 5px;
  1615. padding: 3px 4px 2px 5px;
  1616. background-image: url(img/fb1.png) ;
  1617. background-position: 0 16px;
  1618. position: relative;
  1619. -webkit-transition: all ease 0.3s;
  1620. -moz-transition: all ease 0.3s;
  1621. -o-transition: all ease 0.3s;
  1622. -ms-transition: all ease 0.3s;
  1623. transition: all ease 0.3s;
  1624. }
  1625. span.fb:hover {
  1626. background-position: 0 0;
  1627. }
  1628. /*============================================
  1629. Comments
  1630. ==============================================*/
  1631. #commentform input.error,
  1632. #commentform textarea.error {
  1633. background: #FFD2D2;
  1634. color:#000000;
  1635. }
  1636. #commentform .error {
  1637. color: #FF0000;
  1638. }
  1639. .commentbubble {
  1640. font-family:"CM Type";
  1641. font-size: 13px;
  1642. color: #777;
  1643. margin: 0px 15px 0 0;
  1644. }
  1645. .comment {
  1646. padding: 10px;
  1647. }
  1648. .commentbubble a.toogle-comments {
  1649. float: right;
  1650. text-align: right;
  1651. }
  1652. .comments-area {
  1653. background: rgba(242,242,242,.7);
  1654. padding: 15px;
  1655. margin: 60px 0 0 0;
  1656. }
  1657. #content .comments-area p {
  1658. margin: 0 0 8px;
  1659. font-size: 13px;
  1660. }
  1661. #content .comments-area .reply {
  1662. margin: 5px 8px 0px;
  1663. padding: 2px 9px;
  1664. background: rgba(242,242,242,.5);
  1665. font-size: 11px;
  1666. }
  1667. .comments-title {
  1668. margin-bottom: 48px;
  1669. margin-bottom: 3.428571429rem;
  1670. font-size: 16px;
  1671. font-size: 1.142857143rem;
  1672. line-height: 1.5;
  1673. font-weight: normal;
  1674. }
  1675. .comments-area ul {
  1676. margin: 0px 0px;
  1677. list-style: none;
  1678. }
  1679. .comments-area h3 {
  1680. margin: 0 0 0;
  1681. }
  1682. .comments-meta {
  1683. font-size: 10px;
  1684. }
  1685. .comments-area article {
  1686. margin: 24px 0;
  1687. }
  1688. .comments-area article header {
  1689. margin: 0 0 48px;
  1690. overflow: hidden;
  1691. position: relative;
  1692. }
  1693. .comments-area article header img {
  1694. float: left;
  1695. padding: 0;
  1696. line-height: 0;
  1697. }
  1698. .comments-area article header cite,
  1699. .comments-area article header time {
  1700. display: block;
  1701. margin-left: 85px;
  1702. }
  1703. .comments-area article header cite {
  1704. font-style: normal;
  1705. font-size: 15px;
  1706. }
  1707. .comments-area cite b {
  1708. font-weight: normal;
  1709. }
  1710. .comments-area article header time {
  1711. text-decoration: none;
  1712. font-size: 12px;
  1713. color: #5e5e5e;
  1714. }
  1715. .comments-area article header a {
  1716. text-decoration: none;
  1717. color: #5e5e5e;
  1718. }
  1719. .comments-area article header a:hover {
  1720. color: #21759b;
  1721. }
  1722. .comments-area article header cite a {
  1723. color: #444;
  1724. }
  1725. .comments-area article header cite a:hover {
  1726. text-decoration: underline;
  1727. }
  1728. a.comment-reply-link,
  1729. a.comment-edit-link {
  1730. color: #686868;
  1731. font-size: 13px;
  1732. }
  1733. a.comment-reply-link:hover,
  1734. a.comment-edit-link:hover {
  1735. color: #21759b;
  1736. }
  1737. .commentlist .pingback {
  1738. line-height: 1.714285714;
  1739. margin-bottom: 24px;
  1740. }
  1741. li.comment.even {
  1742. background: #fff;
  1743. }
  1744. li.comment.odd {
  1745. background: #f3f3f3;
  1746. }
  1747. li.comment.thread-even {
  1748. background: #f5f5f5;
  1749. }
  1750. li.comment.thread-odd {
  1751. background: #fff;
  1752. }
  1753. .comment-meta {
  1754. font-size: 11px;
  1755. line-height: 12px;
  1756. }
  1757. .comment-meta a {
  1758. color: #777;
  1759. float: right;
  1760. }
  1761. /*====== Comment form ======*/
  1762. #respond {
  1763. margin-top: 10px;
  1764. }
  1765. #respond h3#reply-title {
  1766. margin: 0px 8px 0px;
  1767. padding: 2px 9px;
  1768. font-size: 11px;
  1769. margin: 0;
  1770. }
  1771. #respond h3#reply-title #cancel-comment-reply-link {
  1772. margin-left: 10px;
  1773. font-weight: normal;
  1774. font-size: 12px;
  1775. font-size: 0.857142857rem;
  1776. }
  1777. #respond form {
  1778. margin: 24px 0;
  1779. margin: 1.714285714rem 0;
  1780. }
  1781. #respond form p {
  1782. margin: 11px 0;
  1783. margin: 0.785714286rem 0;
  1784. }
  1785. #respond form p.logged-in-as {
  1786. margin-bottom: 24px;
  1787. margin-bottom: 1.714285714rem;
  1788. }
  1789. #respond form label {
  1790. display: block;
  1791. line-height: 1.714285714;
  1792. }
  1793. #respond form input[type="text"],
  1794. #respond form textarea {
  1795. -moz-box-sizing: border-box;
  1796. box-sizing: border-box;
  1797. line-height: 1.714285714;
  1798. padding: 10px;
  1799. padding: 0.714285714rem;
  1800. width: 100%;
  1801. }
  1802. #respond form p.form-allowed-tags {
  1803. margin: 0;
  1804. font-size: 12px;
  1805. font-size: 0.857142857rem;
  1806. line-height: 2;
  1807. color: #5e5e5e;
  1808. }
  1809. .required {
  1810. color: red;
  1811. }
  1812. .form-submit {
  1813. display: none;
  1814. }
  1815. .comment-form-author,
  1816. .comment-form-email,
  1817. .comment-form-url {
  1818. width: 50%;
  1819. }
  1820. /*============================================
  1821. Media
  1822. ==============================================*/
  1823. .video-container {
  1824. position: relative;
  1825. padding-bottom: 56.25%;
  1826. padding-top: 30px; height: 0; overflow: hidden;
  1827. }
  1828. .video-container iframe,
  1829. .video-container object,
  1830. .video-container embed {
  1831. position: absolute;
  1832. top: 0;
  1833. left: 0;
  1834. width: 100%;
  1835. height: 100%;
  1836. }
  1837. .category-gallery .size-thumbnail img {
  1838. border: 10px solid #f1f1f1;
  1839. margin-bottom: 0;
  1840. }
  1841. .category-gallery .gallery-thumb {
  1842. float: left;
  1843. margin-right: 20px;
  1844. margin-top: -4px;
  1845. }
  1846. .home #content .category-gallery .entry-utility {
  1847. padding-top: 4px;
  1848. }
  1849. /*===== Attachments =====*/
  1850. .single-attachment .hentry {
  1851. margin: 0px;
  1852. }
  1853. .attachment .entry-content .entry-caption {
  1854. font-size: 140%;
  1855. margin-top: 24px;
  1856. }
  1857. .entry-caption-attachment {
  1858. margin: 0px auto 0;
  1859. text-align: center;
  1860. }
  1861. #content .entry-caption-attachment h2.entry-title {
  1862. margin: 0 0 5px;
  1863. font-weight: normal;
  1864. }
  1865. #content .entry-caption-parent p.page-title {
  1866. margin: -30px 0 0 0;
  1867. font: normal 13px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  1868. }
  1869. #content .entry-caption-parent p.page-title a {
  1870. color: #555;
  1871. }
  1872. #content .entry-caption-attachment p {
  1873. font-size: 14px;
  1874. text-indent: 0px;
  1875. line-height: 15px;
  1876. margin-bottom: 0px;
  1877. }
  1878. .entry-caption-attachment h2 {
  1879. font: bold 27px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  1880. }
  1881. .attachment .entry-content .nav-previous a:before {
  1882. content: '\2190\00a0';
  1883. }
  1884. .attachment .entry-content .nav-next a:after {
  1885. content: '\00a0\2192';
  1886. }
  1887. /*===== Images ======*/
  1888. img.avatar {
  1889. width: 50px;
  1890. height: 50px;
  1891. -webkit-border-radius: 30px;
  1892. -moz-border-radius: 30px;
  1893. border-radius: 30px;
  1894. }
  1895. img.me {
  1896. height: 80px;
  1897. margin: 0 10px;
  1898. float: left;
  1899. -webkit-border-radius: 50%;
  1900. -moz-border-radius: 50%;
  1901. border-radius: 50%;
  1902. -webkit-filter: grayscale(1);
  1903. filter:grayscale(1);
  1904. }
  1905. .entry-content img {
  1906. max-width: 100%;
  1907. height: auto;
  1908. }
  1909. .img-rounded {
  1910. border-radius: 6px;
  1911. }
  1912. .img-thumbnail {
  1913. padding: 4px;
  1914. line-height: 1.42857143;
  1915. background-color: #ffffff;
  1916. border: 1px solid #dddddd;
  1917. border-radius: 4px;
  1918. -webkit-transition: all 0.2s ease-in-out;
  1919. -o-transition: all 0.2s ease-in-out;
  1920. transition: all 0.2s ease-in-out;
  1921. display: inline-block;
  1922. width: 100% \9;
  1923. max-width: 100%;
  1924. height: auto;
  1925. }
  1926. .img-circle {
  1927. border-radius: 50%;
  1928. }
  1929. #content .home img {
  1930. border: 15px solid #000;
  1931. }
  1932. #content .attachment img {
  1933. max-width: 900px;
  1934. }
  1935. #content .alignleft,
  1936. #content img.alignleft {
  1937. display: inline;
  1938. float: left;
  1939. margin-right: 24px;
  1940. margin-top: 4px;
  1941. }
  1942. #content .alignright,
  1943. #content img.alignright {
  1944. display: inline;
  1945. float: right;
  1946. margin-left: 24px;
  1947. margin-top: 4px;
  1948. }
  1949. #content .aligncenter,
  1950. #content img.aligncenter {
  1951. clear: both;
  1952. display: block;
  1953. margin-left: auto;
  1954. margin-right: auto;
  1955. }
  1956. #content img.alignleft,
  1957. #content img.alignright,
  1958. #content img.aligncenter {
  1959. margin-bottom: 12px;
  1960. }
  1961. #content .wp-caption {
  1962. background: #f1f1f1;
  1963. line-height: 18px;
  1964. margin-bottom: 20px;
  1965. padding: 4px;
  1966. text-align: center;
  1967. }
  1968. #content .wp-caption img {
  1969. margin: 5px 5px 0;
  1970. }
  1971. #content .wp-caption p.wp-caption-text {
  1972. color: #888;
  1973. font-size: 12px;
  1974. margin: 5px;
  1975. }
  1976. #content .gallery {
  1977. margin: 0 auto 18px;
  1978. }
  1979. #content .gallery .gallery-item {
  1980. float: left;
  1981. margin-top: 0;
  1982. text-align: center;
  1983. width: 33%;
  1984. }
  1985. #content .gallery img {
  1986. border: 2px solid #cfcfcf;
  1987. }
  1988. #content .gallery .gallery-caption {
  1989. color: #888;
  1990. font-size: 12px;
  1991. margin: 0 0 12px;
  1992. }
  1993. #content .gallery dl {
  1994. margin: 0;
  1995. }
  1996. #content .gallery img {
  1997. border: 10px solid #f1f1f1;
  1998. }
  1999. #content .gallery br+br {
  2000. display: none;
  2001. }
  2002. #content .attachment img {
  2003. display: block;
  2004. margin: 0 auto;
  2005. }
  2006. /*============================================
  2007. Code - Sunburst Theme
  2008. ==============================================*/
  2009. pre {
  2010. background-color: #000 !important;
  2011. word-wrap: break-word;
  2012. margin: 0px;
  2013. padding: 10px;
  2014. color: #fff !important;
  2015. font-size: 14px;
  2016. margin-bottom: 20px;
  2017. }
  2018. pre, code {
  2019. font-family: 'Monaco', courier, monospace;
  2020. }
  2021. pre .comment {
  2022. color: #AEAEAE; font-style: italic;
  2023. }
  2024. pre .constant {
  2025. color: #3387CC;
  2026. }
  2027. pre .storage {
  2028. color: #99CF50;
  2029. }
  2030. pre .string, pre .entity.name.class, pre .comment.docstring {
  2031. color: #65B042;
  2032. }
  2033. pre .string.regexp {
  2034. color: #E9C062;
  2035. }
  2036. pre .string.constant {
  2037. color: #DDF2A4;
  2038. }
  2039. pre .constant.hex-color {
  2040. color: #DD7B3B;
  2041. }
  2042. pre .support, pre .tag.script, pre .function.call {
  2043. color: #dad085;
  2044. }
  2045. pre .support.css-property {
  2046. color: #C5AF75;
  2047. }
  2048. pre .support.tag.style {
  2049. color: #fff;
  2050. }
  2051. pre .keyword, pre .selector {
  2052. color: #E28964;
  2053. }
  2054. pre .keyword.namespace {
  2055. color: #3387CC;
  2056. font-weight: bold;
  2057. }
  2058. pre .inherited-class {
  2059. font-style: italic;
  2060. }
  2061. pre .entity, pre .variable.instance, pre .support.namespace, pre .support.tag, pre .support.tag-name {
  2062. color: #89BDFF;
  2063. }
  2064. pre .entity.name.id {
  2065. color: #8693A5;
  2066. }
  2067. *[data-language="c"] .function.call {
  2068. color: #8DA6CE;
  2069. }
  2070. pre .variable, pre .variable.global {
  2071. color: #3E87E3;
  2072. }
  2073. pre .variable.class {
  2074. }
  2075. /*============================================
  2076. Pagination
  2077. ==============================================*/
  2078. .navigation {
  2079. color: #888;
  2080. font-size: 12px;
  2081. line-height: 18px;
  2082. overflow: hidden;
  2083. clear: both;
  2084. }
  2085. .navigation a:link,
  2086. .navigation a:visited {
  2087. color: #888;
  2088. text-decoration: none;
  2089. }
  2090. .navigation a:active,
  2091. .navigation a:hover {
  2092. color: #ff4b33;
  2093. }
  2094. .nav-previous {
  2095. float: left;
  2096. width: 50%;
  2097. margin: 0 0 15px 0;
  2098. }
  2099. .nav-next {
  2100. float: right;
  2101. text-align: right;
  2102. width: 50%;
  2103. }
  2104. #nav-above {
  2105. margin: 0 0 18px 0;
  2106. }
  2107. #nav-above {
  2108. display: none;
  2109. }
  2110. .paged #nav-above,
  2111. .single #nav-above {
  2112. display: block;
  2113. }
  2114. #nav-below {
  2115. margin: 50px 0 0px;
  2116. padding: 20px 10px 0;
  2117. border-top: 1px solid #cecece;
  2118. }
  2119. .pagination {
  2120. margin-top: 40px;
  2121. border-top: 1px solid #cecece;
  2122. padding: 20px 0 0;
  2123. }
  2124. .pagination a {
  2125. padding: 4px 5px;
  2126. color: #fff;
  2127. font-weight: bold;
  2128. font-size: 16px;
  2129. }
  2130. .pagination a:active {
  2131. padding: 4px 5px;
  2132. background: #707071;
  2133. color:#fff;
  2134. }
  2135. .pagination a:hover {
  2136. padding: 4px 5px;
  2137. background: #fff;
  2138. color: #ec0000;
  2139. }
  2140. .pagination a.next,
  2141. .pagination a.prev {
  2142. padding: 4px 7px;
  2143. color: #ec0000;
  2144. font-weight: bold;
  2145. font-size: 27px;
  2146. }
  2147. .pagination .current {
  2148. padding: 4px 5px;
  2149. background: #fff;
  2150. color: #ec0000;
  2151. font-weight: bold;
  2152. font-size: 16px;
  2153. }
  2154. /*============================================
  2155. Footer
  2156. ==============================================*/
  2157. /*============================================
  2158. Forms
  2159. ==============================================*/
  2160. .text-field {
  2161. width: 50%;
  2162. float: left;
  2163. display: block;
  2164. -webkit-box-sizing: border-box;
  2165. -moz-box-sizing: border-box;
  2166. box-sizing: border-box;
  2167. position: relative;
  2168. }
  2169. .text-field > strong {
  2170. display: block;
  2171. font-weight: bold;
  2172. color: white;
  2173. font-size: 0.85em;
  2174. margin-top: -3px;
  2175. }
  2176. .text-field > strong > i {
  2177. font-weight: normal;
  2178. font-style: italic;
  2179. font-family: playfair display, serif;
  2180. font-size: 0.9em;
  2181. opacity: 0.8;
  2182. }
  2183. .text-field .req {
  2184. position: relative;
  2185. top: 4px;
  2186. left: 4px;
  2187. color: #1a8;
  2188. opacity: 0.5;
  2189. }
  2190. .text-field [type='email'],
  2191. .text-field [type='text'] {
  2192. -webkit-box-sizing: border-box;
  2193. -moz-box-sizing: border-box;
  2194. box-sizing: border-box;
  2195. -webkit-transition: all 200ms linear;
  2196. transition: all 200ms linear;
  2197. }
  2198. .text-field [type='email']::-webkit-input-placeholder,
  2199. .text-field [type='text']::-webkit-input-placeholder {
  2200. color: rgba(250, 250, 250, 0.2);
  2201. font-weight: normal;
  2202. }
  2203. .text-field [type='email']::-moz-placeholder,
  2204. .text-field [type='text']::-moz-placeholder {
  2205. color: rgba(250, 250, 250, 0.2);
  2206. font-weight: normal;
  2207. }
  2208. .text-field [type='email']:-ms-input-placeholder,
  2209. .text-field [type='text']:-ms-input-placeholder {
  2210. color: rgba(250, 250, 250, 0.2);
  2211. font-weight: normal;
  2212. }
  2213. .text-field [type='email']::placeholder,
  2214. .text-field [type='text']::placeholder {
  2215. color: rgba(250, 250, 250, 0.2);
  2216. font-weight: normal;
  2217. }
  2218. .text-field [type='email'],
  2219. .text-field [type='text'] {
  2220. background: transparent;
  2221. border: 0;
  2222. padding: 5px 0;
  2223. border-bottom: solid 1px rgba(250, 250, 250, 0.2);
  2224. margin: 5px 5px 5px 0;
  2225. color: #1d8;
  2226. font-weight: bold;
  2227. }
  2228. .text-field [type='email']:hover,
  2229. .text-field [type='text']:hover {
  2230. border-bottom-color: rgba(250, 250, 250, 0.5);
  2231. outline: 0;
  2232. }
  2233. .text-field [type='email']:focus,
  2234. .text-field [type='text']:focus {
  2235. color: #1d8;
  2236. border-bottom-color: #1d8;
  2237. outline: 0;
  2238. }
  2239. @media (min-width: 768px) {
  2240. .text-field [type='email'],
  2241. .text-field [type='text'] {
  2242. width: 92%;
  2243. }
  2244. }
  2245. form .actions button{
  2246. margin: 20px 0;
  2247. }
  2248. /*============================================
  2249. Music
  2250. ==============================================*/
  2251. .albums {
  2252. position: relative;
  2253. }
  2254. .albums:after {
  2255. content: "";
  2256. display: table;
  2257. clear: both;
  2258. }
  2259. .album {
  2260. float: left;
  2261. height: auto;
  2262. position: relative;
  2263. font-size: 12px;
  2264. -webkit-transition: -webkit-transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  2265. -moz-transition: -moz-transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  2266. -ms-transition: -ms-transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  2267. -o-transition: -o-transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  2268. transition: transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  2269. -webkit-perspective: 600px;
  2270. perspective: 600px;
  2271. }
  2272. .album img {
  2273. width: 100%;
  2274. height: auto;
  2275. }
  2276. .album h1, .album h2, .album h3 {
  2277. font-size: 13px;
  2278. line-height: 15px;
  2279. }
  2280. .album .front, .album .back {
  2281. float: none;
  2282. width: 100%;
  2283. height: auto;
  2284. -webkit-transform-style: preserve-3d;
  2285. transform-style: preserve-3d;
  2286. -webkit-transition: -webkit-transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  2287. -moz-transition: -moz-transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  2288. -ms-transition: -ms-transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  2289. -o-transition: -o-transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  2290. transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  2291. }
  2292. .album .front {
  2293. z-index: 1;
  2294. -webkit-transform: rotateY(0deg);
  2295. -moz-transform: rotateY(0deg);
  2296. -ms-transform: rotateY(0deg);
  2297. -o-transform: rotateY(0deg);
  2298. transform: rotateY(0deg);
  2299. }
  2300. .album .front .alpha {
  2301. -webkit-transition: opacity 0.4s ease-in-out;
  2302. -moz-transition: opacity 0.4s ease-in-out;
  2303. -ms-transition: opacity 0.4s ease-in-out;
  2304. -o-transition: opacity 0.4s ease-in-out;
  2305. transition: opacity 0.4s ease-in-out;
  2306. display: block;
  2307. content: '';
  2308. height: 100%;
  2309. width: 100%;
  2310. position: absolute;
  2311. top: 0;
  2312. left: 0;
  2313. background: rgba(255, 255, 255, 0.85);
  2314. opacity: 0;
  2315. }
  2316. .album .back {
  2317. position: absolute;
  2318. top: 0;
  2319. left: 0;
  2320. z-index: 0;
  2321. text-align: center;
  2322. font-family: sans-serif;
  2323. padding: 10px;
  2324. opacity: 0;
  2325. -webkit-box-sizing: border-box;
  2326. -moz-box-sizing: border-box;
  2327. box-sizing: border-box;
  2328. -webkit-backface-visibility: hidden;
  2329. backface-visibility: hidden;
  2330. -webkit-transform: rotateY(-180deg);
  2331. -moz-transform: rotateY(-180deg);
  2332. -ms-transform: rotateY(-180deg);
  2333. -o-transform: rotateY(-180deg);
  2334. transform: rotateY(-180deg);
  2335. }
  2336. .album.flip {
  2337. -webkit-transform: scale(1.1, 1.1);
  2338. -moz-transform: scale(1.1, 1.1);
  2339. -ms-transform: scale(1.1, 1.1);
  2340. -o-transform: scale(1.1, 1.1);
  2341. transform: scale(1.1, 1.1);
  2342. z-index: 10;
  2343. }
  2344. .album.flip .front {
  2345. -webkit-transform: rotateY(180deg);
  2346. -moz-transform: rotateY(180deg);
  2347. -ms-transform: rotateY(180deg);
  2348. -o-transform: rotateY(180deg);
  2349. transform: rotateY(180deg);
  2350. }
  2351. .album.flip .front .alpha {
  2352. opacity: 1;
  2353. }
  2354. .album.flip .back {
  2355. z-index: 2;
  2356. opacity: 1;
  2357. -webkit-transform: rotateY(0deg);
  2358. -moz-transform: rotateY(0deg);
  2359. -ms-transform: rotateY(0deg);
  2360. -o-transform: rotateY(0deg);
  2361. transform: rotateY(0deg);
  2362. }
  2363. .album {
  2364. width: 20%;
  2365. -webkit-text-size-adjust: none;
  2366. }
  2367. #music li.list-group-item {
  2368. padding: 5px 15px;
  2369. font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  2370. font-size: 12px;
  2371. }
  2372. #music.entry-content ul {
  2373. margin:0 0 24px;
  2374. }
  2375. @media screen and (max-width: 768px) {
  2376. .album h1, .album h2, .album h3 {
  2377. font-size: 13px;
  2378. line-height: 15px;
  2379. }
  2380. .album {
  2381. width: 25%;
  2382. }
  2383. }
  2384. @media screen and (min-width: 992px) {
  2385. .album h1, .album h2, .album h3 {
  2386. font-size: 15px;
  2387. line-height: 17px;
  2388. }
  2389. }
  2390. .doughnut-legend li span {
  2391. display: block;
  2392. width: 14px;
  2393. height: 14px;
  2394. border-radius: 7px;
  2395. float: left;
  2396. margin-top: 4px;
  2397. margin-right: 8px;
  2398. }
  2399. .doughnut-legend {
  2400. font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  2401. list-style: none;
  2402. margin: 0;
  2403. padding: 0;
  2404. font-size: 14px;
  2405. margin-top : 20px;
  2406. }
  2407. div#player{
  2408. width: 100%;
  2409. color: #555555;
  2410. font-family: 'PT Sans', sans-serif;
  2411. font-weight: 700;
  2412. font-size: 12px;
  2413. }
  2414. #song-information{
  2415. text-align: left;
  2416. margin: 0 0 10px;
  2417. }
  2418. #controls{
  2419. float: left;
  2420. }
  2421. #amplitude-volume-slider{
  2422. width: 90%;
  2423. float: right;
  2424. }
  2425. #amplitude-play-pause{
  2426. width: 15px;
  2427. height: 17px;
  2428. margin: 0 5px 0 0;
  2429. cursor: pointer;
  2430. float: right;
  2431. }
  2432. #amplitude-current-time{
  2433. font-family: 'PT Sans', sans-serif;
  2434. font-size: 14px;
  2435. font-weight: 400;
  2436. }
  2437. .amplitude-paused{
  2438. background-image: url('img/small-gray-play.png');
  2439. background-repeat: no-repeat;
  2440. }
  2441. .amplitude-playing{
  2442. background-image: url('img/small-gray-pause.png');
  2443. background-repeat: no-repeat;
  2444. }
  2445. #amplitude-now-playing-name{
  2446. }
  2447. #amplitude-now-playing-listeners{
  2448. }
  2449. #amplitude-now-playing-bitrate{
  2450. }
  2451. /*============================================
  2452. Font Awesome
  2453. ==============================================*/
  2454. @font-face {
  2455. font-family: 'FontAwesome';
  2456. src: url('fonts/fontawesome-webfont.eot?v=4.2.0');
  2457. src: url('fonts/fontawesome-webfont.eot?#iefix&v=4.2.0') format('embedded-opentype'),
  2458. url('fonts/fontawesome-webfont.woff?v=4.2.0') format('woff'),
  2459. url('fonts/fontawesome-webfont.ttf?v=4.2.0') format('truetype'),
  2460. url('fonts/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular') format('svg');
  2461. font-weight: normal;
  2462. font-style: normal;
  2463. }
  2464. .fa {
  2465. display: inline-block;
  2466. font: normal normal normal 14px/1 FontAwesome;
  2467. font-size: inherit;
  2468. text-rendering: auto;
  2469. -webkit-font-smoothing: antialiased;
  2470. -moz-osx-font-smoothing: grayscale;
  2471. }
  2472. /* makes the font 33% larger relative to the icon container */
  2473. .fa-lg {
  2474. font-size: 1.33333333em;
  2475. line-height: 0.75em;
  2476. vertical-align: -15%;
  2477. }
  2478. .fa-2x {
  2479. font-size: 2em;
  2480. }
  2481. .fa-3x {
  2482. font-size: 3em;
  2483. }
  2484. .fa-4x {
  2485. font-size: 4em;
  2486. }
  2487. .fa-5x {
  2488. font-size: 5em;
  2489. }
  2490. .fa-fw {
  2491. width: 1.28571429em;
  2492. text-align: center;
  2493. }
  2494. .fa-ul {
  2495. padding-left: 0;
  2496. margin-left: 2.14285714em;
  2497. list-style-type: none;
  2498. }
  2499. .fa-ul > li {
  2500. position: relative;
  2501. }
  2502. .fa-li {
  2503. position: absolute;
  2504. left: -2.14285714em;
  2505. width: 2.14285714em;
  2506. top: 0.14285714em;
  2507. text-align: center;
  2508. }
  2509. .fa-li.fa-lg {
  2510. left: -1.85714286em;
  2511. }
  2512. .fa-border {
  2513. padding: .2em .25em .15em;
  2514. border: solid 0.08em #eeeeee;
  2515. border-radius: .1em;
  2516. }
  2517. .pull-right {
  2518. float: right;
  2519. }
  2520. .pull-left {
  2521. float: left;
  2522. }
  2523. .fa.pull-left {
  2524. margin-right: .3em;
  2525. }
  2526. .fa.pull-right {
  2527. margin-left: .3em;
  2528. }
  2529. .fa-spin {
  2530. -webkit-animation: fa-spin 2s infinite linear;
  2531. animation: fa-spin 2s infinite linear;
  2532. }
  2533. @-webkit-keyframes fa-spin {
  2534. 0% {
  2535. -webkit-transform: rotate(0deg);
  2536. transform: rotate(0deg);
  2537. }
  2538. 100% {
  2539. -webkit-transform: rotate(359deg);
  2540. transform: rotate(359deg);
  2541. }
  2542. }
  2543. @keyframes fa-spin {
  2544. 0% {
  2545. -webkit-transform: rotate(0deg);
  2546. transform: rotate(0deg);
  2547. }
  2548. 100% {
  2549. -webkit-transform: rotate(359deg);
  2550. transform: rotate(359deg);
  2551. }
  2552. }
  2553. .fa-rotate-90 {
  2554. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  2555. -webkit-transform: rotate(90deg);
  2556. -ms-transform: rotate(90deg);
  2557. transform: rotate(90deg);
  2558. }
  2559. .fa-rotate-180 {
  2560. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  2561. -webkit-transform: rotate(180deg);
  2562. -ms-transform: rotate(180deg);
  2563. transform: rotate(180deg);
  2564. }
  2565. .fa-rotate-270 {
  2566. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  2567. -webkit-transform: rotate(270deg);
  2568. -ms-transform: rotate(270deg);
  2569. transform: rotate(270deg);
  2570. }
  2571. .fa-flip-horizontal {
  2572. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  2573. -webkit-transform: scale(-1, 1);
  2574. -ms-transform: scale(-1, 1);
  2575. transform: scale(-1, 1);
  2576. }
  2577. .fa-flip-vertical {
  2578. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  2579. -webkit-transform: scale(1, -1);
  2580. -ms-transform: scale(1, -1);
  2581. transform: scale(1, -1);
  2582. }
  2583. :root .fa-rotate-90,
  2584. :root .fa-rotate-180,
  2585. :root .fa-rotate-270,
  2586. :root .fa-flip-horizontal,
  2587. :root .fa-flip-vertical {
  2588. filter: none;
  2589. }
  2590. .fa-stack {
  2591. position: relative;
  2592. display: inline-block;
  2593. width: 2em;
  2594. height: 2em;
  2595. line-height: 2em;
  2596. vertical-align: middle;
  2597. }
  2598. .fa-stack-1x,
  2599. .fa-stack-2x {
  2600. position: absolute;
  2601. left: 0;
  2602. width: 100%;
  2603. text-align: center;
  2604. }
  2605. .fa-stack-1x {
  2606. line-height: inherit;
  2607. }
  2608. .fa-stack-2x {
  2609. font-size: 2em;
  2610. }
  2611. .fa-inverse {
  2612. color: #ffffff;
  2613. }
  2614. /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
  2615. readers do not read off random characters that represent icons */
  2616. .fa-glass:before {
  2617. content: "\f000";
  2618. }
  2619. .fa-music:before {
  2620. content: "\f001";
  2621. }
  2622. .fa-search:before {
  2623. content: "\f002";
  2624. }
  2625. .fa-envelope-o:before {
  2626. content: "\f003";
  2627. }
  2628. .fa-heart:before {
  2629. content: "\f004";
  2630. }
  2631. .fa-star:before {
  2632. content: "\f005";
  2633. }
  2634. .fa-star-o:before {
  2635. content: "\f006";
  2636. }
  2637. .fa-user:before {
  2638. content: "\f007";
  2639. }
  2640. .fa-film:before {
  2641. content: "\f008";
  2642. }
  2643. .fa-th-large:before {
  2644. content: "\f009";
  2645. }
  2646. .fa-th:before {
  2647. content: "\f00a";
  2648. }
  2649. .fa-th-list:before {
  2650. content: "\f00b";
  2651. }
  2652. .fa-check:before {
  2653. content: "\f00c";
  2654. }
  2655. .fa-remove:before,
  2656. .fa-close:before,
  2657. .fa-times:before {
  2658. content: "\f00d";
  2659. }
  2660. .fa-search-plus:before {
  2661. content: "\f00e";
  2662. }
  2663. .fa-search-minus:before {
  2664. content: "\f010";
  2665. }
  2666. .fa-power-off:before {
  2667. content: "\f011";
  2668. }
  2669. .fa-signal:before {
  2670. content: "\f012";
  2671. }
  2672. .fa-gear:before,
  2673. .fa-cog:before {
  2674. content: "\f013";
  2675. }
  2676. .fa-trash-o:before {
  2677. content: "\f014";
  2678. }
  2679. .fa-home:before {
  2680. content: "\f015";
  2681. }
  2682. .fa-file-o:before {
  2683. content: "\f016";
  2684. }
  2685. .fa-clock-o:before {
  2686. content: "\f017";
  2687. }
  2688. .fa-road:before {
  2689. content: "\f018";
  2690. }
  2691. .fa-download:before {
  2692. content: "\f019";
  2693. }
  2694. .fa-arrow-circle-o-down:before {
  2695. content: "\f01a";
  2696. }
  2697. .fa-arrow-circle-o-up:before {
  2698. content: "\f01b";
  2699. }
  2700. .fa-inbox:before {
  2701. content: "\f01c";
  2702. }
  2703. .fa-play-circle-o:before {
  2704. content: "\f01d";
  2705. }
  2706. .fa-rotate-right:before,
  2707. .fa-repeat:before {
  2708. content: "\f01e";
  2709. }
  2710. .fa-refresh:before {
  2711. content: "\f021";
  2712. }
  2713. .fa-list-alt:before {
  2714. content: "\f022";
  2715. }
  2716. .fa-lock:before {
  2717. content: "\f023";
  2718. }
  2719. .fa-flag:before {
  2720. content: "\f024";
  2721. }
  2722. .fa-headphones:before {
  2723. content: "\f025";
  2724. }
  2725. .fa-volume-off:before {
  2726. content: "\f026";
  2727. }
  2728. .fa-volume-down:before {
  2729. content: "\f027";
  2730. }
  2731. .fa-volume-up:before {
  2732. content: "\f028";
  2733. }
  2734. .fa-qrcode:before {
  2735. content: "\f029";
  2736. }
  2737. .fa-barcode:before {
  2738. content: "\f02a";
  2739. }
  2740. .fa-tag:before {
  2741. content: "\f02b";
  2742. }
  2743. .fa-tags:before {
  2744. content: "\f02c";
  2745. }
  2746. .fa-book:before {
  2747. content: "\f02d";
  2748. }
  2749. .fa-bookmark:before {
  2750. content: "\f02e";
  2751. }
  2752. .fa-print:before {
  2753. content: "\f02f";
  2754. }
  2755. .fa-camera:before {
  2756. content: "\f030";
  2757. }
  2758. .fa-font:before {
  2759. content: "\f031";
  2760. }
  2761. .fa-bold:before {
  2762. content: "\f032";
  2763. }
  2764. .fa-italic:before {
  2765. content: "\f033";
  2766. }
  2767. .fa-text-height:before {
  2768. content: "\f034";
  2769. }
  2770. .fa-text-width:before {
  2771. content: "\f035";
  2772. }
  2773. .fa-align-left:before {
  2774. content: "\f036";
  2775. }
  2776. .fa-align-center:before {
  2777. content: "\f037";
  2778. }
  2779. .fa-align-right:before {
  2780. content: "\f038";
  2781. }
  2782. .fa-align-justify:before {
  2783. content: "\f039";
  2784. }
  2785. .fa-list:before {
  2786. content: "\f03a";
  2787. }
  2788. .fa-dedent:before,
  2789. .fa-outdent:before {
  2790. content: "\f03b";
  2791. }
  2792. .fa-indent:before {
  2793. content: "\f03c";
  2794. }
  2795. .fa-video-camera:before {
  2796. content: "\f03d";
  2797. }
  2798. .fa-photo:before,
  2799. .fa-image:before,
  2800. .fa-picture-o:before {
  2801. content: "\f03e";
  2802. }
  2803. .fa-pencil:before {
  2804. content: "\f040";
  2805. }
  2806. .fa-map-marker:before {
  2807. content: "\f041";
  2808. }
  2809. .fa-adjust:before {
  2810. content: "\f042";
  2811. }
  2812. .fa-tint:before {
  2813. content: "\f043";
  2814. }
  2815. .fa-edit:before,
  2816. .fa-pencil-square-o:before {
  2817. content: "\f044";
  2818. }
  2819. .fa-share-square-o:before {
  2820. content: "\f045";
  2821. }
  2822. .fa-check-square-o:before {
  2823. content: "\f046";
  2824. }
  2825. .fa-arrows:before {
  2826. content: "\f047";
  2827. }
  2828. .fa-step-backward:before {
  2829. content: "\f048";
  2830. }
  2831. .fa-fast-backward:before {
  2832. content: "\f049";
  2833. }
  2834. .fa-backward:before {
  2835. content: "\f04a";
  2836. }
  2837. .fa-play:before {
  2838. content: "\f04b";
  2839. }
  2840. .fa-pause:before {
  2841. content: "\f04c";
  2842. }
  2843. .fa-stop:before {
  2844. content: "\f04d";
  2845. }
  2846. .fa-forward:before {
  2847. content: "\f04e";
  2848. }
  2849. .fa-fast-forward:before {
  2850. content: "\f050";
  2851. }
  2852. .fa-step-forward:before {
  2853. content: "\f051";
  2854. }
  2855. .fa-eject:before {
  2856. content: "\f052";
  2857. }
  2858. .fa-chevron-left:before {
  2859. content: "\f053";
  2860. }
  2861. .fa-chevron-right:before {
  2862. content: "\f054";
  2863. }
  2864. .fa-plus-circle:before {
  2865. content: "\f055";
  2866. }
  2867. .fa-minus-circle:before {
  2868. content: "\f056";
  2869. }
  2870. .fa-times-circle:before {
  2871. content: "\f057";
  2872. }
  2873. .fa-check-circle:before {
  2874. content: "\f058";
  2875. }
  2876. .fa-question-circle:before {
  2877. content: "\f059";
  2878. }
  2879. .fa-info-circle:before {
  2880. content: "\f05a";
  2881. }
  2882. .fa-crosshairs:before {
  2883. content: "\f05b";
  2884. }
  2885. .fa-times-circle-o:before {
  2886. content: "\f05c";
  2887. }
  2888. .fa-check-circle-o:before {
  2889. content: "\f05d";
  2890. }
  2891. .fa-ban:before {
  2892. content: "\f05e";
  2893. }
  2894. .fa-arrow-left:before {
  2895. content: "\f060";
  2896. }
  2897. .fa-arrow-right:before {
  2898. content: "\f061";
  2899. }
  2900. .fa-arrow-up:before {
  2901. content: "\f062";
  2902. }
  2903. .fa-arrow-down:before {
  2904. content: "\f063";
  2905. }
  2906. .fa-mail-forward:before,
  2907. .fa-share:before {
  2908. content: "\f064";
  2909. }
  2910. .fa-expand:before {
  2911. content: "\f065";
  2912. }
  2913. .fa-compress:before {
  2914. content: "\f066";
  2915. }
  2916. .fa-plus:before {
  2917. content: "\f067";
  2918. }
  2919. .fa-minus:before {
  2920. content: "\f068";
  2921. }
  2922. .fa-asterisk:before {
  2923. content: "\f069";
  2924. }
  2925. .fa-exclamation-circle:before {
  2926. content: "\f06a";
  2927. }
  2928. .fa-gift:before {
  2929. content: "\f06b";
  2930. }
  2931. .fa-leaf:before {
  2932. content: "\f06c";
  2933. }
  2934. .fa-fire:before {
  2935. content: "\f06d";
  2936. }
  2937. .fa-eye:before {
  2938. content: "\f06e";
  2939. }
  2940. .fa-eye-slash:before {
  2941. content: "\f070";
  2942. }
  2943. .fa-warning:before,
  2944. .fa-exclamation-triangle:before {
  2945. content: "\f071";
  2946. }
  2947. .fa-plane:before {
  2948. content: "\f072";
  2949. }
  2950. .fa-calendar:before {
  2951. content: "\f073";
  2952. }
  2953. .fa-random:before {
  2954. content: "\f074";
  2955. }
  2956. .fa-comment:before {
  2957. content: "\f075";
  2958. }
  2959. .fa-magnet:before {
  2960. content: "\f076";
  2961. }
  2962. .fa-chevron-up:before {
  2963. content: "\f077";
  2964. }
  2965. .fa-chevron-down:before {
  2966. content: "\f078";
  2967. }
  2968. .fa-retweet:before {
  2969. content: "\f079";
  2970. }
  2971. .fa-shopping-cart:before {
  2972. content: "\f07a";
  2973. }
  2974. .fa-folder:before {
  2975. content: "\f07b";
  2976. }
  2977. .fa-folder-open:before {
  2978. content: "\f07c";
  2979. }
  2980. .fa-arrows-v:before {
  2981. content: "\f07d";
  2982. }
  2983. .fa-arrows-h:before {
  2984. content: "\f07e";
  2985. }
  2986. .fa-bar-chart-o:before,
  2987. .fa-bar-chart:before {
  2988. content: "\f080";
  2989. }
  2990. .fa-twitter-square:before {
  2991. content: "\f081";
  2992. }
  2993. .fa-facebook-square:before {
  2994. content: "\f082";
  2995. }
  2996. .fa-camera-retro:before {
  2997. content: "\f083";
  2998. }
  2999. .fa-key:before {
  3000. content: "\f084";
  3001. }
  3002. .fa-gears:before,
  3003. .fa-cogs:before {
  3004. content: "\f085";
  3005. }
  3006. .fa-comments:before {
  3007. content: "\f086";
  3008. }
  3009. .fa-thumbs-o-up:before {
  3010. content: "\f087";
  3011. }
  3012. .fa-thumbs-o-down:before {
  3013. content: "\f088";
  3014. }
  3015. .fa-star-half:before {
  3016. content: "\f089";
  3017. }
  3018. .fa-heart-o:before {
  3019. content: "\f08a";
  3020. }
  3021. .fa-sign-out:before {
  3022. content: "\f08b";
  3023. }
  3024. .fa-linkedin-square:before {
  3025. content: "\f08c";
  3026. }
  3027. .fa-thumb-tack:before {
  3028. content: "\f08d";
  3029. }
  3030. .fa-external-link:before {
  3031. content: "\f08e";
  3032. }
  3033. .fa-sign-in:before {
  3034. content: "\f090";
  3035. }
  3036. .fa-trophy:before {
  3037. content: "\f091";
  3038. }
  3039. .fa-github-square:before {
  3040. content: "\f092";
  3041. }
  3042. .fa-upload:before {
  3043. content: "\f093";
  3044. }
  3045. .fa-lemon-o:before {
  3046. content: "\f094";
  3047. }
  3048. .fa-phone:before {
  3049. content: "\f095";
  3050. }
  3051. .fa-square-o:before {
  3052. content: "\f096";
  3053. }
  3054. .fa-bookmark-o:before {
  3055. content: "\f097";
  3056. }
  3057. .fa-phone-square:before {
  3058. content: "\f098";
  3059. }
  3060. .fa-twitter:before {
  3061. content: "\f099";
  3062. }
  3063. .fa-facebook:before {
  3064. content: "\f09a";
  3065. }
  3066. .fa-github:before {
  3067. content: "\f09b";
  3068. }
  3069. .fa-unlock:before {
  3070. content: "\f09c";
  3071. }
  3072. .fa-credit-card:before {
  3073. content: "\f09d";
  3074. }
  3075. .fa-rss:before {
  3076. content: "\f09e";
  3077. }
  3078. .fa-hdd-o:before {
  3079. content: "\f0a0";
  3080. }
  3081. .fa-bullhorn:before {
  3082. content: "\f0a1";
  3083. }
  3084. .fa-bell:before {
  3085. content: "\f0f3";
  3086. }
  3087. .fa-certificate:before {
  3088. content: "\f0a3";
  3089. }
  3090. .fa-hand-o-right:before {
  3091. content: "\f0a4";
  3092. }
  3093. .fa-hand-o-left:before {
  3094. content: "\f0a5";
  3095. }
  3096. .fa-hand-o-up:before {
  3097. content: "\f0a6";
  3098. }
  3099. .fa-hand-o-down:before {
  3100. content: "\f0a7";
  3101. }
  3102. .fa-arrow-circle-left:before {
  3103. content: "\f0a8";
  3104. }
  3105. .fa-arrow-circle-right:before {
  3106. content: "\f0a9";
  3107. }
  3108. .fa-arrow-circle-up:before {
  3109. content: "\f0aa";
  3110. }
  3111. .fa-arrow-circle-down:before {
  3112. content: "\f0ab";
  3113. }
  3114. .fa-globe:before {
  3115. content: "\f0ac";
  3116. }
  3117. .fa-wrench:before {
  3118. content: "\f0ad";
  3119. }
  3120. .fa-tasks:before {
  3121. content: "\f0ae";
  3122. }
  3123. .fa-filter:before {
  3124. content: "\f0b0";
  3125. }
  3126. .fa-briefcase:before {
  3127. content: "\f0b1";
  3128. }
  3129. .fa-arrows-alt:before {
  3130. content: "\f0b2";
  3131. }
  3132. .fa-group:before,
  3133. .fa-users:before {
  3134. content: "\f0c0";
  3135. }
  3136. .fa-chain:before,
  3137. .fa-link:before {
  3138. content: "\f0c1";
  3139. }
  3140. .fa-cloud:before {
  3141. content: "\f0c2";
  3142. }
  3143. .fa-flask:before {
  3144. content: "\f0c3";
  3145. }
  3146. .fa-cut:before,
  3147. .fa-scissors:before {
  3148. content: "\f0c4";
  3149. }
  3150. .fa-copy:before,
  3151. .fa-files-o:before {
  3152. content: "\f0c5";
  3153. }
  3154. .fa-paperclip:before {
  3155. content: "\f0c6";
  3156. }
  3157. .fa-save:before,
  3158. .fa-floppy-o:before {
  3159. content: "\f0c7";
  3160. }
  3161. .fa-square:before {
  3162. content: "\f0c8";
  3163. }
  3164. .fa-navicon:before,
  3165. .fa-reorder:before,
  3166. .fa-bars:before {
  3167. content: "\f0c9";
  3168. }
  3169. .fa-list-ul:before {
  3170. content: "\f0ca";
  3171. }
  3172. .fa-list-ol:before {
  3173. content: "\f0cb";
  3174. }
  3175. .fa-strikethrough:before {
  3176. content: "\f0cc";
  3177. }
  3178. .fa-underline:before {
  3179. content: "\f0cd";
  3180. }
  3181. .fa-table:before {
  3182. content: "\f0ce";
  3183. }
  3184. .fa-magic:before {
  3185. content: "\f0d0";
  3186. }
  3187. .fa-truck:before {
  3188. content: "\f0d1";
  3189. }
  3190. .fa-pinterest:before {
  3191. content: "\f0d2";
  3192. }
  3193. .fa-pinterest-square:before {
  3194. content: "\f0d3";
  3195. }
  3196. .fa-google-plus-square:before {
  3197. content: "\f0d4";
  3198. }
  3199. .fa-google-plus:before {
  3200. content: "\f0d5";
  3201. }
  3202. .fa-money:before {
  3203. content: "\f0d6";
  3204. }
  3205. .fa-caret-down:before {
  3206. content: "\f0d7";
  3207. }
  3208. .fa-caret-up:before {
  3209. content: "\f0d8";
  3210. }
  3211. .fa-caret-left:before {
  3212. content: "\f0d9";
  3213. }
  3214. .fa-caret-right:before {
  3215. content: "\f0da";
  3216. }
  3217. .fa-columns:before {
  3218. content: "\f0db";
  3219. }
  3220. .fa-unsorted:before,
  3221. .fa-sort:before {
  3222. content: "\f0dc";
  3223. }
  3224. .fa-sort-down:before,
  3225. .fa-sort-desc:before {
  3226. content: "\f0dd";
  3227. }
  3228. .fa-sort-up:before,
  3229. .fa-sort-asc:before {
  3230. content: "\f0de";
  3231. }
  3232. .fa-envelope:before {
  3233. content: "\f0e0";
  3234. }
  3235. .fa-linkedin:before {
  3236. content: "\f0e1";
  3237. }
  3238. .fa-rotate-left:before,
  3239. .fa-undo:before {
  3240. content: "\f0e2";
  3241. }
  3242. .fa-legal:before,
  3243. .fa-gavel:before {
  3244. content: "\f0e3";
  3245. }
  3246. .fa-dashboard:before,
  3247. .fa-tachometer:before {
  3248. content: "\f0e4";
  3249. }
  3250. .fa-comment-o:before {
  3251. content: "\f0e5";
  3252. }
  3253. .fa-comments-o:before {
  3254. content: "\f0e6";
  3255. }
  3256. .fa-flash:before,
  3257. .fa-bolt:before {
  3258. content: "\f0e7";
  3259. }
  3260. .fa-sitemap:before {
  3261. content: "\f0e8";
  3262. }
  3263. .fa-umbrella:before {
  3264. content: "\f0e9";
  3265. }
  3266. .fa-paste:before,
  3267. .fa-clipboard:before {
  3268. content: "\f0ea";
  3269. }
  3270. .fa-lightbulb-o:before {
  3271. content: "\f0eb";
  3272. }
  3273. .fa-exchange:before {
  3274. content: "\f0ec";
  3275. }
  3276. .fa-cloud-download:before {
  3277. content: "\f0ed";
  3278. }
  3279. .fa-cloud-upload:before {
  3280. content: "\f0ee";
  3281. }
  3282. .fa-user-md:before {
  3283. content: "\f0f0";
  3284. }
  3285. .fa-stethoscope:before {
  3286. content: "\f0f1";
  3287. }
  3288. .fa-suitcase:before {
  3289. content: "\f0f2";
  3290. }
  3291. .fa-bell-o:before {
  3292. content: "\f0a2";
  3293. }
  3294. .fa-coffee:before {
  3295. content: "\f0f4";
  3296. }
  3297. .fa-cutlery:before {
  3298. content: "\f0f5";
  3299. }
  3300. .fa-file-text-o:before {
  3301. content: "\f0f6";
  3302. }
  3303. .fa-building-o:before {
  3304. content: "\f0f7";
  3305. }
  3306. .fa-hospital-o:before {
  3307. content: "\f0f8";
  3308. }
  3309. .fa-ambulance:before {
  3310. content: "\f0f9";
  3311. }
  3312. .fa-medkit:before {
  3313. content: "\f0fa";
  3314. }
  3315. .fa-fighter-jet:before {
  3316. content: "\f0fb";
  3317. }
  3318. .fa-beer:before {
  3319. content: "\f0fc";
  3320. }
  3321. .fa-h-square:before {
  3322. content: "\f0fd";
  3323. }
  3324. .fa-plus-square:before {
  3325. content: "\f0fe";
  3326. }
  3327. .fa-angle-double-left:before {
  3328. content: "\f100";
  3329. }
  3330. .fa-angle-double-right:before {
  3331. content: "\f101";
  3332. }
  3333. .fa-angle-double-up:before {
  3334. content: "\f102";
  3335. }
  3336. .fa-angle-double-down:before {
  3337. content: "\f103";
  3338. }
  3339. .fa-angle-left:before {
  3340. content: "\f104";
  3341. }
  3342. .fa-angle-right:before {
  3343. content: "\f105";
  3344. }
  3345. .fa-angle-up:before {
  3346. content: "\f106";
  3347. }
  3348. .fa-angle-down:before {
  3349. content: "\f107";
  3350. }
  3351. .fa-desktop:before {
  3352. content: "\f108";
  3353. }
  3354. .fa-laptop:before {
  3355. content: "\f109";
  3356. }
  3357. .fa-tablet:before {
  3358. content: "\f10a";
  3359. }
  3360. .fa-mobile-phone:before,
  3361. .fa-mobile:before {
  3362. content: "\f10b";
  3363. }
  3364. .fa-circle-o:before {
  3365. content: "\f10c";
  3366. }
  3367. .fa-quote-left:before {
  3368. content: "\f10d";
  3369. }
  3370. .fa-quote-right:before {
  3371. content: "\f10e";
  3372. }
  3373. .fa-spinner:before {
  3374. content: "\f110";
  3375. }
  3376. .fa-circle:before {
  3377. content: "\f111";
  3378. }
  3379. .fa-mail-reply:before,
  3380. .fa-reply:before {
  3381. content: "\f112";
  3382. }
  3383. .fa-github-alt:before {
  3384. content: "\f113";
  3385. }
  3386. .fa-folder-o:before {
  3387. content: "\f114";
  3388. }
  3389. .fa-folder-open-o:before {
  3390. content: "\f115";
  3391. }
  3392. .fa-smile-o:before {
  3393. content: "\f118";
  3394. }
  3395. .fa-frown-o:before {
  3396. content: "\f119";
  3397. }
  3398. .fa-meh-o:before {
  3399. content: "\f11a";
  3400. }
  3401. .fa-gamepad:before {
  3402. content: "\f11b";
  3403. }
  3404. .fa-keyboard-o:before {
  3405. content: "\f11c";
  3406. }
  3407. .fa-flag-o:before {
  3408. content: "\f11d";
  3409. }
  3410. .fa-flag-checkered:before {
  3411. content: "\f11e";
  3412. }
  3413. .fa-terminal:before {
  3414. content: "\f120";
  3415. }
  3416. .fa-code:before {
  3417. content: "\f121";
  3418. }
  3419. .fa-mail-reply-all:before,
  3420. .fa-reply-all:before {
  3421. content: "\f122";
  3422. }
  3423. .fa-star-half-empty:before,
  3424. .fa-star-half-full:before,
  3425. .fa-star-half-o:before {
  3426. content: "\f123";
  3427. }
  3428. .fa-location-arrow:before {
  3429. content: "\f124";
  3430. }
  3431. .fa-crop:before {
  3432. content: "\f125";
  3433. }
  3434. .fa-code-fork:before {
  3435. content: "\f126";
  3436. }
  3437. .fa-unlink:before,
  3438. .fa-chain-broken:before {
  3439. content: "\f127";
  3440. }
  3441. .fa-question:before {
  3442. content: "\f128";
  3443. }
  3444. .fa-info:before {
  3445. content: "\f129";
  3446. }
  3447. .fa-exclamation:before {
  3448. content: "\f12a";
  3449. }
  3450. .fa-superscript:before {
  3451. content: "\f12b";
  3452. }
  3453. .fa-subscript:before {
  3454. content: "\f12c";
  3455. }
  3456. .fa-eraser:before {
  3457. content: "\f12d";
  3458. }
  3459. .fa-puzzle-piece:before {
  3460. content: "\f12e";
  3461. }
  3462. .fa-microphone:before {
  3463. content: "\f130";
  3464. }
  3465. .fa-microphone-slash:before {
  3466. content: "\f131";
  3467. }
  3468. .fa-shield:before {
  3469. content: "\f132";
  3470. }
  3471. .fa-calendar-o:before {
  3472. content: "\f133";
  3473. }
  3474. .fa-fire-extinguisher:before {
  3475. content: "\f134";
  3476. }
  3477. .fa-rocket:before {
  3478. content: "\f135";
  3479. }
  3480. .fa-maxcdn:before {
  3481. content: "\f136";
  3482. }
  3483. .fa-chevron-circle-left:before {
  3484. content: "\f137";
  3485. }
  3486. .fa-chevron-circle-right:before {
  3487. content: "\f138";
  3488. }
  3489. .fa-chevron-circle-up:before {
  3490. content: "\f139";
  3491. }
  3492. .fa-chevron-circle-down:before {
  3493. content: "\f13a";
  3494. }
  3495. .fa-html5:before {
  3496. content: "\f13b";
  3497. }
  3498. .fa-css3:before {
  3499. content: "\f13c";
  3500. }
  3501. .fa-anchor:before {
  3502. content: "\f13d";
  3503. }
  3504. .fa-unlock-alt:before {
  3505. content: "\f13e";
  3506. }
  3507. .fa-bullseye:before {
  3508. content: "\f140";
  3509. }
  3510. .fa-ellipsis-h:before {
  3511. content: "\f141";
  3512. }
  3513. .fa-ellipsis-v:before {
  3514. content: "\f142";
  3515. }
  3516. .fa-rss-square:before {
  3517. content: "\f143";
  3518. }
  3519. .fa-play-circle:before {
  3520. content: "\f144";
  3521. }
  3522. .fa-ticket:before {
  3523. content: "\f145";
  3524. }
  3525. .fa-minus-square:before {
  3526. content: "\f146";
  3527. }
  3528. .fa-minus-square-o:before {
  3529. content: "\f147";
  3530. }
  3531. .fa-level-up:before {
  3532. content: "\f148";
  3533. }
  3534. .fa-level-down:before {
  3535. content: "\f149";
  3536. }
  3537. .fa-check-square:before {
  3538. content: "\f14a";
  3539. }
  3540. .fa-pencil-square:before {
  3541. content: "\f14b";
  3542. }
  3543. .fa-external-link-square:before {
  3544. content: "\f14c";
  3545. }
  3546. .fa-share-square:before {
  3547. content: "\f14d";
  3548. }
  3549. .fa-compass:before {
  3550. content: "\f14e";
  3551. }
  3552. .fa-toggle-down:before,
  3553. .fa-caret-square-o-down:before {
  3554. content: "\f150";
  3555. }
  3556. .fa-toggle-up:before,
  3557. .fa-caret-square-o-up:before {
  3558. content: "\f151";
  3559. }
  3560. .fa-toggle-right:before,
  3561. .fa-caret-square-o-right:before {
  3562. content: "\f152";
  3563. }
  3564. .fa-euro:before,
  3565. .fa-eur:before {
  3566. content: "\f153";
  3567. }
  3568. .fa-gbp:before {
  3569. content: "\f154";
  3570. }
  3571. .fa-dollar:before,
  3572. .fa-usd:before {
  3573. content: "\f155";
  3574. }
  3575. .fa-rupee:before,
  3576. .fa-inr:before {
  3577. content: "\f156";
  3578. }
  3579. .fa-cny:before,
  3580. .fa-rmb:before,
  3581. .fa-yen:before,
  3582. .fa-jpy:before {
  3583. content: "\f157";
  3584. }
  3585. .fa-ruble:before,
  3586. .fa-rouble:before,
  3587. .fa-rub:before {
  3588. content: "\f158";
  3589. }
  3590. .fa-won:before,
  3591. .fa-krw:before {
  3592. content: "\f159";
  3593. }
  3594. .fa-bitcoin:before,
  3595. .fa-btc:before {
  3596. content: "\f15a";
  3597. }
  3598. .fa-file:before {
  3599. content: "\f15b";
  3600. }
  3601. .fa-file-text:before {
  3602. content: "\f15c";
  3603. }
  3604. .fa-sort-alpha-asc:before {
  3605. content: "\f15d";
  3606. }
  3607. .fa-sort-alpha-desc:before {
  3608. content: "\f15e";
  3609. }
  3610. .fa-sort-amount-asc:before {
  3611. content: "\f160";
  3612. }
  3613. .fa-sort-amount-desc:before {
  3614. content: "\f161";
  3615. }
  3616. .fa-sort-numeric-asc:before {
  3617. content: "\f162";
  3618. }
  3619. .fa-sort-numeric-desc:before {
  3620. content: "\f163";
  3621. }
  3622. .fa-thumbs-up:before {
  3623. content: "\f164";
  3624. }
  3625. .fa-thumbs-down:before {
  3626. content: "\f165";
  3627. }
  3628. .fa-youtube-square:before {
  3629. content: "\f166";
  3630. }
  3631. .fa-youtube:before {
  3632. content: "\f167";
  3633. }
  3634. .fa-xing:before {
  3635. content: "\f168";
  3636. }
  3637. .fa-xing-square:before {
  3638. content: "\f169";
  3639. }
  3640. .fa-youtube-play:before {
  3641. content: "\f16a";
  3642. }
  3643. .fa-dropbox:before {
  3644. content: "\f16b";
  3645. }
  3646. .fa-stack-overflow:before {
  3647. content: "\f16c";
  3648. }
  3649. .fa-instagram:before {
  3650. content: "\f16d";
  3651. }
  3652. .fa-flickr:before {
  3653. content: "\f16e";
  3654. }
  3655. .fa-adn:before {
  3656. content: "\f170";
  3657. }
  3658. .fa-bitbucket:before {
  3659. content: "\f171";
  3660. }
  3661. .fa-bitbucket-square:before {
  3662. content: "\f172";
  3663. }
  3664. .fa-tumblr:before {
  3665. content: "\f173";
  3666. }
  3667. .fa-tumblr-square:before {
  3668. content: "\f174";
  3669. }
  3670. .fa-long-arrow-down:before {
  3671. content: "\f175";
  3672. }
  3673. .fa-long-arrow-up:before {
  3674. content: "\f176";
  3675. }
  3676. .fa-long-arrow-left:before {
  3677. content: "\f177";
  3678. }
  3679. .fa-long-arrow-right:before {
  3680. content: "\f178";
  3681. }
  3682. .fa-apple:before {
  3683. content: "\f179";
  3684. }
  3685. .fa-windows:before {
  3686. content: "\f17a";
  3687. }
  3688. .fa-android:before {
  3689. content: "\f17b";
  3690. }
  3691. .fa-linux:before {
  3692. content: "\f17c";
  3693. }
  3694. .fa-dribbble:before {
  3695. content: "\f17d";
  3696. }
  3697. .fa-skype:before {
  3698. content: "\f17e";
  3699. }
  3700. .fa-foursquare:before {
  3701. content: "\f180";
  3702. }
  3703. .fa-trello:before {
  3704. content: "\f181";
  3705. }
  3706. .fa-female:before {
  3707. content: "\f182";
  3708. }
  3709. .fa-male:before {
  3710. content: "\f183";
  3711. }
  3712. .fa-gittip:before {
  3713. content: "\f184";
  3714. }
  3715. .fa-sun-o:before {
  3716. content: "\f185";
  3717. }
  3718. .fa-moon-o:before {
  3719. content: "\f186";
  3720. }
  3721. .fa-archive:before {
  3722. content: "\f187";
  3723. }
  3724. .fa-bug:before {
  3725. content: "\f188";
  3726. }
  3727. .fa-vk:before {
  3728. content: "\f189";
  3729. }
  3730. .fa-weibo:before {
  3731. content: "\f18a";
  3732. }
  3733. .fa-renren:before {
  3734. content: "\f18b";
  3735. }
  3736. .fa-pagelines:before {
  3737. content: "\f18c";
  3738. }
  3739. .fa-stack-exchange:before {
  3740. content: "\f18d";
  3741. }
  3742. .fa-arrow-circle-o-right:before {
  3743. content: "\f18e";
  3744. }
  3745. .fa-arrow-circle-o-left:before {
  3746. content: "\f190";
  3747. }
  3748. .fa-toggle-left:before,
  3749. .fa-caret-square-o-left:before {
  3750. content: "\f191";
  3751. }
  3752. .fa-dot-circle-o:before {
  3753. content: "\f192";
  3754. }
  3755. .fa-wheelchair:before {
  3756. content: "\f193";
  3757. }
  3758. .fa-vimeo-square:before {
  3759. content: "\f194";
  3760. }
  3761. .fa-turkish-lira:before,
  3762. .fa-try:before {
  3763. content: "\f195";
  3764. }
  3765. .fa-plus-square-o:before {
  3766. content: "\f196";
  3767. }
  3768. .fa-space-shuttle:before {
  3769. content: "\f197";
  3770. }
  3771. .fa-slack:before {
  3772. content: "\f198";
  3773. }
  3774. .fa-envelope-square:before {
  3775. content: "\f199";
  3776. }
  3777. .fa-wordpress:before {
  3778. content: "\f19a";
  3779. }
  3780. .fa-openid:before {
  3781. content: "\f19b";
  3782. }
  3783. .fa-institution:before,
  3784. .fa-bank:before,
  3785. .fa-university:before {
  3786. content: "\f19c";
  3787. }
  3788. .fa-mortar-board:before,
  3789. .fa-graduation-cap:before {
  3790. content: "\f19d";
  3791. }
  3792. .fa-yahoo:before {
  3793. content: "\f19e";
  3794. }
  3795. .fa-google:before {
  3796. content: "\f1a0";
  3797. }
  3798. .fa-reddit:before {
  3799. content: "\f1a1";
  3800. }
  3801. .fa-reddit-square:before {
  3802. content: "\f1a2";
  3803. }
  3804. .fa-stumbleupon-circle:before {
  3805. content: "\f1a3";
  3806. }
  3807. .fa-stumbleupon:before {
  3808. content: "\f1a4";
  3809. }
  3810. .fa-delicious:before {
  3811. content: "\f1a5";
  3812. }
  3813. .fa-digg:before {
  3814. content: "\f1a6";
  3815. }
  3816. .fa-pied-piper:before {
  3817. content: "\f1a7";
  3818. }
  3819. .fa-pied-piper-alt:before {
  3820. content: "\f1a8";
  3821. }
  3822. .fa-drupal:before {
  3823. content: "\f1a9";
  3824. }
  3825. .fa-joomla:before {
  3826. content: "\f1aa";
  3827. }
  3828. .fa-language:before {
  3829. content: "\f1ab";
  3830. }
  3831. .fa-fax:before {
  3832. content: "\f1ac";
  3833. }
  3834. .fa-building:before {
  3835. content: "\f1ad";
  3836. }
  3837. .fa-child:before {
  3838. content: "\f1ae";
  3839. }
  3840. .fa-paw:before {
  3841. content: "\f1b0";
  3842. }
  3843. .fa-spoon:before {
  3844. content: "\f1b1";
  3845. }
  3846. .fa-cube:before {
  3847. content: "\f1b2";
  3848. }
  3849. .fa-cubes:before {
  3850. content: "\f1b3";
  3851. }
  3852. .fa-behance:before {
  3853. content: "\f1b4";
  3854. }
  3855. .fa-behance-square:before {
  3856. content: "\f1b5";
  3857. }
  3858. .fa-steam:before {
  3859. content: "\f1b6";
  3860. }
  3861. .fa-steam-square:before {
  3862. content: "\f1b7";
  3863. }
  3864. .fa-recycle:before {
  3865. content: "\f1b8";
  3866. }
  3867. .fa-automobile:before,
  3868. .fa-car:before {
  3869. content: "\f1b9";
  3870. }
  3871. .fa-cab:before,
  3872. .fa-taxi:before {
  3873. content: "\f1ba";
  3874. }
  3875. .fa-tree:before {
  3876. content: "\f1bb";
  3877. }
  3878. .fa-spotify:before {
  3879. content: "\f1bc";
  3880. }
  3881. .fa-deviantart:before {
  3882. content: "\f1bd";
  3883. }
  3884. .fa-soundcloud:before {
  3885. content: "\f1be";
  3886. }
  3887. .fa-database:before {
  3888. content: "\f1c0";
  3889. }
  3890. .fa-file-pdf-o:before {
  3891. content: "\f1c1";
  3892. }
  3893. .fa-file-word-o:before {
  3894. content: "\f1c2";
  3895. }
  3896. .fa-file-excel-o:before {
  3897. content: "\f1c3";
  3898. }
  3899. .fa-file-powerpoint-o:before {
  3900. content: "\f1c4";
  3901. }
  3902. .fa-file-photo-o:before,
  3903. .fa-file-picture-o:before,
  3904. .fa-file-image-o:before {
  3905. content: "\f1c5";
  3906. }
  3907. .fa-file-zip-o:before,
  3908. .fa-file-archive-o:before {
  3909. content: "\f1c6";
  3910. }
  3911. .fa-file-sound-o:before,
  3912. .fa-file-audio-o:before {
  3913. content: "\f1c7";
  3914. }
  3915. .fa-file-movie-o:before,
  3916. .fa-file-video-o:before {
  3917. content: "\f1c8";
  3918. }
  3919. .fa-file-code-o:before {
  3920. content: "\f1c9";
  3921. }
  3922. .fa-vine:before {
  3923. content: "\f1ca";
  3924. }
  3925. .fa-codepen:before {
  3926. content: "\f1cb";
  3927. }
  3928. .fa-jsfiddle:before {
  3929. content: "\f1cc";
  3930. }
  3931. .fa-life-bouy:before,
  3932. .fa-life-buoy:before,
  3933. .fa-life-saver:before,
  3934. .fa-support:before,
  3935. .fa-life-ring:before {
  3936. content: "\f1cd";
  3937. }
  3938. .fa-circle-o-notch:before {
  3939. content: "\f1ce";
  3940. }
  3941. .fa-ra:before,
  3942. .fa-rebel:before {
  3943. content: "\f1d0";
  3944. }
  3945. .fa-ge:before,
  3946. .fa-empire:before {
  3947. content: "\f1d1";
  3948. }
  3949. .fa-git-square:before {
  3950. content: "\f1d2";
  3951. }
  3952. .fa-git:before {
  3953. content: "\f1d3";
  3954. }
  3955. .fa-hacker-news:before {
  3956. content: "\f1d4";
  3957. }
  3958. .fa-tencent-weibo:before {
  3959. content: "\f1d5";
  3960. }
  3961. .fa-qq:before {
  3962. content: "\f1d6";
  3963. }
  3964. .fa-wechat:before,
  3965. .fa-weixin:before {
  3966. content: "\f1d7";
  3967. }
  3968. .fa-send:before,
  3969. .fa-paper-plane:before {
  3970. content: "\f1d8";
  3971. }
  3972. .fa-send-o:before,
  3973. .fa-paper-plane-o:before {
  3974. content: "\f1d9";
  3975. }
  3976. .fa-history:before {
  3977. content: "\f1da";
  3978. }
  3979. .fa-circle-thin:before {
  3980. content: "\f1db";
  3981. }
  3982. .fa-header:before {
  3983. content: "\f1dc";
  3984. }
  3985. .fa-paragraph:before {
  3986. content: "\f1dd";
  3987. }
  3988. .fa-sliders:before {
  3989. content: "\f1de";
  3990. }
  3991. .fa-share-alt:before {
  3992. content: "\f1e0";
  3993. }
  3994. .fa-share-alt-square:before {
  3995. content: "\f1e1";
  3996. }
  3997. .fa-bomb:before {
  3998. content: "\f1e2";
  3999. }
  4000. .fa-soccer-ball-o:before,
  4001. .fa-futbol-o:before {
  4002. content: "\f1e3";
  4003. }
  4004. .fa-tty:before {
  4005. content: "\f1e4";
  4006. }
  4007. .fa-binoculars:before {
  4008. content: "\f1e5";
  4009. }
  4010. .fa-plug:before {
  4011. content: "\f1e6";
  4012. }
  4013. .fa-slideshare:before {
  4014. content: "\f1e7";
  4015. }
  4016. .fa-twitch:before {
  4017. content: "\f1e8";
  4018. }
  4019. .fa-yelp:before {
  4020. content: "\f1e9";
  4021. }
  4022. .fa-newspaper-o:before {
  4023. content: "\f1ea";
  4024. }
  4025. .fa-wifi:before {
  4026. content: "\f1eb";
  4027. }
  4028. .fa-calculator:before {
  4029. content: "\f1ec";
  4030. }
  4031. .fa-paypal:before {
  4032. content: "\f1ed";
  4033. }
  4034. .fa-google-wallet:before {
  4035. content: "\f1ee";
  4036. }
  4037. .fa-cc-visa:before {
  4038. content: "\f1f0";
  4039. }
  4040. .fa-cc-mastercard:before {
  4041. content: "\f1f1";
  4042. }
  4043. .fa-cc-discover:before {
  4044. content: "\f1f2";
  4045. }
  4046. .fa-cc-amex:before {
  4047. content: "\f1f3";
  4048. }
  4049. .fa-cc-paypal:before {
  4050. content: "\f1f4";
  4051. }
  4052. .fa-cc-stripe:before {
  4053. content: "\f1f5";
  4054. }
  4055. .fa-bell-slash:before {
  4056. content: "\f1f6";
  4057. }
  4058. .fa-bell-slash-o:before {
  4059. content: "\f1f7";
  4060. }
  4061. .fa-trash:before {
  4062. content: "\f1f8";
  4063. }
  4064. .fa-copyright:before {
  4065. content: "\f1f9";
  4066. }
  4067. .fa-at:before {
  4068. content: "\f1fa";
  4069. }
  4070. .fa-eyedropper:before {
  4071. content: "\f1fb";
  4072. }
  4073. .fa-paint-brush:before {
  4074. content: "\f1fc";
  4075. }
  4076. .fa-birthday-cake:before {
  4077. content: "\f1fd";
  4078. }
  4079. .fa-area-chart:before {
  4080. content: "\f1fe";
  4081. }
  4082. .fa-pie-chart:before {
  4083. content: "\f200";
  4084. }
  4085. .fa-line-chart:before {
  4086. content: "\f201";
  4087. }
  4088. .fa-lastfm:before {
  4089. content: "\f202";
  4090. }
  4091. .fa-lastfm-square:before {
  4092. content: "\f203";
  4093. }
  4094. .fa-toggle-off:before {
  4095. content: "\f204";
  4096. }
  4097. .fa-toggle-on:before {
  4098. content: "\f205";
  4099. }
  4100. .fa-bicycle:before {
  4101. content: "\f206";
  4102. }
  4103. .fa-bus:before {
  4104. content: "\f207";
  4105. }
  4106. .fa-ioxhost:before {
  4107. content: "\f208";
  4108. }
  4109. .fa-angellist:before {
  4110. content: "\f209";
  4111. }
  4112. .fa-cc:before {
  4113. content: "\f20a";
  4114. }
  4115. .fa-shekel:before,
  4116. .fa-sheqel:before,
  4117. .fa-ils:before {
  4118. content: "\f20b";
  4119. }
  4120. .fa-meanpath:before {
  4121. content: "\f20c";
  4122. }
  4123. @font-face {
  4124. font-family: "FontMfizz";
  4125. src: url("fonts/font-mfizz.eot");
  4126. src: url("fonts/font-mfizz.eot?#iefix") format("embedded-opentype"),
  4127. url("fonts/font-mfizz.woff") format("woff"),
  4128. url("fonts/font-mfizz.ttf") format("truetype"),
  4129. url("fonts/font-mfizz.svg#font-mfizz") format("svg");
  4130. font-weight: normal;
  4131. font-style: normal;
  4132. }
  4133. .icon-microscope:before,
  4134. .icon-cplusplus:before,
  4135. .icon-wireless:before,
  4136. .icon-fire-alt:before,
  4137. .icon-mobile-device:before,
  4138. .icon-objc:before,
  4139. .icon-redhat:before,
  4140. .icon-freebsd:before,
  4141. .icon-heroku:before,
  4142. .icon-python:before,
  4143. .icon-java:before,
  4144. .icon-satellite:before,
  4145. .icon-debian:before,
  4146. .icon-grails:before,
  4147. .icon-c:before,
  4148. .icon-postgres:before,
  4149. .icon-database-alt2:before,
  4150. .icon-raspberrypi:before,
  4151. .icon-nginx:before,
  4152. .icon-ruby-on-rails:before,
  4153. .icon-redis:before,
  4154. .icon-scala:before,
  4155. .icon-gnome:before,
  4156. .icon-perl:before,
  4157. .icon-mysql:before,
  4158. .icon-fedora:before,
  4159. .icon-ghost:before,
  4160. .icon-google:before,
  4161. .icon-netbsd:before,
  4162. .icon-aws:before,
  4163. .icon-bomb:before,
  4164. .icon-looking:before,
  4165. .icon-ruby:before,
  4166. .icon-mysql-alt:before,
  4167. .icon-playframework-alt:before,
  4168. .icon-osx:before,
  4169. .icon-database:before,
  4170. .icon-database-alt:before,
  4171. .icon-shell:before,
  4172. .icon-script:before,
  4173. .icon-antenna:before,
  4174. .icon-coffee-bean:before,
  4175. .icon-scala-alt:before,
  4176. .icon-platter:before,
  4177. .icon-java-duke:before,
  4178. .icon-iphone:before,
  4179. .icon-script-alt:before,
  4180. .icon-google-alt:before,
  4181. .icon-haskell:before,
  4182. .icon-mariadb:before,
  4183. .icon-phone-retro:before,
  4184. .icon-phone-alt:before,
  4185. .icon-csharp:before,
  4186. .icon-php:before,
  4187. .icon-postgres-alt:before,
  4188. .icon-html:before,
  4189. .icon-mfizz:before,
  4190. .icon-apache:before,
  4191. .icon-hadoop:before,
  4192. .icon-ruby-on-rails-alt:before,
  4193. .icon-mobile-phone-broadcast:before,
  4194. .icon-css:before,
  4195. .icon-playframework:before,
  4196. .icon-clojure:before,
  4197. .icon-mobile-phone-alt:before,
  4198. .icon-suse:before,
  4199. .icon-java-bold:before,
  4200. .icon-nginx-alt:before,
  4201. .icon-nginx-alt2:before,
  4202. .icon-linux-mint:before,
  4203. .icon-dreamhost:before,
  4204. .icon-blackberry:before,
  4205. .icon-javascript:before,
  4206. .icon-ubuntu:before,
  4207. .icon-php-alt:before,
  4208. .icon-centos:before,
  4209. .icon-nodejs:before,
  4210. .icon-splatter:before,
  4211. .icon-3dprint:before,
  4212. .icon-line-graph:before,
  4213. .icon-cassandra:before,
  4214. .icon-solaris:before,
  4215. .icon-jetty:before,
  4216. .icon-tomcat:before,
  4217. .icon-oracle:before,
  4218. .icon-oracle-alt:before,
  4219. .icon-mssql:before,
  4220. .icon-google-developers:before,
  4221. .icon-google-code:before,
  4222. .icon-kde:before,
  4223. .icon-grails-alt:before {
  4224. font-family: "FontMfizz";
  4225. font-style: normal;
  4226. font-weight: normal;
  4227. font-variant: normal;
  4228. text-transform: none;
  4229. line-height: 1;
  4230. -webkit-font-smoothing: antialiased;
  4231. display: inline-block;
  4232. text-decoration: inherit;
  4233. }
  4234. .icon-microscope:before { content: "\f100"; }
  4235. .icon-cplusplus:before { content: "\f101"; }
  4236. .icon-wireless:before { content: "\f102"; }
  4237. .icon-fire-alt:before { content: "\f103"; }
  4238. .icon-mobile-device:before { content: "\f104"; }
  4239. .icon-objc:before { content: "\f105"; }
  4240. .icon-redhat:before { content: "\f106"; }
  4241. .icon-freebsd:before { content: "\f107"; }
  4242. .icon-heroku:before { content: "\f108"; }
  4243. .icon-python:before { content: "\f109"; }
  4244. .icon-java:before { content: "\f10a"; }
  4245. .icon-satellite:before { content: "\f10b"; }
  4246. .icon-debian:before { content: "\f10c"; }
  4247. .icon-grails:before { content: "\f10d"; }
  4248. .icon-c:before { content: "\f10e"; }
  4249. .icon-postgres:before { content: "\f10f"; }
  4250. .icon-database-alt2:before { content: "\f110"; }
  4251. .icon-raspberrypi:before { content: "\f111"; }
  4252. .icon-nginx:before { content: "\f112"; }
  4253. .icon-ruby-on-rails:before { content: "\f113"; }
  4254. .icon-redis:before { content: "\f114"; }
  4255. .icon-scala:before { content: "\f115"; }
  4256. .icon-gnome:before { content: "\f116"; }
  4257. .icon-perl:before { content: "\f117"; }
  4258. .icon-mysql:before { content: "\f118"; }
  4259. .icon-fedora:before { content: "\f119"; }
  4260. .icon-ghost:before { content: "\f11a"; }
  4261. .icon-google:before { content: "\f11b"; }
  4262. .icon-netbsd:before { content: "\f11c"; }
  4263. .icon-aws:before { content: "\f11d"; }
  4264. .icon-bomb:before { content: "\f11e"; }
  4265. .icon-looking:before { content: "\f11f"; }
  4266. .icon-ruby:before { content: "\f120"; }
  4267. .icon-mysql-alt:before { content: "\f121"; }
  4268. .icon-playframework-alt:before { content: "\f122"; }
  4269. .icon-osx:before { content: "\f123"; }
  4270. .icon-database:before { content: "\f124"; }
  4271. .icon-database-alt:before { content: "\f125"; }
  4272. .icon-shell:before { content: "\f126"; }
  4273. .icon-script:before { content: "\f127"; }
  4274. .icon-antenna:before { content: "\f128"; }
  4275. .icon-coffee-bean:before { content: "\f129"; }
  4276. .icon-scala-alt:before { content: "\f12a"; }
  4277. .icon-platter:before { content: "\f12b"; }
  4278. .icon-java-duke:before { content: "\f12c"; }
  4279. .icon-iphone:before { content: "\f12d"; }
  4280. .icon-script-alt:before { content: "\f12e"; }
  4281. .icon-google-alt:before { content: "\f12f"; }
  4282. .icon-haskell:before { content: "\f130"; }
  4283. .icon-mariadb:before { content: "\f131"; }
  4284. .icon-phone-retro:before { content: "\f132"; }
  4285. .icon-phone-alt:before { content: "\f133"; }
  4286. .icon-csharp:before { content: "\f134"; }
  4287. .icon-php:before { content: "\f135"; }
  4288. .icon-postgres-alt:before { content: "\f136"; }
  4289. .icon-html:before { content: "\f137"; }
  4290. .icon-mfizz:before { content: "\f138"; }
  4291. .icon-apache:before { content: "\f139"; }
  4292. .icon-hadoop:before { content: "\f13a"; }
  4293. .icon-ruby-on-rails-alt:before { content: "\f13b"; }
  4294. .icon-mobile-phone-broadcast:before { content: "\f13c"; }
  4295. .icon-css:before { content: "\f13d"; }
  4296. .icon-playframework:before { content: "\f13e"; }
  4297. .icon-clojure:before { content: "\f13f"; }
  4298. .icon-mobile-phone-alt:before { content: "\f140"; }
  4299. .icon-suse:before { content: "\f141"; }
  4300. .icon-java-bold:before { content: "\f142"; }
  4301. .icon-nginx-alt:before { content: "\f143"; }
  4302. .icon-nginx-alt2:before { content: "\f144"; }
  4303. .icon-linux-mint:before { content: "\f145"; }
  4304. .icon-dreamhost:before { content: "\f146"; }
  4305. .icon-blackberry:before { content: "\f147"; }
  4306. .icon-javascript:before { content: "\f148"; }
  4307. .icon-ubuntu:before { content: "\f149"; }
  4308. .icon-php-alt:before { content: "\f14a"; }
  4309. .icon-centos:before { content: "\f14b"; }
  4310. .icon-nodejs:before { content: "\f14c"; }
  4311. .icon-splatter:before { content: "\f14d"; }
  4312. .icon-3dprint:before { content: "\f14e"; }
  4313. .icon-line-graph:before { content: "\f14f"; }
  4314. .icon-cassandra:before { content: "\f150"; }
  4315. .icon-solaris:before { content: "\f151"; }
  4316. .icon-jetty:before { content: "\f152"; }
  4317. .icon-tomcat:before { content: "\f153"; }
  4318. .icon-oracle:before { content: "\f154"; }
  4319. .icon-oracle-alt:before { content: "\f155"; }
  4320. .icon-mssql:before { content: "\f156"; }
  4321. .icon-google-developers:before { content: "\f157"; }
  4322. .icon-google-code:before { content: "\f158"; }
  4323. .icon-kde:before { content: "\f159"; }
  4324. .icon-grails-alt:before { content: "\f15a"; }
  4325. /* These classes only added to fix FontFamily to display FontMfizz during debug/inspection */
  4326. .icon-osx,
  4327. .icon-bomb,
  4328. .icon-mobile-phone-broadcast,
  4329. .icon-objc,
  4330. .icon-nginx-alt2,
  4331. .icon-mysql,
  4332. .icon-phone-retro,
  4333. .icon-netbsd,
  4334. .icon-mobile-device,
  4335. .icon-ruby-on-rails,
  4336. .icon-phone-alt,
  4337. .icon-line-graph,
  4338. .icon-postgres,
  4339. .icon-playframework,
  4340. .icon-python,
  4341. .icon-ruby-on-rails-alt,
  4342. .icon-nginx,
  4343. .icon-database-alt2,
  4344. .icon-google-alt,
  4345. .icon-microscope,
  4346. .icon-blackberry,
  4347. .icon-dreamhost,
  4348. .icon-google,
  4349. .icon-centos,
  4350. .icon-kde,
  4351. .icon-csharp,
  4352. .icon-scala,
  4353. .icon-redis,
  4354. .icon-looking,
  4355. .icon-database-alt,
  4356. .icon-javascript,
  4357. .icon-postgres-alt,
  4358. .icon-linux-mint,
  4359. .icon-ubuntu,
  4360. .icon-apache,
  4361. .icon-script-alt,
  4362. .icon-mssql,
  4363. .icon-c,
  4364. .icon-gnome,
  4365. .icon-java-duke,
  4366. .icon-scala-alt,
  4367. .icon-clojure,
  4368. .icon-oracle-alt,
  4369. .icon-redhat,
  4370. .icon-haskell,
  4371. .icon-3dprint,
  4372. .icon-mariadb,
  4373. .icon-java,
  4374. .icon-script,
  4375. .icon-cplusplus,
  4376. .icon-jetty,
  4377. .icon-perl,
  4378. .icon-heroku,
  4379. .icon-nginx-alt,
  4380. .icon-iphone,
  4381. .icon-splatter,
  4382. .icon-shell,
  4383. .icon-mysql-alt,
  4384. .icon-wireless,
  4385. .icon-ruby,
  4386. .icon-playframework-alt,
  4387. .icon-raspberrypi,
  4388. .icon-suse,
  4389. .icon-nodejs,
  4390. .icon-java-bold,
  4391. .icon-google-developers,
  4392. .icon-mobile-phone-alt,
  4393. .icon-grails-alt,
  4394. .icon-coffee-bean,
  4395. .icon-cassandra,
  4396. .icon-google-code,
  4397. .icon-fedora,
  4398. .icon-antenna,
  4399. .icon-hadoop,
  4400. .icon-solaris,
  4401. .icon-html,
  4402. .icon-css,
  4403. .icon-satellite,
  4404. .icon-aws,
  4405. .icon-mfizz,
  4406. .icon-php,
  4407. .icon-debian,
  4408. .icon-ghost,
  4409. .icon-php-alt,
  4410. .icon-tomcat,
  4411. .icon-database,
  4412. .icon-grails,
  4413. .icon-freebsd,
  4414. .icon-oracle,
  4415. .icon-fire-alt,
  4416. .icon-platter{
  4417. font-family: "FontMfizz";
  4418. }