style.css 87 KB

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