style.css 89 KB

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