123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591 |
- /*
- Theme Name: Rebalance
- Theme URI: https://wordpress.org/themes/rebalance/
- Author: Automattic
- Author URI: http://wordpress.com/themes/
- Description: Rebalance is a new spin on the classic Imbalance 2 portfolio theme. It is a simple, modern theme for photographers, artists, and graphic designers looking to showcase their work.
- Version: 1.1.15-wpcom
- License: GNU General Public License v2 or later
- License URI: http://www.gnu.org/licenses/gpl-2.0.html
- Text Domain: rebalance
- Tags: custom-background, custom-colors, custom-menu, featured-content-with-pages, featured-images, grid-layout, one-column, portfolio, responsive-layout, theme-options, threaded-comments, three-columns, translation-ready, two-columns
- Rebalance WordPress Theme, Copyright 2017 Automattic, Inc.
- Rebalance is distributed under the terms of the GNU GPL.
- This theme, like WordPress, is licensed under the GPL.
- Use it to make something cool, have fun, and share what you've learned with others.
- Rebalance is based on Underscores http://underscores.me/, (C) 2012-2017 Automattic, Inc.
- Underscores is distributed under the terms of the GNU GPL v2 or later.
- Normalizing styles have been helped along thanks to the fine work of
- Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
- */
- /*--------------------------------------------------------------*/
- /* !# TABLE OF CONTENTS */
- /*--------------------------------------------------------------*/
- /*----------------------------------------------------------------
- # Normalize
- ## Typography
- ## Elements
- ## Links
- ## Forms
- # Theme Globals
- # Layout
- # Accessibility
- # Alignments
- # Clearings
- # Header
- # Navigation
- ## Toggle Navigation
- ## Main Navigation
- ## Social Navigation
- # Widgets
- # Content
- ## Posts and Pages
- ## Featured Project
- ## Author Meta
- ## Single Post
- ## Single Jetpack Portfolio
- ## Page
- ## Archive
- ## Masonry
- ## Infinite scroll
- ## 404 Error
- ## Asides
- # Media
- ## Captions
- ## Galleries
- # Pagination
- # Comments
- ## Comments Respond
- ## Widgets
- ## Secondary
- # Footer
- # Extras
- ----------------------------------------------------------------*/
- /*--------------------------------------------------------------*/
- /* !# Normalize */
- /*--------------------------------------------------------------*/
- html {
- font-family: sans-serif;
- -webkit-text-size-adjust: 100%;
- -ms-text-size-adjust: 100%;
- }
- body {
- margin: 0;
- }
- article,
- aside,
- details,
- figcaption,
- figure,
- footer,
- header,
- main,
- menu,
- 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-color: 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: 0.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 {
- 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"] {
- cursor: pointer;
- -webkit-appearance: button;
- }
- 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"] {
- box-sizing: content-box;
- -webkit-appearance: textfield;
- }
- 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: 0.35em 0.625em 0.75em;
- }
- legend {
- border: 0;
- padding: 0;
- }
- textarea {
- overflow: auto;
- }
- optgroup {
- font-weight: bold;
- }
- table {
- border-collapse: collapse;
- border-spacing: 0;
- }
- td,
- th {
- padding: 0;
- }
- /*--------------------------------------------------------------*/
- /* !## Typography */
- /*--------------------------------------------------------------*/
- body,
- button,
- input,
- select,
- textarea {
- color: #555;
- font-family: sans-serif;
- font-size: 16px;
- font-size: 1rem;
- line-height: 1.5;
- }
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- clear: both;
- margin: 0;
- }
- p {
- margin: 0 0 1.5em;
- }
- dfn,
- cite,
- em,
- i {
- font-style: italic;
- }
- blockquote {
- margin: 0 1.5em;
- }
- address {
- margin: 0 0 1.5em;
- }
- pre {
- background: #CCC;
- color: #FFF;
- font-family: "Courier 10 Pitch", Courier, monospace;
- font-size: 15px;
- font-size: 0.9375rem;
- line-height: 1.6;
- margin-bottom: 1.6em;
- max-width: 100%;
- overflow: auto;
- padding: 1.6em;
- }
- code,
- kbd,
- tt,
- var {
- font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
- font-size: 15px;
- font-size: 0.9375rem;
- }
- abbr,
- acronym {
- border-bottom: 1px dotted #666;
- cursor: help;
- }
- mark,
- ins {
- background: #FFF9C0;
- text-decoration: none;
- }
- big {
- font-size: 125%;
- }
- /*--------------------------------------------------------------*/
- /* !## Elements */
- /*--------------------------------------------------------------*/
- html {
- box-sizing: border-box;
- }
- *,
- *:before,
- *:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
- box-sizing: inherit;
- }
- body {
- background: #fff; /* Fallback for when there is no custom background color defined. */
- }
- blockquote:before,
- blockquote:after,
- q:before,
- q:after {
- content: "";
- }
- blockquote,
- q {
- quotes: "" "";
- }
- hr {
- background-color: #CCC;
- border: 0;
- height: 1px;
- margin-bottom: 1.5em;
- }
- ul,
- ol {
- margin: 0 0 1.5em 2em;
- padding: 0;
- }
- ul {
- list-style: disc;
- }
- ol {
- list-style: decimal;
- }
- li > ul,
- li > ol {
- margin-bottom: 0;
- margin-left: 1.5em;
- }
- dt {
- font-weight: bold;
- }
- dd {
- margin: 0 1.5em 1.5em;
- }
- img {
- height: auto; /* Make sure images are scaled correctly. */
- max-width: 100%; /* Adhere to container width. */
- }
- table {
- margin: 0 0 1.5em;
- width: 100%;
- }
- /*--------------------------------------------------------------*/
- /* !## Links */
- /*--------------------------------------------------------------*/
- a {
- color: royalblue;
- }
- a:visited {
- color: purple;
- }
- a:hover,
- a:focus,
- a:active {
- color: midnightblue;
- }
- a:focus {
- outline: thin dotted;
- }
- a:hover,
- a:active {
- outline: 0;
- }
- /*--------------------------------------------------------------*/
- /* !## Forms */
- /*--------------------------------------------------------------*/
- button,
- input[type="button"],
- input[type="reset"],
- input[type="submit"] {
- background: #FFF;
- border: 2px solid #000;
- border-radius: 0;
- color: #F35029;
- font-family: "Rubik", "Helvetica Neue", sans-serif;
- font-weight: 500;
- line-height: 1;
- padding: 15px 20px;
- -webkit-appearance: none;
- }
- button:hover,
- input[type="button"]:hover,
- input[type="reset"]:hover,
- input[type="submit"]:hover {
- background: #000;
- color: #FFF;
- }
- button:focus,
- input[type="button"]:focus,
- input[type="reset"]:focus,
- input[type="submit"]:focus,
- button:active,
- input[type="button"]:active,
- input[type="reset"]:active,
- input[type="submit"]:active {
- background: #000;
- color: #FFF;
- outline: 0;
- }
- input[type="text"],
- input[type="email"],
- input[type="url"],
- input[type="password"],
- input[type="search"],
- textarea {
- border: 2px solid #000;
- border-radius: 0;
- color: #F35029;
- padding: 12px 15px;
- -webkit-appearance: none;
- }
- input[type="text"]:focus,
- input[type="email"]:focus,
- input[type="url"]:focus,
- input[type="password"]:focus,
- input[type="search"]:focus,
- textarea:focus {
- color: #000;
- }
- input[type="text"],
- input[type="email"],
- input[type="url"],
- input[type="password"],
- input[type="search"] {
- padding: 11px 15px;
- }
- textarea {
- padding-left: 3px;
- width: 100%;
- }
- /*--------------------------------------------------------------*/
- /* !# Theme Globals */
- /*--------------------------------------------------------------*/
- html {
- height: 100%;
- }
- body {
- background: #FFF;
- color: #555;
- display: -webkit-flex;
- display: -ms-flexbox;
- display: flex;
- font-family: "Rubik", "Helvetica Neue", sans-serif;
- font-size: 17px;
- line-height: 1.5;
- min-height: 100%;
- word-wrap: break-word;
- -webkit-font-smoothing: antialiased;
- -webkit-flex-direction: column;
- -ms-flex-direction: column;
- flex-direction: column;
- }
- /* Fade in page after js loads */
- .js body {
- opacity: 0;
- }
- h1, h2, h3, h4, h5, h6 {
- font-family: "Libre Baskerville", Georgia, serif;
- font-weight: 700;
- margin-bottom: .5em;
- }
- h1 {
- font-size: 36px;
- }
- h2 {
- font-size: 28px;
- }
- h3 {
- font-size: 24px;
- }
- h4, h5, h6 {
- font-size: 18px;
- }
- a,
- a:visited {
- color: #000;
- text-decoration: none;
- word-wrap: break-word;
- -webkit-transition: all 0.2s ease;
- -moz-transition: all 0.2s ease;
- transition: all 0.2s ease;
- }
- a:hover,
- a:focus,
- a:active {
- color: #F35029;
- text-decoration: underline;
- }
- /*--------------------------------------------------------------*/
- /* !# Layout */
- /*--------------------------------------------------------------*/
- #page {
- -webkit-flex: 1 0 auto;
- -ms-flex: 1 0 auto;
- flex: 1 0 auto;
- }
- .content-area {
- width: 100%;
- }
- .site-main {
- padding: 0;
- position: relative;
- }
- .site-content .secondary {
- overflow: hidden;
- width: 28%;
- }
- .col-width {
- margin: 0 auto;
- max-width: 1140px;
- position: relative;
- width: 90%;
- }
- /* No Sidebar */
- .no-sidebar .content-area {
- margin: 0 auto;
- max-width: 790px;
- }
- .no-sidebar.masonry .content-area {
- max-width: 100%;
- }
- /* Full Width Template */
- .full-width .content-area {
- margin: 0;
- }
- .full-width .site-main {
- margin: 0;
- }
- .clear {
- clear: both
- }
- .clear-fix {
- clear: both
- }
- .clear-fix:before,
- .clear-fix:after {
- content: " "; /* 1 */
- display: table; /* 2 */
- }
- .clear-fix:after {
- clear: both;
- }
- /* For IE 6/7 only */
- .clear-fix {
- *zoom: 1;
- }
- /* General Responsive Layout */
- @media screen and (max-width: 881px) {
- #page .content-area {
- float: none;
- }
- #page .site-main {
- margin: 0;
- padding: 0;
- }
- #page .site-content .secondary {
- float: none;
- width: auto;
- }
- }
- @media screen and (max-width: 510px) {
- .single #page .content-area {
- border-top: 1px solid #f2f2f2;
- margin-top: 0;
- }
- .single #content .module {
- border-radius: 0;
- margin-bottom: 0;
- }
- .single.sidebar-right .site-content .secondary {
- border-top: 1px solid #f2f2f2;
- margin: 0;
- }
- }
- /*--------------------------------------------------------------*/
- /* !# Accessibility */
- /*--------------------------------------------------------------*/
- /* Text meant only for screen readers. */
- .screen-reader-text {
- clip: rect(1px, 1px, 1px, 1px);
- height: 1px;
- overflow: hidden;
- position: absolute !important;
- width: 1px;
- }
- .screen-reader-text:focus {
- background-color: #f1f1f1;
- border-radius: 3px;
- box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
- clip: auto !important;
- color: #21759b;
- display: block;
- font-size: 14px;
- font-size: 0.875rem;
- font-weight: bold;
- height: auto;
- left: 5px;
- line-height: normal;
- padding: 15px 23px 14px;
- text-decoration: none;
- top: 5px;
- width: auto;
- z-index: 100000; /* Above WP toolbar. */
- }
- /* Do not show the outline on the skip link target. */
- #content[tabindex="-1"]:focus {
- outline: 0;
- }
- /*--------------------------------------------------------------*/
- /* !# Alignments */
- /*--------------------------------------------------------------*/
- .alignleft {
- display: inline;
- float: left;
- margin-bottom: 1.5em;
- margin-right: 1.5em;
- }
- .alignright {
- display: inline;
- float: right;
- margin-left: 1.5em;
- margin-bottom: 1.5em;
- }
- .aligncenter {
- clear: both;
- display: block;
- margin-bottom: 1.5em;
- margin-left: auto;
- margin-right: auto;
- }
- /*--------------------------------------------------------------*/
- /* !# Clearings */
- /*--------------------------------------------------------------*/
- .clear:before,
- .clear:after,
- .entry-content:before,
- .entry-content:after,
- .comment-content:before,
- .comment-content:after,
- .site-header:before,
- .site-header:after,
- .site-content:before,
- .site-content:after,
- .site-footer:before,
- .site-footer:after {
- content: "";
- display: table;
- table-layout: fixed;
- }
- .clear:after,
- .entry-content:after,
- .comment-content:after,
- .site-header:after,
- .site-content:after,
- .site-footer:after {
- clear: both;
- }
- /*--------------------------------------------------------------*/
- /* !# Header */
- /*--------------------------------------------------------------*/
- .site-heading {
- border-top: 3px solid #000;
- border-bottom: 6px solid #000;
- margin: 0;
- padding: 30px 0;
- }
- .has-custom-header .site-heading {
- border-top: none;
- }
- .site-branding {
- text-align: center;
- }
- .site-title {
- font-family: "Rubik", "Helvetica Neue", sans-serif;
- font-size: 36px;
- font-weight: 400;
- line-height: 1;
- margin: 0;
- }
- .site-title a {
- color: #000;
- position: relative;
- text-decoration: none;
- }
- .site-title a:hover {
- color: #F35029;
- }
- .site-logo,
- .custom-logo {
- display: block;
- margin: 0 auto 15px;
- }
- .site-header-image {
- display: block;
- }
- .site-title-heading {
- margin-bottom: 0;
- }
- .site-description {
- color: #000;
- font-family: "Libre Baskerville", Georgia, serif;
- font-weight: 400;
- font-size: 16px;
- font-style: italic;
- line-height: 2em;
- margin: 30px 0 33px; /* Adding 3 extra pixels to bottom to keep baseline intact */
- position: relative;
- text-align: center;
- width: 100%;
- }
- /* Hides description from the customizer when empty */
- .site-description:empty {
- display: none;
- }
- /* Large Screen Styles */
- @media screen and (min-width: 881px) {
- .site-heading {
- align-items: center;
- border-top: none;
- display: block;
- display: flex;
- flex-direction: row;
- padding-top: 60px;
- }
- .has-custom-header .site-heading {
- padding-top: 30px;
- }
- .site-branding {
- flex-grow: 4;
- text-align: left;
- }
- .site-branding .site-title {
- display: inline-block;
- }
- .site-title {
- border-top: none;
- font-size: 48px;
- }
- .has-site-logo .site-title,
- .wp-custom-logo .site-title {
- vertical-align: middle;
- }
- .site-logo,
- .custom-logo {
- display: block;
- margin: 0;
- }
- .site-logo-link,
- .custom-logo-link {
- display: inline-block;
- margin-right: 20px;
- vertical-align: middle;
- }
- .site-title-heading {
- display: inline-block;
- margin-bottom: 0;
- vertical-align: middle;
- }
- }
- /*--------------------------------------------------------------*/
- /* !# Navigation */
- /*--------------------------------------------------------------*/
- /*--------------------------------------------------------------*/
- /* !## Social Navigation */
- /*--------------------------------------------------------------*/
- .social-navigation {
- position: relative;
- width: 100%;
- }
- .social-navigation > * {
- font-size: 25px;
- line-height: 1;
- padding: 20px 0 0;
- text-align: center;
- }
- .social-navigation ul {
- list-style: none;
- margin: 0;
- padding: 0;
- }
- .social-navigation li {
- display: inline-block;
- padding: 0 7px;
- }
- .social-navigation a {
- display: block;
- height: 25px;
- text-align: center;
- width: 25px;
- }
- .social-menu a span {
- clip: rect(1px, 1px, 1px, 1px);
- height: 1px;
- margin: 0;
- overflow: hidden;
- position: absolute !important;
- width: 1px;
- }
- .social-menu a:before {
- content: '\f0c1';
- display: inline-block;
- font-family: 'FontAwesome';
- font-style: normal;
- font-weight: normal;
- line-height: 1;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- }
- .social-menu a[href*="behance.com"]:before,
- .social-menu a[href*="behance.net"]:before {
- content: '\f1b4';
- }
- .social-menu a[href*="digg.com"]:before {
- content: '\f1a6';
- }
- .social-menu a[href*="dribbble.com"]:before {
- content: '\f17d';
- }
- .social-menu a[href*="facebook.com"]:before {
- content: '\f09a';
- }
- .social-menu a[href*="flickr.com"]:before {
- content: '\f16e';
- }
- .social-menu a[href*="foursquare.com"]:before {
- content: '\f180';
- }
- .social-menu a[href*="github.com"]:before {
- content: '\f09b';
- }
- .social-menu a[href*="linkedin.com"]:before {
- content: '\f0e1';
- }
- .social-menu a[href*="pinterest."]:before {
- content: '\f0d2';
- }
- .social-menu a[href*="plus.google.com"]:before {
- content: '\f0d5';
- }
- .social-menu a[href*="instagr.am"]:before,
- .social-menu a[href*="instagram.com"]:before {
- content: '\f16d';
- }
- .social-menu a[href*="reddit.com"]:before {
- content: '\f281';
- }
- .social-menu a[href*="skype.com"]:before {
- content: '\f17e';
- }
- .social-menu a[href*="soundcloud.com"]:before {
- content: '\f1be';
- }
- .social-menu a[href*="spotify.com"]:before {
- content: '\f1bc';
- }
- .social-menu a[href*="tumblr.com"]:before {
- content: '\f173';
- }
- .social-menu a[href*="twitch.tv"]:before {
- content: '\f1e8';
- }
- .social-menu a[href*="twitter.com"]:before {
- content: '\f099';
- }
- .social-menu a[href*="vimeo.com"]:before {
- content: '\f194';
- }
- .social-menu a[href*="wordpress.com"]:before,
- .social-menu a[href*="wordpress.org"]:before {
- content: '\f19a';
- }
- .social-menu a[href*="youtube.com"]:before {
- content: "\f167";
- }
- /* RSS */
- .social-menu a[href*='/feed']:before {
- content: "\f09e";
- }
- /* Email */
- .social-menu a[href*='mailto']:before {
- content: "\f0e0";
- }
- /* Icons aren't shown in small screen layouts */
- @media screen and (min-width: 881px) {
- .social-navigation {
- flex-grow: 1;
- width: auto;
- }
- .social-navigation > * {
- font-size: 20px;
- padding: 0;
- text-align: right;
- }
- }
- /*--------------------------------------------------------------*/
- /* !## Main Navigation */
- /*--------------------------------------------------------------*/
- .main-navigation {
- clear: both;
- display: table;
- float: none;
- font-size: 1rem;
- position: relative;
- width: 100%;
- }
- .main-navigation ul {
- list-style: none;
- margin: 0;
- padding: 0;
- -webkit-transition: all 0.2s ease;
- -moz-transition: all 0.2s ease;
- transition: all 0.2s ease;
- }
- .main-navigation .sub-menu,
- .main-navigation .children {
- padding-left: 1.5em;
- border-top: 1px solid #CCC;
- margin-bottom: -1px;
- }
- .main-navigation .sub-menu li:before,
- .main-navigation .children li:before {
- content: "\2014\00a0";
- display: inline-block;
- line-height: 1.5em;
- padding-left: 8px;
- padding-top: 12px;
- position: absolute;
- z-index: 0;
- -webkit-transition: all 0.2s ease;
- -moz-transition: all 0.2s ease;
- transition: all 0.2s ease;
- }
- .main-navigation .sub-menu li:hover:before,
- .main-navigation .children li:hover:before {
- color: #F35029;
- }
- .main-navigation div > ul:first-child {
- border-top: 3px solid #000;
- width: 100%;
- }
- .main-navigation div > ul:last-child {
- border-bottom: 3px solid #000;
- }
- .main-navigation ul > li a {
- display: block;
- color: #000;
- padding: 12px 20px;
- text-decoration: none;
- }
- .main-navigation ul > li li a {
- padding-left: 26px;
- }
- .main-navigation ul > li:hover > a,
- .main-navigation ul ul > li:hover > a {
- color: #F35029;
- }
- .dropdown-toggle {
- display: none;
- }
- /*--------------------------------------------------------------*/
- /* !## Toggle Navigation */
- /*--------------------------------------------------------------*/
- .menu-toggle {
- background: #FFF;
- box-shadow: none;
- color: #F35029;
- cursor: pointer;
- display: inline-block;
- font-weight: 500;
- line-height: 1;
- margin: -15px auto 40px;
- padding: 13px 18px 14px;
- text-align: left;
- }
- .menu-toggle:after {
- content: '\f107';
- display: inline-block;
- font-family: 'FontAwesome';
- font-weight: normal;
- margin: 0 0 0 5px;
- speak: none;
- vertical-align: baseline;
- }
- .menu-toggle[aria-expanded="true"]:after {
- content: "\d7";
- }
- .menu-toggle:focus {
- background: #FFF;
- color: #F35029;
- box-shadow: none;
- }
- /* Small menu. */
- .menu-toggle {
- display: block;
- }
- .main-navigation.toggled-on {
- margin-bottom: 40px;
- }
- .main-navigation > div {
- background: #FFF;
- height: auto;
- max-height: 0;
- opacity: 0;
- overflow: hidden;
- position: relative;
- width: 100%;
- -webkit-transition: max-height 0.3s ease, opacity 0.3s ease;
- -moz-transition: max-height all 0.3s ease, opacity 0.3s ease;
- transition: max-height all 0.3s ease, opacity 0.3s ease;
- }
- .main-navigation.toggled-on > div {
- max-height: 9999px;
- opacity: 1;
- width: 100%;
- z-index: 999;
- }
- /* Large Screen Styles */
- @media screen and (min-width: 881px) {
- .menu-toggle {
- display: none;
- }
- }
- /*--------------------------------------------------------------*/
- /* !## Mobile Navigation */
- /*--------------------------------------------------------------*/
- @media screen and (max-width: 880px) {
- .main-navigation .col-width {
- width: 100%;
- }
- /*
- * Sub-menu dropdown buttons
- */
- .dropdown-toggle {
- border: 1px solid #CCC;
- display: inline-block;
- height: 32px;
- line-height: 5px;
- margin: 0;
- padding: 10px;
- position: absolute;
- right: 8px;
- top: 7px;
- speak: none;
- z-index: 5;
- width: 32px;
- -moz-border-radius: 20px;
- -webkit-border-radius: 20px;
- -khtml-border-radius: 20px;
- border-radius: 20px;
- }
- .dropdown-toggle:after {
- color: #000000;
- content: '\f107';
- font-family: 'FontAwesome';
- font-weight: normal;
- line-height: 0;
- text-align: center;
- vertical-align: baseline;
- }
- .dropdown-toggle:hover,
- .dropdown-toggle.toggled-on {
- border-color: #F35029;
- }
- .dropdown-toggle:hover::after {
- color: #F35029;
- }
- .dropdown-toggle.toggled-on:after {
- content: '\d7';
- color: #F35029;
- line-height: 0;
- vertical-align: top;
- }
- .dropdown-toggle:active,
- .dropdown-toggle:hover,
- .dropdown-toggle:focus {
- background: transparent;
- color: #F35029;
- }
- /*
- * Sub-menu top borders
- *
- * Using a psuedo class for top borders in
- * menu on mobile so that we don't need
- * media queries in our color annotations.
- */
- .main-navigation .sub-menu,
- .main-navigation .children {
- border-top: none;
- position: relative;
- }
- .main-navigation .sub-menu:before,
- .main-navigation .children:before {
- content: "";
- border-top: 1px solid #CCC;
- height: 1px;
- left: 0;
- position: absolute;
- top: 0;
- width: 100%;
- }
- /*
- * Sub-menu bottom dropdowns
- */
- .main-navigation .sub-menu,
- .main-navigation .children {
- background: #FFF;
- height: auto;
- max-height: 0;
- opacity: 0;
- overflow: hidden;
- position: relative;
- width: 100%;
- -webkit-transition: max-height 0.3s ease, opacity 0.3s ease;
- -moz-transition: max-height all 0.3s ease, opacity 0.3s ease;
- transition: max-height all 0.3s ease, opacity 0.3s ease;
- }
- .main-navigation .sub-menu.toggled-on,
- .main-navigation .children.toggled-on {
- max-height: 9999px;
- opacity: 1;
- width: 100%;
- }
- /*
- * Sub-menu bottom borders
- *
- * Using a psuedo class for bottom borders
- * in menu on mobile so that we don't need
- * media queries in our color annotations.
- */
- .main-navigation li {
- position: relative;
- }
- .main-navigation li a {
- position: relative;
- z-index: 1;
- }
- .main-navigation li:after {
- content: "";
- bottom: 0;
- border-bottom: 1px solid #CCC;
- height: 1px;
- left: 0;
- position: absolute;
- width: 100%;
- }
- .main-navigation li:after {
- content: "";
- bottom: 0;
- border-bottom: 1px solid #CCC;
- height: 1px;
- left: 0;
- position: absolute;
- width: 100%;
- }
- .main-navigation ul:last-of-type > li:last-of-type:after {
- border-bottom: none;
- }
- }
- /* Large Screen Styles */
- @media screen and (min-width: 881px) {
- .header-menu-wrap {
- float: left;
- }
- .site-description {
- float: left;
- text-align: left;
- width: 48.5%;
- }
- .main-navigation {
- clear: right;
- float: right;
- font-size: 16px;
- height: inherit;
- margin: 30px 0;
- overflow: visible;
- position: relative;
- width: 48.5%;
- }
- .main-navigation > div {
- position: relative;
- opacity: 1;
- overflow: visible;
- }
- .main-navigation div > ul {
- float: left;
- list-style-type: none;
- margin: 0 0 15px;
- padding: 0;
- text-align: left;
- width: 33%;
- }
- .main-navigation div > ul:first-child {
- border-top: none;
- margin-top: inherit;
- padding-top: inherit;
- width: 33%;
- }
- /* Javascript turned off */
- .no-js .main-navigation div > ul {
- width: 100%;
- }
- .no-js .main-navigation div > ul li {
- float: left;
- width: 33%;
- }
- .no-js .main-navigation div > ul li li {
- width: 100%;
- }
- .main-navigation div > ul:last-child {
- padding-bottom: inherit;
- border-bottom: none;
- }
- .main-navigation .sub-menu,
- .main-navigation .children {
- background: #FFF;
- border: 2px solid #000;
- border-width: 2px;
- display: none;
- left: 0;
- margin: 0 -2px -2px;
- padding-left: 0;
- position: absolute;
- width: calc(100% + 4px);
- z-index: 99999;
- }
- .main-navigation ul > li {
- border: 2px solid transparent;
- line-height: 1.333em;
- margin: -2px;
- position: relative;
- }
- .main-navigation ul > li a {
- display: block;
- padding: 5px 8px;
- text-align: left;
- }
- /* Sub navigation */
- .main-navigation ul ul > li:hover,
- .main-navigation .page_item_has_children:hover,
- .main-navigation .menu-item-has-children:hover {
- border-color: #000;
- }
- .main-navigation .sub-menu li:before,
- .main-navigation .children li:before {
- padding-top: 4px;
- }
- .main-navigation .sub-menu a,
- .main-navigation .children a {
- padding-left: 26px;
- position: relative;
- z-index: 1;
- }
- .main-navigation div > ul ul {
- border: 2px solid #000;
- border-width: 0 2px;
- }
- .main-navigation .sub-menu .sub-menu,
- .main-navigation .children .children {
- border-width: 2px;
- right: calc(100% + 2px);
- left: inherit;
- margin: -2px -2px -2px 0;
- top: 0;
- }
- .main-navigation .sub-menu .sub-menu li,
- .main-navigation .children .children li {
- display: block;
- padding: 0;
- width: calc(100% + 4px);
- }
- .main-navigation .page_item_has_children > a:after,
- .main-navigation .menu-item-has-children > a:after {
- content: '\f107';
- display: inline-block;
- font-family: 'FontAwesome';
- font-weight: normal;
- margin: 0 0 0 5px;
- speak: none;
- vertical-align: baseline;
- }
- .main-navigation .sub-menu li.page_item_has_children:before,
- .main-navigation .children li.page_item_has_children:before,
- .main-navigation .sub-menu li.menu-item-has-children:before,
- .main-navigation .children li.menu-item-has-children:before {
- content: '\f104';
- font-family: 'FontAwesome';
- font-weight: normal;
- margin: -2px 5px 0 0;
- }
- .main-navigation .page_item_has_children .page_item_has_children > a:after,
- .main-navigation .menu-item-has-children .menu-item-has-children > a:after {
- content: '';
- display: none;
- }
- .main-navigation ul li:hover > ul {
- display: block;
- }
- .main-navigation ul ul li:last-child a {
- border-bottom: none;
- }
- }
- /*--------------------------------------------------------------*/
- /* !# Content */
- /*--------------------------------------------------------------*/
- /*--------------------------------------------------------------*/
- /* !## Posts and Pages */
- /*--------------------------------------------------------------*/
- .sticky {
- display: block;
- }
- .hentry {
- margin: 0;
- }
- .updated:not(.published) {
- display: none;
- }
- .single .byline,
- .group-blog .byline {
- display: inline;
- }
- .post-hero-image {
- border: 1px solid #DDD;
- margin-bottom: 10px;
- }
- .post-hero-image .entry-image {
- margin: -1px;
- }
- .entry-image {
- line-height: 0;
- margin: 0;
- text-align: center;
- }
- .entry-image .entry-image-caption {
- background: #FFF;
- border-bottom: 3px solid #000;
- color: #999;
- font-size: 14px;
- padding: 15px;
- }
- .entry-image .entry-image-caption span {
- margin-right: 10px;
- }
- .entry-image-section {
- margin-bottom: 20px;
- }
- .entry-header {
- margin-bottom: 20px;
- }
- .entry-title {
- font-size: 36px;
- line-height: 1.125em;
- }
- .entry-title a {
- color: #000;
- }
- .entry-title a:hover,
- .entry-title a:active {
- color: #F35029;
- }
- .entry-meta {
- color: #999;
- font-size: 14px;
- line-height: 2em;
- }
- .entry-meta a {
- color: #F35029;
- display: inline-block;
- }
- .entry-meta a:hover,
- .entry-meta a:active {
- color: #555;
- }
- .entry-tags a:before {
- content: "#";
- }
- .entry-meta > span:after {
- color: #CCC;
- content: "/";
- padding: 0 10px;
- }
- .entry-meta > span:last-child:after {
- content: "";
- display: none;
- }
- .page-content,
- .entry-content,
- .entry-summary,
- .comment-content {
- margin: 0;
- }
- .page-content p,
- .entry-content p,
- .entry-summary p,
- .comment-content p,
- .entry-content > *:last-child,
- .comment-content > *:last-child {
- margin-bottom: 20px;
- }
- .entry-content h5,
- .comment-content h5 {
- font-family: "Rubik", "Helvetica Neue", sans-serif;
- font-weight: 600;
- letter-spacing: 0;
- text-transform: none;
- }
- .entry-content h6,
- .comment-content h6 {
- font-family: "Rubik", "Helvetica Neue", sans-serif;
- font-weight: 400;
- letter-spacing: 0;
- text-transform: none;
- }
- .entry-content a,
- .comment-content a {
- color: #F35029;
- text-decoration: underline;
- }
- .entry-content a:hover,
- .entry-content a:active,
- .comment-content a:hover,
- .comment-content a:active {
- color: #000;
- text-decoration: underline;
- }
- .entry-content address,
- .comment-content address {
- font-family: "Libre Baskerville", Georgia, serif;
- font-style: normal;
- }
- .entry-content blockquote,
- .comment-content blockquote {
- border-left: 6px solid #F35029;
- font-family: "Libre Baskerville", Georgia, serif;
- font-style: italic;
- font-size: 18px;
- line-height: 1.825em;
- margin: 0 0 0 -40px;
- padding-left: 40px;
- }
- .entry-content blockquote blockquote,
- .comment-content blockquote blockquote {
- margin-left: 0;
- }
- .entry-content q,
- .comment-content q {
- border-left: 6px solid #F35029;
- font-family: "Libre Baskerville", Georgia, serif;
- font-style: italic;
- font-size: 18px;
- line-height: 1.825em;
- margin: 0;
- padding-left: 20px;
- }
- .entry-content cite,
- .comment-content cite {
- font-family: "Libre Baskerville", Georgia, serif;
- font-style: italic;
- }
- .entry-content table th,
- .entry-content table tr,
- .entry-content table td,
- .comment-content th,
- .comment-content tr,
- .comment-content td {
- padding: 10px;
- text-align: left;
- }
- .entry-content thead th,
- .comment-content thead th {
- font-family: "Libre Baskerville", Georgia, serif;
- font-weight: 400;
- font-size: 14px;
- }
- .entry-content tbody th,
- .entry-content tbody tr,
- .entry-content tbody td,
- .comment-content th,
- .comment-content tr,
- .comment-content td {
- border: 1px solid #999;
- word-break: break-word;
- }
- .page-links {
- clear: both;
- margin: 0 0 1.5em;
- word-spacing: .5em;
- }
- .page-links a {
- border: 2px solid #000;
- display: inline-block;
- margin: 0 0 10px;
- padding: 2px 7px;
- text-decoration: none;
- }
- .page-links a:hover {
- background: #000;
- color: #FFF;
- text-decoration: none;
- }
- .page-links strong {
- font-size: 15px;
- font-weight: 600;
- letter-spacing: .125em;
- text-transform: uppercase;
- }
- /*--------------------------------------------------------------*/
- /* !## Featured Project */
- /*--------------------------------------------------------------*/
- .site-feature {
- margin-bottom: 30px;
- position: relative;
- }
- .site-feature img {
- display: block;
- }
- .site-feature .post-hero-image {
- margin-bottom: 0;
- }
- .site-feature .entry-header {
- background: #555;
- margin-bottom: 0;
- padding: 30px;
- position: relative;
- width: 100%;
- }
- .site-feature .entry-header .entry-title {
- font-size: 24px;
- }
- .site-feature .entry-header a,
- .site-feature .entry-header .entry-summary,
- .site-feature .entry-header .entry-meta,
- .site-feature .entry-header .entry-meta a,
- .site-feature .entry-header .entry-title a,
- .site-feature .entry-header .entry-categories:after {
- color: #FFF;
- }
- .site-feature .entry-header .entry-meta a:hover,
- .site-feature .entry-header .entry-meta a:active {
- color: #FFF;
- text-decoration: underline;
- }
- /* Large Screen Styles */
- @media screen and (min-width: 881px) {
- .site-feature {
- margin-bottom: 60px;
- }
- .site-feature img {
- -webkit-transition: all 0.2s ease;
- -moz-transition: all 0.2s ease;
- transition: all 0.2s ease;
- }
- .site-feature:hover img {
- opacity: 0.5;
- }
- .site-feature .entry-image-link {
- background: #000;
- }
- .site-feature .entry-header {
- padding: 2em;
- text-shadow: 1px 0px 3px rgba(0,0,0,.4);
- }
- .site-feature .entry-header .entry-title {
- font-size: 36px;
- }
- .site-feature .has-thumbnail .entry-header {
- background: transparent;
- bottom: 0;
- left: 0;
- padding: 0 0 2em 2em;
- position: absolute;
- width: 50%;
- }
- }
- /*--------------------------------------------------------------*/
- /* !## Author Meta */
- /*--------------------------------------------------------------*/
- .author-meta,
- .entry-author {
- border-top: 3px solid #000;
- clear: both;
- padding: 20px 0;
- }
- .entry-author:before,
- .entry-author:after {
- content: "";
- display: table;
- table-layout: fixed;
- }
- .entry-author:after {
- clear: both;
- }
- .author-box {
- float: right;
- position: relative;
- width: 100%;
- }
- .author-avatar {
- float: right;
- margin: 0 0 20px 20px;
- }
- .author-description {
- padding-right: 33%;
- }
- .author-box h3 {
- clear: none;
- font-family: "Rubik", "Helvetica Neue", sans-serif;
- font-weight: 600;
- margin: 0;
- }
- .author-bio,
- .author-heading {
- float: left;
- width: 66%;
- }
- /* Large Screen Styles */
- @media screen and (min-width: 881px) {
- .author-meta,
- .entry-author {
- padding: 60px 0;
- }
- .author-information {
- display: table;
- min-height: 111px;
- }
- .author-box {
- float: right;
- position: relative;
- width: calc(66.666%);
- }
- .author-avatar {
- margin: 0;
- }
- .author-avatar .avatar {
- position: absolute;
- right: calc(100% + 40px);
- width: 111px;
- }
- .author-bio,
- .author-heading {
- float: none;
- margin-left: auto;
- margin-right: auto;
- }
- .entry-author .author-avatar {
- display: none; /* Temporary fix */
- }
- }
- /*--------------------------------------------------------------*/
- /* !## Single Post */
- /*--------------------------------------------------------------*/
- .single #page .site-main {
- border-top: 3px solid #000;
- padding: 20px 0 0;
- }
- .single-post #page .site-main {
- margin-top: -3px;
- }
- .single .post-hero-image {
- margin-bottom: 20px;
- }
- .single .hentry .entry-header {
- margin: 0 0 20px;
- }
- .single .hentry .entry-title {
- font-size: 28px;
- line-height: 1.25;
- margin-bottom: 10px;
- }
- .single .entry-footer .entry-meta {
- margin-bottom: 20px;
- }
- /* Large Screens */
- @media screen and (min-width: 881px) {
- .single #page .site-main {
- padding: 50px 0 0;
- }
- .single .post-hero-image {
- margin-bottom: 50px;
- }
- .single .hentry .entry-header {
- float: right;
- margin: 0 0 50px;
- width: 100%;
- position: relative;
- }
- .single .entry-header .entry-meta {
- float: right;
- width: calc(66.666%);
- }
- .single .hentry .entry-title {
- font-size: 36px;
- margin-bottom: 10px;
- margin-left: calc(33.333%);
- }
- .single .hentry .entry-content {
- float: right;
- margin-bottom: 20px;
- width: calc(66.666%);
- }
- .single .hentry .entry-footer {
- float: right;
- margin-bottom: 50px;
- width: calc(66.666%);
- }
- .single .entry-footer .entry-meta {
- margin-bottom: 30px;
- }
- }
- /*--------------------------------------------------------------*/
- /* !## Single Jetpack Portfolio */
- /*--------------------------------------------------------------*/
- .single-jetpack-portfolio #page .site-main {
- border-top: 0;
- padding-top: 0;
- }
- .single-jetpack-portfolio .hentry {
- padding-top: 30px;
- }
- .single-jetpack-portfolio .has-post-thumbnail {
- padding-top: 0;
- }
- /* Large Screens */
- @media screen and (min-width: 881px) {
- .single-jetpack-portfolio .hentry {
- padding-top: 50px;
- }
- .single-jetpack-portfolio .hentry .entry-header,
- .single-jetpack-portfolio .hentry .entry-content,
- .single-jetpack-portfolio .hentry .entry-footer {
- float: none;
- margin: 0 15% 50px;
- width: auto;
- }
- .single-jetpack-portfolio .hentry .entry-title {
- margin: auto;
- }
- .single-jetpack-portfolio .entry-header .entry-meta {
- float: inherit;
- width: auto;
- }
- .single-jetpack-portfolio .has-post-thumbnail {
- padding-top: 0;
- }
- }
- /*--------------------------------------------------------------*/
- /* !## Page */
- /*--------------------------------------------------------------*/
- .page .page {
- border-top: 3px solid #000;
- padding: 50px 0;
- }
- .page .page .entry-footer .entry-meta {
- margin-bottom: 20px;
- }
- .page .page .entry-title {
- font-size: 28px;
- line-height: 1.25;
- margin-bottom: 10px;
- }
- /* Large Screens */
- @media screen and (min-width: 881px) {
- .page .page {
- padding: 50px 15%;
- }
- .page .page .entry-title {
- font-size: 36px;
- }
- .page .page .entry-footer .entry-meta {
- margin-bottom: 30px;
- }
- }
- /*--------------------------------------------------------------*/
- /* !## Archive & Search */
- /*--------------------------------------------------------------*/
- .archive .page-header,
- .search .page-header {
- border-top: 3px solid #000;
- padding: 60px 0;
- text-align: center;
- }
- .archive .page-header .page-title,
- .search .page-header .page-title {
- border: 2px solid #000;
- display: inline-block;
- font-family: "Rubik", "Helvetica Neue", sans-serif;
- font-size: 18px;
- font-weight: 400;
- margin-bottom: 0;
- padding: 4px 8px;
- }
- .archive .taxonomy-description,
- .search .taxonomy-description {
- color: #999;
- font-size: 14px;
- padding: 20px 30px 0;
- }
- .archive .page-header p,
- .search .page-header p {
- margin-bottom: 0;
- }
- /* Large Screens */
- @media screen and (min-width: 881px) {
- .archive .page-header,
- .search .page-header {
- text-align: left;
- }
- .archive .page-header .page-title,
- .search .page-header .page-title {
- display: inline-block;
- margin-bottom: 0;
- vertical-align: middle;
- }
- .archive .taxonomy-description,
- .search .taxonomy-description {
- display: inline-block;
- vertical-align: middle;
- width: 66.666%;
- padding-top: 0;
- }
- }
- /*--------------------------------------------------------------*/
- /* !## Masonry */
- /*--------------------------------------------------------------*/
- .card {
- background: transparent;
- display: inline-block;
- margin: 0 -2px;
- padding-bottom: 30px;
- width: 100%;
- word-wrap: break-word;
- vertical-align: top;
- -ms-transition: background-color 0.2s ease;
- -webkit-transition: background-color 0.2s ease;
- transition: background-color 0.2s ease;
- }
- .js .infinite-scroll .card {
- display: inherit;
- float: left;
- margin: 0;
- opacity: 0;
- vertical-align: inherit;
- }
- .card .entry-image-section {
- border-top: 3px solid #000;
- padding-top: 30px;
- }
- .card .entry-image {
- padding: 0;
- }
- .card .entry-header {
- border-top: 3px solid #000;
- padding-top: 20px;
- margin-bottom: 20px;
- -ms-transition: border-color 0.2s ease;
- -webkit-transition: border-color 0.2s ease;
- transition: border-color 0.2s ease;
- }
- .card.type-jetpack-portfolio .entry-header {
- margin-bottom: 10px;
- }
- .card .entry-title {
- font-size: 24px;
- line-height: 1.2125em;
- margin-bottom: 0;
- }
- .card.type-jetpack-portfolio .entry-title {
- font-size: 18px;
- text-align: center;
- }
- .card .entry-title a {
- border-bottom: 2px solid transparent;
- display: inline;
- text-decoration: none;
- }
- .card .entry-title a:hover {
- border-bottom-color: #F35029;
- }
- .card.has-post-thumbnail .entry-header {
- border-top: none;
- padding-top: 0;
- }
- .card .entry-content {
- font-size: 18px;
- line-height: 1.45em;
- -ms-transition: color 0.2s ease;
- -webkit-transition: color 0.2s ease;
- transition: color 0.2s ease;
- }
- .card .entry-meta,
- .card .entry-meta > span:after,
- .card:hover .sd-rating h3.sd-title {
- -ms-transition: color 0.2s ease;
- -webkit-transition: color 0.2s ease;
- transition: color 0.2s ease;
- }
- .card.type-jetpack-portfolio .entry-meta {
- text-align: center;
- }
- /* Breakpoint for small screens */
- @media screen and (max-width: 639px) {
- .card[style] {
- padding-bottom: 20px;
- /* Override Masonry width */
- width: 100% !important;
- }
- .card[style]:hover {
- background: inherit !important;
- color: inherit !important;
- }
- .card:hover .entry-meta > span:after,
- .card:hover a,
- .card:hover a:active,
- .card:hover a:hover {
- color: inherit !important;
- }
- .card .entry-image img {
- opacity: 1;
- -webkit-transition: opacity 0.2s ease;
- -moz-transition: opacity 0.2s ease;
- transition: opacity 0.2s ease;
- }
- .card .entry-image:hover img {
- opacity: 0.5;
- }
- }
- /* Break point for 2 column grid */
- @media screen and (min-width: 640px) {
- .card,
- .grid-sizer {
- width: calc(50%);
- }
- .card {
- padding: 30px;
- }
- .card:hover {
- color: #FFF;
- background-color: #F35029;
- }
- .card:hover a,
- .card:hover a:active,
- .card:hover a:hover,
- .card:hover .entry-meta,
- .card:hover .entry-meta > span:after,
- .card:hover .sd-rating h3.sd-title {
- color: #FFF;
- }
- .card:hover .entry-header {
- border-color: #FFF;
- }
- .card:hover .entry-title a {
- border-bottom-color: transparent;
- }
- .card:hover .entry-title a:hover,
- .card .entry-title a:hover {
- border-bottom-color: #FFF;
- text-decoration: none;
- }
- .card .entry-image-section {
- border-top: none;
- padding-top: 0;
- }
- .card:last-of-type {
- border-bottom: none;
- }
- }
- /* Break point for 3 column grid */
- @media screen and (min-width: 960px) {
- .card,
- .grid-sizer {
- width: calc(33.333%);
- }
- }
- /*--------------------------------------------------------------*/
- /* !## Infinite Scroll */
- /*--------------------------------------------------------------*/
- #infinite-wrap {
- margin: 0;
- padding-bottom: 120px;
- width: 100%;
- }
- .infinite-scroll .pagination {
- display: none;
- }
- #infinite-handle {
- bottom: 0;
- clear: both;
- display: table;
- margin-bottom: 50px;
- position: absolute;
- text-align: center;
- width: 100%;
- }
- #infinite-handle span {
- background: transparent !important;
- border-radius: inherit !important;
- color: inherit !important;
- font-size: inherit !important;
- padding: inherit !important;
- }
- #infinite-handle span button {
- background: #FFF;
- border: 2px solid #000;
- color: #F35029;
- font-family: "Rubik", "Helvetica Neue", sans-serif;
- font-weight: 600;
- line-height: 1;
- padding: 12px 0;
- width: 33%;
- }
- #infinite-handle span button:hover,
- #infinite-handle span button:active,
- #infinite-handle span button:focus {
- background: #000;
- border: 2px solid #000;
- color: #FFF;
- font-family: "Rubik", "Helvetica Neue", sans-serif;
- font-weight: 600;
- line-height: 1;
- padding: 12px 0;
- }
- .infinite-loader {
- bottom: 0;
- left: 50%;
- margin: 0 0 50px -17px;
- position: absolute;
- width: 35px;
- }
- /* Globally hidden elements when Infinite Scroll is supported and in use. */
- .infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
- .infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
- display: none;
- }
- /* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
- .infinity-end.neverending .site-footer {
- display: block;
- }
- .infinite-scroll .pagination {
- display: none;
- }
- /* Small Styles */
- @media screen and (max-width: 360px) {
- #infinite-wrap[style],
- #infinite-handle span button {
- width: 100% !important;
- }
- }
- /* Break point for 2 and 3 column grid */
- @media screen and (min-width: 640px) {
- #infinite-wrap,
- #infinite-wrap[style] {
- margin: -30px -30px 0;
- padding-bottom: 120px;
- width: calc(100% + 60px) !important;
- }
- }
- /*--------------------------------------------------------------
- * !## Jetpack Contact Forms */
- /*--------------------------------------------------------------*/
- .site-content .contact-form input[type="radio"],
- .site-content .contact-form input[type="checkbox"] {
- margin-bottom: 6px;
- margin-right: .3em;
- vertical-align: middle;
- }
- .site-content .contact-form label.checkbox,
- .site-content .contact-form label.checkbox-multiple,
- .site-content .contact-form label.radio {
- font-weight: normal;
- font-style: normal;
- margin-bottom: .375em;
- float: none;
- }
- .site-content .contact-form label {
- margin-bottom: .375em;
- }
- .site-content .contact-form > div {
- margin-bottom: .75em;
- }
- .site-content .contact-form textarea,
- .site-content .contact-form input[type='text'],
- .site-content .contact-form input[type='email'],
- .site-content .contact-form input[type='url'],
- .site-content .contact-form select {
- margin-bottom: .375em;
- max-width: 100%;
- }
- /*--------------------------------------------------------------*/
- /* !## 404 Error */
- /*--------------------------------------------------------------*/
- .error404 .not-found,
- .blog .not-found,
- .page-template-portfolio-page .not-found,
- .search-no-results .page-content {
- border-top: 3px solid #000;
- padding: 20px 0;
- }
- .error404 .page-title {
- font-size: 30px;
- line-height: 1.33em;
- }
- .error404 .page-header p {
- margin-bottom: 0;
- }
- /* Large Screens */
- @media screen and (min-width: 881px) {
- .error404 .not-found,
- .blog .not-found,
- .page-template-portfolio-page .not-found,
- .search-no-results .page-content {
- padding: 50px 12.5%;
- }
- }
- /*--------------------------------------------------------------*/
- /* !## Post Format: Aside */
- /*--------------------------------------------------------------*/
- .blog .format-aside .entry-title,
- .archive .format-aside .entry-title,
- .search .format-aside .entry-title {
- display: none;
- }
- /*--------------------------------------------------------------*/
- /* !# Media */
- /*--------------------------------------------------------------*/
- .page-content .wp-smiley,
- .entry-content .wp-smiley,
- .comment-content .wp-smiley {
- border: none;
- margin-bottom: 0;
- margin-top: 0;
- padding: 0;
- }
- /* Make sure embeds and iframes fit their containers. */
- embed,
- iframe,
- object {
- max-width: 100%;
- }
- /*--------------------------------------------------------------*/
- /* !## Captions */
- /*--------------------------------------------------------------*/
- .wp-caption {
- margin: 0 0 1.5em;
- max-width: 100%;
- position: relative;
- }
- .wp-caption.alignleft {
- margin-right: 1.5em;
- }
- .wp-caption.alignright {
- margin-left: 1.5em;
- }
- .wp-caption img[class*="wp-image-"] {
- display: block;
- margin-left: auto;
- margin-right: auto;
- }
- .wp-caption .wp-caption-text {
- color: #999;
- font-size: 14px;
- line-height: 1.525em;
- margin: 5px 0;
- position: relative;
- text-align: center;
- }
- .wp-caption.aligncenter {
- margin: 0 auto 1.5em;
- }
- /* Large Screen Styles */
- @media screen and (min-width: 881px) {
- /* Only posts with non-floating/fullwidth images can have hanging captions */
- .post .wp-caption.aligncenter .wp-caption-text,
- .post .wp-caption.alignnone .wp-caption-text {
- margin: 0;
- position: absolute;
- text-align: right;
- top: 0;
- right: calc(100% + 40px);
- width: 50%;
- }
- .post .wp-caption.aligncenter .wp-caption-text {
- margin: 5px 0;
- position: relative;
- text-align: center;
- top: 0;
- right: inherit;
- width: 100%;
- }
- }
- /*--------------------------------------------------------------*/
- /* !## Galleries */
- /*--------------------------------------------------------------*/
- .gallery {
- margin: 0 -2% 1.5em;
- }
- .gallery-item {
- display: inline-block;
- margin: 0 0 1.5em;
- padding: 0 1%;
- text-align: center;
- vertical-align: top;
- width: 100%;
- }
- .gallery-item a {
- display: block;
- line-height: 0;
- }
- .gallery-columns-2 .gallery-item {
- max-width: 50%;
- }
- .gallery-columns-3 .gallery-item {
- max-width: 33.33%;
- }
- .gallery-columns-4 .gallery-item {
- max-width: 25%;
- }
- .gallery-columns-5 .gallery-item {
- max-width: 20%;
- }
- .gallery-columns-6 .gallery-item {
- max-width: 16.66%;
- }
- .gallery-columns-7 .gallery-item {
- max-width: 14.28%;
- }
- .gallery-columns-8 .gallery-item {
- max-width: 12.5%;
- }
- .gallery-columns-9 .gallery-item {
- max-width: 11.11%;
- }
- .gallery-caption {
- color: #999;
- display: block;
- font-size: 14px;
- line-height: 1.525em;
- margin: 5px 0;
- padding: 0 15px;
- }
- /*--------------------------------------------------------------*/
- /* !# Pagination */
- /*--------------------------------------------------------------*/
- .comment-navigation .nav-previous,
- .post-navigation .nav-previous {
- display: inline-block;
- }
- .comment-navigation .nav-previous a .meta-nav:before,
- .post-navigation .nav-previous a .meta-nav:before {
- content: "\00AB\00a0";
- }
- .comment-navigation .nav-next,
- .post-navigation .nav-next {
- display: inline-block;
- }
- .comment-navigation .nav-next a .meta-nav:after,
- .post-navigation .nav-next a .meta-nav:after {
- content: "\00a0\00BB";
- }
- .post-navigation .nav-previous:after,
- .post-navigation .nav-next:after,
- .comment-navigation .nav-previous:after,
- .comment-navigation .nav-next:after {
- color: #CCC;
- content: "/";
- padding: 0 10px;
- }
- .post-navigation .nav-previous:last-child:after,
- .post-navigation .nav-next:last-child:after,
- .comment-navigation .nav-previous:last-child:after,
- .comment-navigation .nav-next:last-child:after {
- content: "";
- display: none;
- }
- .post-navigation .meta-nav-title {
- display: none;
- }
- /* Archive navigation */
- .posts-navigation {
- bottom: 0;
- clear: both;
- display: table;
- margin: 50px 0;
- padding: 0;
- position: absolute;
- width: 100%;
- }
- .posts-navigation .nav-previous {
- float: left;
- }
- .posts-navigation .nav-previous a:before {
- content: "\00AB\00a0";
- display: inline;
- font-family: 'FontAwesome';
- font-size: 20px;
- font-weight: normal;
- line-height: 0;
- margin: 0 0 0 5px;
- speak: none;
- vertical-align: baseline;
- }
- .posts-navigation .nav-next a:after {
- content: "\00a0\00BB";
- display: inline;
- font-family: 'FontAwesome';
- font-size: 20px;
- font-weight: normal;
- line-height: 0;
- margin: 0 0 0 5px;
- speak: none;
- vertical-align: baseline;
- }
- .posts-navigation .nav-next {
- float: right;
- }
- .posts-navigation a {
- border: 2px solid #000;
- color: #F35029;
- display: inline-block;
- font-size: 16px;
- font-weight: 500;
- line-height: 1;
- margin: 0;
- padding: 12px 40px;
- }
- .posts-navigation a:hover,
- .posts-navigation a:active {
- background: #000;
- color: #FFF;
- text-decoration: none;
- }
- /* Single navigation */
- .single .site-main .post-navigation {
- border-top: 3px solid #000;
- display: block;
- padding-top: 20px;
- }
- .single .entry-header .post-navigation {
- display: none;
- }
- .site-main .comment-navigation,
- .site-main .post-navigation {
- clear: both;
- font-family: "Libre Baskerville", Georgia, serif;
- font-size: 16px;
- font-style: italic;
- line-height: 2em;
- margin: 0 0 20px;
- overflow: hidden;
- text-align: center;
- width: 100%;
- }
- .site-main .comment-navigation {
- margin-bottom: 0;
- }
- .site-main .comment-navigation .nav-links {
- border-top: 3px solid #000;
- padding: 30px 0;
- }
- /* Responsive Navigation */
- @media screen and (min-width: 881px) {
- .site-main .post-navigation {
- text-align: right;
- }
- .site-main > .post-navigation .nav-previous:after,
- .site-main > .post-navigation .nav-next:after {
- content: "";
- display: none;
- }
- .single .site-main > .post-navigation {
- border-top: 1px solid #CCC;
- margin: 0;
- padding: 30px 0;
- text-align: center;
- width: 100%;
- }
- .single .site-main > .post-navigation a {
- display: block;
- }
- .site-main > .post-navigation .nav-previous {
- display: inline-block;
- float: left;
- padding-right: 20px;
- text-align: right;
- width: 50%;
- vertical-align: middle;
- }
- .site-main > .post-navigation .nav-next {
- display: inline-block;
- float: right;
- padding-left: 20px;
- text-align: left;
- width: 50%;
- vertical-align: middle;
- }
- .site-main .post-navigation .meta-nav-title {
- display: block;
- font-style: normal;
- font-family: "Rubik", "Helvetica Neue", sans-serif;
- font-weight: 400;
- line-height: 1.5em;
- margin-bottom: 5px;
- }
- .single .entry-header .post-navigation {
- bottom: 0;
- border-top: none;
- display: block;
- margin-bottom: 0;
- padding-top: 0;
- position: absolute;
- width: calc(33.333% - 40px);
- }
- .site-main .comment-navigation {
- text-align: center;
- }
- .site-main .comment-navigation {
- float: right;
- }
- .site-main .comment-navigation .nav-links {
- border-top: 1px solid #CCC;
- }
- }
- /*--------------------------------------------------------------*/
- /* !# Comments */
- /*--------------------------------------------------------------*/
- .comments-area {
- border-top: 6px solid #000;
- padding: 20px 0;
- }
- .comment-navigation {
- width: 100%;
- }
- .comments-title {
- margin-bottom: 20px;
- }
- .comment-list {
- float: right;
- list-style: none;
- margin-bottom: 0;
- margin-left: 0;
- padding-left: 0;
- width: 100%;
- }
- .comment,
- .pingback {
- clear: both;
- position: relative;
- }
- .comment .comment-body,
- .pingback .comment-body {
- border-top: 3px solid #000;
- padding: 20px 0;
- }
- .bypostauthor .fn:before {
- color: #F35029;
- content: '\f040';
- display: inline-block;
- font-family: 'FontAwesome';
- font-size: 15px;
- margin-right: 10px;
- }
- .pingback .comment-body {
- color: #999;
- }
- .comment .comment-meta {
- display: table;
- margin-bottom: 20px;
- width: 100%;
- }
- .comment .avatar {
- position: absolute;
- left: 0;
- width: 50px;
- }
- .comment .comment-author {
- display: inline-block;
- clear: both;
- font-size: 20px;
- line-height: 1em;
- width: 100%;
- }
- .comment .comment-author a {
- color: #F35029;
- }
- .comment .comment-author .fn {
- margin-left: 70px;
- }
- .comment .comment-metadata {
- display: inline-block;
- float: left;
- font-size: 14px;
- margin-left: 70px;
- text-align: left;
- }
- .comment-metadata a {
- color: #999;
- }
- .comment .says {
- display: none;
- }
- .comment .reply {
- font-size: 14px;
- text-align: right;
- }
- .comment .comment-reply-link {
- color: #F35029;
- }
- .comment .comment-reply-link:before {
- content: '\f106';
- display: inline-block;
- font-family: 'FontAwesome';
- font-weight: normal;
- margin: 0 5px 0 0;
- speak: none;
- vertical-align: baseline;
- }
- .comment-content a {
- word-wrap: break-word;
- }
- .comment .children {
- list-style: none;
- margin-left: 1em;
- }
- .comment .children .comment-body {
- border-top: 1px solid #CCC;
- padding: 20px 0;
- }
- .comment .children .comment:last-child {
- padding-bottom: 0;
- }
- /* Responsive Comments */
- @media screen and (min-width: 881px) {
- .comments-area {
- padding: 50px 11.111% 50px 33.333%;
- }
- .comments-title {
- margin-bottom: 50px;
- }
- .comment-list {
- border-bottom: none;
- }
- .comment-list > .comment,
- .comment-list > .pingback {
- padding-top: 0;
- }
- .comment-list > .comment:first-child,
- .comment-list > .pingback:first-child {
- padding-top: 0;
- }
- .bypostauthor .fn:before {
- font-size: 20px;
- }
- .comment .comment-body,
- .pingback .comment-body {
- border-top: 1px solid #CCC;
- padding: 30px 0;
- }
- .comment .comment-meta {
- display: table;
- width: 100%;
- }
- .comment .comment-author {
- float: left;
- margin-left: inherit;
- width: auto;
- }
- .comment .comment-author .fn {
- margin-left: 0;
- }
- .comment .comment-metadata {
- float: right;
- margin-left: 0;
- text-align: right;
- width: auto;
- }
- .comment .avatar {
- margin-right: 0;
- left: inherit;
- right: calc(100% + 40px);
- width: 111px;
- }
- .comment .comment-content {
- margin-left: 0;
- }
- .no-comments {
- color: #999;
- clear: both;
- font-family: "Libre Baskerville", Georgia, serif;
- font-style: italic;
- margin-bottom: 10px;
- text-align: center;
- }
- .comment .children {
- margin-left: 2em;
- }
- .comment .children .comment-body {
- padding: 30px 0;
- }
- }
- /*--------------------------------------------------------------*/
- /* !## Comment Respond */
- /*--------------------------------------------------------------*/
- .single div#respond,
- .comment-respond {
- border-top: 3px solid #000;
- clear: both;
- padding-top: 30px;
- }
- .single div#respond:first-child,
- .comment-respond:first-child {
- border-top: none;
- padding-top: 0;
- }
- .comment-respond p {
- margin-bottom: .75em;
- }
- .comment-respond p label {
- display: block;
- font-weight: 600;
- padding: 12px 0;
- text-align: left;
- vertical-align: middle;
- width: 100%;
- }
- .comment-respond p .subscribe-label {
- font-weight: 400;
- }
- #respond p.comment-subscription-form label,
- #respond p.post-subscription-form label {
- font-weight: 400;
- padding-left: 10px;
- right: inherit;
- text-align: left;
- width: 75%;
- }
- .comment-respond p input,
- .comment-respond p textarea {
- border: 2px solid #000;
- padding: 12px 15px;
- width: 100%;
- }
- .comment-respond p.form-submit {
- text-align: right;
- width: 100%;
- }
- .comment-respond p.form-submit input {
- width: 200px;
- }
- /* Inline comment form */
- .single .comment div#respond,
- .comment .comment-respond {
- border-top: none;
- margin-bottom: 30px;
- margin-top: -47px !important;
- padding-top: 1em;
- position: relative;
- width: 100%;
- }
- .comment .comment-reply-title {
- border-top: none;
- padding-top: 0;
- }
- .comment .comment-reply-title small {
- position: absolute;
- top: 0;
- right: 0;
- }
- .comment .comment-reply-title a {
- color: red;
- background: #FFF;
- font-family: "Rubik", "Helvetica Neue", sans-serif;
- font-size: 14px;
- font-weight: 400;
- padding: 5px 0;
- }
- .comment .comment-reply-title a:before {
- content: '\00D7';
- display: inline-block;
- font-family: 'FontAwesome';
- font-weight: normal;
- margin: 0 5px 0 0;
- speak: none;
- vertical-align: baseline;
- }
- .comment .comment-respond p input,
- .comment .comment-respond p textarea {
- width: 100%;
- }
- /* Responsive Comments */
- @media screen and (min-width: 881px) {
- .single div#respond,
- .comment-respond {
- border-top: 1px solid #CCC;
- padding-top: 60px;
- }
- .single div#respond:first-child,
- .comment-respond:first-child {
- border-top: none;
- padding-top: 0;
- }
- .comment-form {
- position: relative;
- }
- .comment-respond p {
- display: table;
- margin-bottom: 1.5em;
- overflow: visible;
- width: 100%;
- }
- .comment-respond p label {
- display: table-cell;
- position: absolute;
- right: calc(100% + 40px);
- text-align: right;
- width: 160px;
- }
- .comment-respond p input,
- .comment-respond p textarea {
- display: table-cell;
- vertical-align: middle;
- }
- /* Inline comment form */
- .single .comment div#respond,
- .comment .comment-respond {
- margin-top: -58px !important;
- border-top: 1px solid transparent;
- }
- .comment .comment-respond p.form-submit {
- padding-left: 50%;
- width: 100%;
- }
- }
- /*--------------------------------------------------------------*/
- /* !# Widgets */
- /*--------------------------------------------------------------*/
- .widget {
- margin: 0 0 30px;
- width: 100%;
- }
- .widget-title {
- margin-bottom: 20px;
- font-family: "Rubik", "Helvetica Neue", sans-serif;
- font-size: 16px;
- font-weight: 600;
- line-height: 1.25em;
- }
- /* Make sure select elements fit in widgets. */
- .widget select {
- max-width: 100%;
- width: 100%;
- }
- .widget ul {
- margin: 0;
- padding: 0;
- list-style: none;
- }
- .widget li > a {
- display: block;
- }
- .widget li > .children {
- margin-left: 1.5em;
- list-style: disc;
- }
- /* Search */
- .widget_search .search-field {
- margin-bottom: 1.5em;
- width: 90%;
- }
- .widget_search .search-submit{
- padding: 12px 40px;
- }
- /* Calendar */
- .widget_calendar {
- text-align: left;
- }
- .widget_calendar caption {
- font-size: 16px;
- font-weight: 600;
- line-height: 1.25em;
- margin-bottom: 20px;
- text-align: left;
- }
- .widget_calendar table a {
- color: #F35029;
- }
- .widget_calendar table a:hover,
- .widget_calendar table a:active {
- color: #000;
- }
- .widget_calendar table th,
- .widget_calendar table tr,
- .widget_calendar table td {
- padding: 10px;
- text-align: center;
- }
- .widget_calendar thead th {
- font-family: "Libre Baskerville", Georgia, serif;
- font-weight: 600;
- font-size: 14px;
- }
- .widget_calendar tbody {
- color: #999;
- }
- .widget_calendar tbody th,
- .widget_calendar tbody tr,
- .widget_calendar tbody td {
- border: 1px solid #999;
- }
- .widget_calendar tfoot a {
- font-weight: 400;
- }
- .widget_calendar #prev {
- text-align: left;
- }
- .widget_calendar #next {
- text-align: right;
- }
- /* Tags */
- .widget_tag_cloud a[style] {
- border: 2px solid #000;
- color: #F35029;
- display: inline-block;
- font-size: 16px !important;
- line-height: 1.2125em !important;
- margin: 0 0 4px !important;
- padding: 8px 13px !important;
- }
- .widget_tag_cloud a[style]:hover,
- .widget_tag_cloud a[style]:active {
- background: #000;
- color: #FFF;
- text-decoration: none;
- }
- /* Categories & Archives */
- .widget_links li > a,
- .widget_categories li > a,
- .widget_archive li > a {
- display: inline-block;
- }
- .widget_links li,
- .widget_categories li,
- .widget_archive li {
- color: #AAA;
- }
- /* Recent Posts */
- .widget_recent_entries li {
- margin-bottom: 10px;
- }
- .widget_recent_entries li .post-date {
- color: #AAA;
- font-size: 14px;
- }
- /* Recent Comments */
- .widget_recent_comments li > a {
- display: inline-block;
- }
- /* RSS */
- .widget_rss li {
- margin-bottom: 20px;
- }
- .widget_rss li .rsswidget {
- font-family: "Libre Baskerville", Georgia, serif;
- font-size: 24px;
- font-weight: 700;
- }
- .widget_rss li .rss-date {
- display: block;
- margin-bottom: .5em;
- }
- .widget_rss li cite {
- display: block;
- text-align: right;
- }
- .widget_rss li cite:before {
- content: "\2014\00a0";
- }
- /* Goodreads */
- .widget_goodreads div[class^="gr_custom_title"] {
- font-family: "Libre Baskerville", Georgia, serif;
- }
- .widget_goodreads div[class^="gr_custom_each_container"] {
- display: table;
- margin-bottom: 20px;
- width: 100%;
- }
- .widget_goodreads div[class^="gr_custom_each_container"] > div {
- float: left;
- width: 80%;
- }
- .widget_goodreads div[class^="gr_custom_each_container"] > div[class^="gr_custom_book_container"] {
- float: left;
- width: 20%;
- }
- /* Large Screen Styles */
- @media screen and (min-width: 881px) {
- .widget {
- display: inline-block;
- margin: 0 0 60px 30px;
- width: calc(49.66% - 30px);
- vertical-align: top;
- }
- .widget:nth-child(2n) {
- margin-right: 0;
- }
- }
- /*--------------------------------------------------------------*/
- /* !## Secondary */
- /*--------------------------------------------------------------*/
- #secondary {
- border-top: 6px solid #000;
- padding-top: 36px;
- width: 100%;
- }
- /* Large Screen Styles */
- @media screen and (min-width: 881px) {
- #secondary {
- float: right;
- width: calc(66.666% + 30px);
- }
- }
- /*--------------------------------------------------------------*/
- /* !# Footer */
- /*--------------------------------------------------------------*/
- .site-footer {
- border-top: 6px solid #000;
- clear: left;
- }
- .site-footer .site-info {
- font-family: "Libre Baskerville", Georgia, serif;
- font-size: 16px;
- line-height: 1.66em;
- font-style: italic;
- padding: 30px 0;
- width: 100%;
- }
- /* Large Screen Styles */
- @media screen and (min-width: 881px) {
- .site-footer .site-info {
- padding: 80px 0;
- }
- }
- /*--------------------------------------------------------------*/
- /* !# Extras */
- /*--------------------------------------------------------------*/
- /* WP Stats */
- img#wpstats {
- display: none !important
- }
|