123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952 |
- /*
- Theme Name: Affinity
- Theme URI: http://wordpress.com/themes/affinity/
- Author: Automattic
- Author URI: http://wordpress.com/themes/
- Description: Affinity is a classic one-page theme designed with weddings and family announcements in mind.
- Version: 1.1.3-wpcom
- License: GNU General Public License v2 or later
- License URI: http://www.gnu.org/licenses/gpl-2.0.html
- Text Domain: affinity
- Tags: blog, wedding, contemporary, elegant, modern, sophisticated, brown, dark, custom-background, custom-colors, custom-header, featured-image-header, featured-images, fixed-menu, flexible-header, full-width-template, infinite-scroll, rtl-language-support, site-logo, theme-options, threaded-comments, translation-ready, responsive-layout, one-column, two-columns, right-sidebar, one-page
- Status: inactive
- 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.
- Affinity 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
- # Accessibility
- # Alignments
- # Clearings
- # Typography
- # Forms
- # Buttons
- # Formatting
- # Lists
- # Tables
- # Navigation
- # Links
- # Layout
- ## Posts
- ## Pages
- # Comments
- # Widgets
- # Infinite scroll
- # Media
- ## Galleries
- --------------------------------------------------------------*/
- /*--------------------------------------------------------------
- # 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, #infinite-handle span,
- input,
- optgroup,
- select,
- textarea {
- color: inherit;
- font: inherit;
- margin: 0;
- }
- button, #infinite-handle span {
- overflow: visible;
- }
- button, #infinite-handle span,
- select {
- text-transform: none;
- }
- button, #infinite-handle span,
- html input[type="button"],
- input[type="reset"],
- input[type="submit"] {
- -webkit-appearance: button;
- cursor: pointer;
- }
- button[disabled], #infinite-handle span[disabled],
- html input[disabled] {
- cursor: default;
- }
- button::-moz-focus-inner, #infinite-handle span::-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-search-cancel-button,
- input[type="search"]::-webkit-search-decoration {
- -webkit-appearance: none;
- }
- fieldset {
- border: 1px solid silver;
- 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;
- }
- /*--------------------------------------------------------------
- # Accessibility
- --------------------------------------------------------------*/
- /* Text meant only for screen readers. */
- .screen-reader-text {
- clip: rect(1px, 1px, 1px, 1px);
- position: absolute !important;
- height: 1px;
- width: 1px;
- overflow: hidden;
- }
- .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: #5e5853;
- display: block;
- font-size: 13.2px;
- font-size: 0.825rem;
- 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: 0.4em 1.6em 0.4em 0;
- }
- .alignright {
- display: inline;
- float: right;
- margin: 0.4em 0 0.4em 1.6em;
- }
- .aligncenter {
- clear: both;
- display: block;
- 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;
- }
- /*--------------------------------------------------------------
- # Typography
- --------------------------------------------------------------*/
- body,
- button,
- #infinite-handle span,
- input,
- select,
- textarea {
- color: #1e1c1b;
- font-family: Lora, Baskerville, Georgia, Times, serif;
- font-size: 16px;
- font-size: 1rem;
- line-height: 1.6;
- }
- h1, h2, h3, h4, h5, h6 {
- clear: both;
- font-family: Lora, Baskerville, Georgia, Times, serif;
- font-style: italic;
- font-weight: normal;
- margin-top: 0.2em;
- margin-bottom: 0.2em;
- }
- h1 {
- font-size: 34px;
- font-size: 2.125rem;
- }
- h2 {
- font-size: 29.2px;
- font-size: 1.825rem;
- }
- h3 {
- font-size: 26px;
- font-size: 1.625rem;
- }
- h4 {
- font-size: 18px;
- font-size: 1.125rem;
- margin-top: 0.4em;
- margin-bottom: 0.4em;
- }
- h5 {
- font-size: 16px;
- font-size: 1rem;
- margin-top: 0.8em;
- margin-bottom: 0.8em;
- }
- h6 {
- font-size: 14px;
- font-size: 0.875rem;
- margin-top: 0.8em;
- margin-bottom: 0.8em;
- }
- p {
- margin-top: 0;
- margin-bottom: 1.6em;
- }
- dfn, cite, em, i {
- font-style: italic;
- }
- blockquote {
- color: #99908a;
- font-size: 18px;
- font-size: 1.125rem;
- font-style: italic;
- margin: 0;
- border-top: 3px solid #e8e9ea;
- padding-top: .8em;
- border-bottom: 1px solid #e8e9ea;
- margin-bottom: .8em;
- padding-bottom: .8em;
- }
- blockquote.aligncenter {
- text-align: center;
- }
- blockquote p:last-of-type {
- margin-bottom: 0;
- }
- blockquote blockquote {
- border-top: 0;
- border-bottom: 0;
- padding-left: .8em;
- padding-bottom: 0;
- }
- blockquote cite {
- display: block;
- text-align: right;
- font-style: normal;
- font-size: 16px;
- font-size: 1rem;
- }
- address {
- margin: 0 0 1.6em;
- }
- pre {
- background: #e8e9ea;
- font-family: "Courier 10 Pitch", Courier, monospace;
- font-size: 13.2px;
- font-size: 0.825rem;
- 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: 13.2px;
- font-size: 0.825rem;
- }
- abbr, acronym {
- border-bottom: 1px dotted #666666;
- cursor: help;
- }
- mark, ins {
- background: #fff9c0;
- text-decoration: none;
- }
- big {
- font-size: 125%;
- }
- blockquote, q {
- quotes: "" "";
- }
- blockquote:before, blockquote:after, q:before, q:after {
- content: "";
- }
- /*--------------------------------------------------------------
- # Forms
- --------------------------------------------------------------*/
- input[type="text"],
- input[type="email"],
- input[type="url"],
- input[type="password"],
- input[type="search"],
- input[type="number"],
- input[type="tel"],
- input[type="range"],
- input[type="date"],
- input[type="month"],
- input[type="week"],
- input[type="time"],
- input[type="datetime"],
- input[type="datetime-local"],
- input[type="color"],
- textarea {
- color: #99908a;
- border: 3px solid #e8e9ea;
- border-radius: 3px;
- margin-bottom: 1.6em;
- transition: 0.3s;
- }
- input[type="text"]:focus,
- input[type="email"]:focus,
- input[type="url"]:focus,
- input[type="password"]:focus,
- input[type="search"]:focus,
- input[type="number"]:focus,
- input[type="tel"]:focus,
- input[type="range"]:focus,
- input[type="date"]:focus,
- input[type="month"]:focus,
- input[type="week"]:focus,
- input[type="time"]:focus,
- input[type="datetime"]:focus,
- input[type="datetime-local"]:focus,
- input[type="color"]:focus,
- textarea:focus {
- color: #5e5853;
- border-color: #99908a;
- outline: none;
- }
- select {
- border: 1px solid #e8e9ea;
- }
- input[type="text"],
- input[type="email"],
- input[type="url"],
- input[type="password"],
- input[type="search"],
- input[type="number"],
- input[type="tel"],
- input[type="range"],
- input[type="date"],
- input[type="month"],
- input[type="week"],
- input[type="time"],
- input[type="datetime"],
- input[type="datetime-local"],
- input[type="color"] {
- padding: .5em;
- }
- textarea {
- padding-left: .4em;
- width: 100%;
- }
- /* Jetpack Comment Form */
- .affinity-front-page .contact-form {
- margin: 0 auto;
- }
- .contact-form > div {
- position: relative;
- }
- .contact-form label.text,
- .contact-form label.email,
- .contact-form label.name,
- .contact-form label.url,
- .contact-form label.textarea {
- display: inline-block;
- margin-bottom: 0;
- }
- .contact-form input[type="text"],
- .contact-form input[type="email"],
- .contact-form input[type="url"],
- .contact-form input[type="name"],
- .contact-form textarea {
- margin-left: auto;
- margin-right: auto;
- padding-left: 28%;
- width: 100% !important;
- max-width: 100% !important;
- }
- .contact-form textarea {
- padding: 2.5em .5em .5em;
- }
- .post-password-form input[type="submit"] {
- top: -2px;
- }
- body .contact-form input[type="radio"],
- body .contact-form input[type="checkbox"] {
- margin-bottom: 6px;
- margin-right: .3em;
- vertical-align: middle;
- }
- body .contact-form label.checkbox,
- body .contact-form label.checkbox-multiple,
- body .contact-form label.radio {
- font-weight: normal;
- margin-bottom: .2em;
- }
- body .contact-form label.checkbox {
- margin-bottom: .8em;
- }
- body .contact-form textarea,
- body .contact-form input[type='text'],
- body .contact-form input[type='email'],
- body .contact-form input[type='url'],
- body .contact-form select {
- margin-bottom: .4em;
- }
- body .contact-form > div {
- margin-bottom: .8em;
- }
- /*--------------------------------------------------------------
- # Forms
- --------------------------------------------------------------*/
- .button,
- button,
- #infinite-handle span,
- input[type="button"],
- input[type="reset"],
- input[type="submit"] {
- border: 2px solid white;
- outline: 4px solid #99908a;
- background: #99908a;
- color: white;
- font-size: 13.2px;
- font-size: 0.825rem;
- font-family: Raleway, "Helvetica Neue", sans-serif;
- text-transform: uppercase;
- letter-spacing: 1px;
- font-weight: bold;
- line-height: 1;
- margin-right: .8em;
- padding: 0.8em 1.2em;
- position: relative;
- left: 4px;
- transition: 0.3s;
- text-decoration: none;
- }
- .button:hover, .button:active, .button:focus,
- button:hover,
- #infinite-handle span:hover,
- button:active,
- #infinite-handle span:active,
- button:focus,
- #infinite-handle span:focus,
- input[type="button"]:hover,
- input[type="button"]:active,
- input[type="button"]:focus,
- input[type="reset"]:hover,
- input[type="reset"]:active,
- input[type="reset"]:focus,
- input[type="submit"]:hover,
- input[type="submit"]:active,
- input[type="submit"]:focus {
- outline-color: #5e5853;
- background-color: #5e5853;
- color: white;
- }
- .button {
- display: inline-block;
- }
- .button:hover, .button:focus, .button:active {
- outline: 4px solid #5e5853;
- }
- .mejs-controls .mejs-play button, .mejs-controls .mejs-play #infinite-handle span, #infinite-handle .mejs-controls .mejs-play span,
- .mejs-controls .mejs-mute button,
- .mejs-controls .mejs-mute #infinite-handle span,
- #infinite-handle .mejs-controls .mejs-mute span {
- outline: none;
- }
- /*--------------------------------------------------------------
- # Formattings
- --------------------------------------------------------------*/
- hr {
- background-color: #e8e9ea;
- border: 0;
- height: 1px;
- margin: 0.8em auto;
- max-width: 66%;
- }
- .sep {
- margin: 0 0.8em;
- }
- /*--------------------------------------------------------------
- # Lists
- --------------------------------------------------------------*/
- ul, ol {
- margin: 0 0 1.6em 3.2em;
- padding-left: 0;
- }
- ul {
- list-style: disc;
- }
- ol {
- list-style: decimal;
- }
- li > ul,
- li > ol {
- margin-bottom: 0;
- margin-left: 1.6em;
- padding-left: 0;
- }
- dt {
- font-weight: bold;
- }
- dd {
- margin: 0 1.6em 1.6em;
- }
- /*--------------------------------------------------------------
- # Tables
- --------------------------------------------------------------*/
- table {
- margin: 0 0 1.6em;
- width: 100%;
- }
- td,
- th {
- padding: 0.4em 0.2em;
- border-bottom: 1px solid #e8e9ea;
- }
- th {
- font-weight: bold;
- border-bottom-width: 3px;
- text-align: left;
- }
- caption {
- font-style: italic;
- font-weight: bold;
- }
- /*--------------------------------------------------------------
- # Links
- --------------------------------------------------------------*/
- a {
- color: #99908a;
- transition: 0.3s;
- }
- a:visited {
- color: #99908a;
- }
- a:hover, a:focus, a:active {
- color: #383e44;
- }
- a:focus {
- outline: thin dotted;
- }
- a:hover, a:active {
- outline: 0;
- }
- /*--------------------------------------------------------------
- # Links
- --------------------------------------------------------------*/
- a {
- color: #99908a;
- transition: 0.3s;
- }
- a:visited {
- color: #99908a;
- }
- a:hover, a:focus, a:active {
- color: #383e44;
- }
- a:focus {
- outline: thin dotted;
- }
- a:hover, a:active {
- outline: 0;
- }
- /*--------------------------------------------------------------
- # Layout
- --------------------------------------------------------------*/
- 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: white;
- /* Fallback for when there is no custom background color defined. */
- color: #5e5853;
- }
- .content-area {
- margin: 0 auto;
- width: 100%;
- }
- .affinity-front-page .content-area {
- float: none;
- margin: 0 auto;
- width: 100%;
- }
- .site-main {
- margin: 0 auto;
- }
- .affinity-front-page .site-main {
- margin: 0 auto;
- }
- .site-content {
- margin: 0 auto;
- width: 90%;
- }
- .affinity-front-page .site-content {
- width: 100%;
- }
- .affinity-front-page .site-content .entry-header,
- .affinity-front-page .site-content .entry-content,
- .affinity-front-page .site-content .entry-footer {
- margin: 0 auto;
- width: 90%;
- }
- .site-content .widget-area {
- overflow: hidden;
- width: 100%;
- }
- .site-footer {
- clear: both;
- }
- .footer-widgets .widget-areas {
- margin: 0 auto;
- width: 90%;
- }
- /*--------------------------------------------------------------
- ## Posts
- --------------------------------------------------------------*/
- .sticky {
- display: block;
- }
- .hentry {
- content: "";
- display: table;
- table-layout: fixed;
- border-bottom: 1px solid #e8e9ea;
- margin: 0 0 3.2em;
- padding: 0 0 3.2em;
- width: 100%;
- }
- .single .hentry {
- border-bottom: 0;
- margin-bottom: 0;
- }
- .entry-summary {
- color: #99908a;
- font-size: 18px;
- font-size: 1.125rem;
- font-style: italic;
- margin-bottom: .8em;
- width: 100%;
- clear: both;
- }
- .entry-summary p:last-of-type {
- margin-bottom: 0;
- }
- .search-results .entry-summary {
- color: inherit;
- font-size: 16px;
- font-size: 1rem;
- font-style: normal;
- margin-bottom: auto;
- width: auto;
- clear: none;
- }
- .byline,
- .updated:not(.published) {
- display: none;
- }
- .single .byline,
- .group-blog .byline {
- display: block;
- }
- .byline .author {
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- width: 100%;
- }
- .page-content,
- .entry-content,
- .entry-summary {
- margin: 0 0 1.6em;
- }
- .page-content a,
- .entry-content a,
- .entry-summary a {
- word-wrap: break-word;
- overflow-wrap: break-word;
- }
- .entry-header {
- margin-bottom: 1.6em;
- }
- .entry-title {
- margin: 0;
- color: #5e5853;
- }
- .entry-title a,
- .entry-title a:visited {
- color: #5e5853;
- opacity: 1;
- text-decoration: none;
- transition: 0.3s;
- }
- .entry-title a:hover,
- .entry-title a:visited:hover {
- opacity: 0.75;
- }
- .site-header .entry-title {
- color: white;
- display: none;
- font-weight: normal;
- position: absolute;
- top: 50%;
- left: 50%;
- text-align: center;
- -webkit-transform: translate(-50%, -50%);
- transform: translate(-50%, -50%);
- }
- .entry-meta {
- color: #383e44;
- font-family: Raleway, "Helvetica Neue", sans-serif;
- font-weight: bold;
- text-transform: uppercase;
- letter-spacing: 1px;
- margin-bottom: 1.6em;
- clear: left;
- font-size: 13.2px;
- font-size: 0.825rem;
- }
- .entry-meta span {
- clear: both;
- display: block;
- margin-bottom: .4em;
- }
- .entry-meta a {
- text-decoration: none;
- }
- .entry-footer {
- clear: both;
- color: #383e44;
- font-size: 13.2px;
- font-size: 0.825rem;
- }
- .entry-footer a {
- text-decoration: none;
- }
- .entry-footer span {
- display: block;
- margin-bottom: .4em;
- }
- .featured-image {
- display: inline-block;
- margin-bottom: 1.6em;
- position: relative;
- }
- .featured-image img {
- display: block;
- opacity: 0.9;
- transition: 0.25s opacity;
- }
- .featured-image a:before {
- border: 0.8em solid transparent;
- box-shadow: inset 0 0 0 1px #e8e9ea;
- content: "";
- display: inline-block;
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- z-index: 1;
- }
- .featured-image a:hover img {
- opacity: 1;
- }
- .page-links {
- border-top: 1px solid #e8e9ea;
- border-bottom: 1px solid #e8e9ea;
- color: #5e5853;
- padding: 0.8em 0;
- margin: 0.8em 0;
- font-weight: bold;
- word-spacing: 5px;
- width: 100%;
- }
- .page-links a {
- text-decoration: none;
- }
- /*--------------------------------------------------------------
- ## Pages
- --------------------------------------------------------------*/
- .page-links {
- clear: both;
- margin: 0 0 1.5em;
- }
- .page-title {
- line-height: 1.2;
- margin-top: 0;
- margin-bottom: .8em;
- }
- .page-header {
- margin-top: 0;
- margin-bottom: 3.2em;
- padding-bottom: .8em;
- border-bottom: 1px solid #e8e9ea;
- }
- .taxonomy-description {
- font-style: italic;
- }
- .page .entry-content {
- font-size: 18px;
- font-size: 1.125rem;
- }
- .page .hentry {
- border-bottom: 0;
- padding-bottom: 0;
- }
- /*--------------------------------------------------------------
- ## Front Page
- --------------------------------------------------------------*/
- .custom-header.in-panel {
- position: relative;
- }
- .custom-header-image {
- background-size: 100% auto;
- background-position: top left;
- width: 100%;
- height: 0;
- margin: 0;
- padding: 0;
- }
- .affinity-front-page .entry-title {
- margin: 0.8em 0;
- text-align: center;
- }
- .affinity-front-page .hentry {
- border-bottom: 0;
- margin-bottom: 0;
- padding-bottom: 0;
- position: relative;
- }
- .affinity-front-page .hentry .entry-content {
- font-size: 18px;
- font-size: 1.125rem;
- margin-bottom: 1.6em;
- }
- .affinity-front-page .edit-link {
- display: block;
- margin-left: auto;
- margin-right: auto;
- width: 90%;
- }
- .affinity-front-page .hentry:first-of-type .edit-link {
- width: 100%;
- }
- .panel-navigation {
- display: none;
- list-style: none;
- margin: 0;
- padding: 0;
- position: fixed;
- right: 1.6em;
- top: 50%;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- .panel-navigation .sep {
- font-family: Arial, Helvetica, sans-serif;
- margin: 0;
- }
- .panel-navigation li {
- margin: 0;
- padding: 0;
- }
- .panel-navigation a,
- .panel-navigation a:visited {
- font-size: 26px;
- font-size: 1.625rem;
- line-height: 1;
- margin-top: 0;
- margin-bottom: 0;
- position: relative;
- color: #e0e1e3;
- display: inline-block;
- text-decoration: none;
- transition: 0.2s;
- }
- .panel-navigation a.active, .panel-navigation a:hover,
- .panel-navigation a:visited.active,
- .panel-navigation a:visited:hover {
- color: rgba(224, 225, 227, 0.2);
- }
- .panel-navigation a .hidden,
- .panel-navigation a:visited .hidden {
- font-size: 14px;
- font-size: 0.875rem;
- font-family: Raleway, "Helvetica Neue", sans-serif;
- text-transform: uppercase;
- font-weight: bold;
- letter-spacing: 1px;
- display: inline-block;
- line-height: 1;
- position: absolute;
- padding: 0.8em 3.2em 0.8em 0.8em;
- top: -.3em;
- -webkit-transform: translateX(6em);
- transform: translateX(6em);
- visibility: hidden;
- outline: none;
- opacity: 0;
- transition: 0.3s;
- white-space: nowrap;
- }
- .panel-navigation a:hover .hidden, .panel-navigation a:active .hidden, .panel-navigation a:focus .hidden,
- .panel-navigation a:visited:hover .hidden,
- .panel-navigation a:visited:active .hidden,
- .panel-navigation a:visited:focus .hidden {
- color: #e0e1e3;
- font-weight: bold;
- visibility: visible;
- -webkit-transform: translateX(2.4em);
- transform: translateX(2.4em);
- opacity: 1;
- outline: none;
- right: 100%;
- }
- /*--------------------------------------------------------------
- ## Site Header
- --------------------------------------------------------------*/
- .site-header {
- position: relative;
- }
- .custom-header {
- background-color: #1e1c1b;
- position: relative;
- z-index: -1;
- width: 100%;
- min-height: 46px;
- }
- .custom-header.in-panel {
- background-color: transparent;
- }
- .no-custom-header .custom-header {
- display: none;
- }
- .header-wrapper {
- width: 100%;
- padding: 0.8em 5%;
- }
- .site-branding {
- clear: none;
- }
- .site-description-wrapper {
- margin: 0 auto 1.6em;
- width: 90%;
- }
- .site-logo,
- .custom-logo {
- display: block;
- margin: 0 auto 1.6em;
- }
- .site-description {
- color: #99908a;
- margin: 0;
- text-align: center;
- font-family: Lora, Baskerville, Georgia, Times, serif;
- font-style: italic;
- font-weight: normal;
- font-size: 18px;
- font-size: 1.125rem;
- padding-bottom: .8em;
- border-bottom: 1px solid #e8e9ea;
- }
- .site-description a {
- color: #99908a;
- text-decoration: none;
- }
- .site-description a:hover {
- color: #99908a;
- }
- .site-title {
- font-family: Raleway, "Helvetica Neue", sans-serif;
- font-style: normal;
- font-weight: bold;
- font-size: 13.2px;
- font-size: 0.825rem;
- text-transform: uppercase;
- letter-spacing: 1px;
- margin: 0 30% 0 0;
- position: absolute;
- left: 1.6em;
- top: 1.6em;
- }
- .site-title a {
- color: #e8e9ea;
- text-decoration: none;
- }
- /* No custom header */
- .no-custom-header .header-wrapper {
- background-color: #1e1c1b;
- padding-bottom: 0;
- margin-bottom: 1.6em;
- }
- .no-custom-header .site-branding {
- float: left;
- padding-top: .4em;
- }
- .no-custom-header .site-title {
- position: relative;
- top: auto;
- left: auto;
- }
- /*--------------------------------------------------------------
- ## Site Footer
- --------------------------------------------------------------*/
- .site-footer {
- color: #99908a;
- font-size: 13.2px;
- font-size: 0.825rem;
- margin: 0 auto;
- }
- .site-footer a,
- .site-footer a:visited {
- text-decoration: none;
- }
- .site-footer a:hover,
- .site-footer a:visited:hover {
- color: rgba(153, 144, 138, 0.5);
- }
- .site-footer .sep {
- color: #5e5853;
- font-family: Arial, Helvetica, sans-serif;
- margin: 0;
- clear: both;
- display: block;
- visibility: hidden;
- height: 0;
- width: 100%;
- }
- .site-info {
- padding: 1.6em;
- font-family: Raleway, "Helvetica Neue", sans-serif;
- font-weight: bold;
- text-align: center;
- text-transform: uppercase;
- letter-spacing: 1px;
- }
- /*--------------------------------------------------------------
- ## Social Links
- --------------------------------------------------------------*/
- .jetpack-social-navigation {
- background-color: #262422;
- clear: both;
- display: block;
- margin: 0;
- padding: 2em 1.6em;
- text-align: center;
- width: 100%;
- }
- .jetpack-social-navigation ul {
- margin-bottom: 0 !important;
- }
- .jetpack-social-navigation li {
- margin: 0.2em 0 !important;
- }
- .jetpack-social-navigation a,
- .jetpack-social-navigation a:visited {
- font-size: 24px;
- margin: 0.4em 0.1em;
- color: #262422;
- }
- .jetpack-social-navigation a:before,
- .jetpack-social-navigation a:visited:before {
- background-color: rgba(232, 233, 234, 0.3);
- border-radius: 100%;
- width: 40px !important;
- height: 40px !important;
- line-height: 40px !important;
- transition: 0.3s;
- }
- .jetpack-social-navigation a:hover:before,
- .jetpack-social-navigation a:visited:hover:before {
- background-color: #e8e9ea;
- color: #1e1c1b;
- }
- /*--------------------------------------------------------------
- # Navigation
- --------------------------------------------------------------*/
- .main-navigation {
- display: block;
- font-family: Raleway, "Helvetica Neue", sans-serif;
- font-size: 13.2px;
- font-size: 0.825rem;
- font-weight: bold;
- text-transform: uppercase;
- letter-spacing: 1px;
- width: 100%;
- }
- .main-navigation a,
- .main-navigation a:visited {
- color: #99908a;
- display: block;
- text-decoration: none;
- transition: 0.3s;
- }
- .main-navigation ul {
- display: none;
- margin: 0 0 1.6em;
- list-style: none;
- }
- .main-navigation ul li {
- list-style: none;
- }
- .main-navigation ul li a {
- display: block;
- margin-top: .8em;
- padding-top: .8em;
- border-top: 1px solid #e8e9ea;
- }
- .main-navigation ul li:first-of-type a {
- padding-top: 0;
- border-top: 0;
- }
- .main-navigation ul ul {
- margin-bottom: 0;
- }
- .main-navigation ul ul li:first-of-type a {
- margin-top: .8em;
- padding-top: .8em;
- border-top: 1px solid #e8e9ea;
- }
- .main-navigation ul ul a {
- padding-left: 1.6em;
- }
- .main-navigation ul ul ul a {
- padding-left: 3.2em;
- }
- .main-navigation ul ul ul ul a {
- padding-left: 4.8em;
- }
- .main-navigation ul ul ul ul ul a {
- padding-left: 6.4em;
- }
- /* Small menu. */
- .menu-toggle,
- .main-navigation.toggled ul {
- display: block;
- }
- .main-navigation.toggled > div {
- clear: both;
- background-color: white;
- margin-left: -5%;
- margin-right: -5%;
- padding-top: .4em;
- padding-bottom: .4em;
- }
- .main-navigation.toggled > div > ul > li {
- padding-left: 1.6em;
- padding-right: 1.6em;
- }
- .menu-toggle {
- background-color: transparent;
- margin-right: 0;
- outline: 0;
- position: absolute;
- top: .8em;
- left: 100%;
- -webkit-transform: translateX(-100%) translateX(-1.6em);
- transform: translateX(-100%) translateX(-1.6em);
- }
- .menu-toggle:hover, .menu-toggle:active, .menu-toggle:focus {
- background: transparent;
- }
- .no-custom-header .menu-toggle {
- position: relative;
- top: auto;
- left: auto;
- margin-bottom: 1.6em;
- float: right;
- -webkit-transform: none;
- transform: none;
- }
- .comment-navigation,
- .posts-navigation,
- .post-navigation {
- border-top: 3px solid #e8e9ea;
- border-bottom: 1px solid #e8e9ea;
- padding: 0.8em 0;
- font-size: 18px;
- font-size: 1.125rem;
- font-style: italic;
- }
- .site-main .comment-navigation, .site-main
- .posts-navigation, .site-main
- .post-navigation {
- margin: 0 0 1.6em;
- overflow: hidden;
- }
- .comment-navigation .nav-previous,
- .posts-navigation .nav-previous,
- .post-navigation .nav-previous {
- border-bottom: 1px solid #e8e9ea;
- margin-bottom: .8em;
- padding-bottom: .8em;
- width: 100%;
- }
- .comment-navigation .nav-next,
- .posts-navigation .nav-next,
- .post-navigation .nav-next {
- text-align: right;
- width: 100%;
- }
- .comment-navigation a,
- .comment-navigation a:visited,
- .posts-navigation a,
- .posts-navigation a:visited,
- .post-navigation a,
- .post-navigation a:visited {
- color: #383e44;
- text-decoration: none;
- }
- .comment-navigation a:hover,
- .comment-navigation a:visited:hover,
- .posts-navigation a:hover,
- .posts-navigation a:visited:hover,
- .post-navigation a:hover,
- .post-navigation a:visited:hover {
- color: #99908a;
- }
- .post-navigation .title {
- display: block;
- clear: both;
- color: #99908a;
- font-style: normal;
- font-family: Raleway, "Helvetica Neue", sans-serif;
- text-transform: uppercase;
- letter-spacing: 1px;
- font-weight: bold;
- font-size: 13.2px;
- font-size: 0.825rem;
- }
- /*--------------------------------------------------------------
- # Comments
- --------------------------------------------------------------*/
- .comment-content a {
- word-wrap: break-word;
- }
- .bypostauthor {
- display: block;
- }
- .comment-list {
- list-style: none;
- margin: 0 0 3.2em;
- padding: 0;
- }
- .comment-list .children {
- list-style: none;
- }
- .comment-body {
- content: "";
- display: table;
- table-layout: fixed;
- border-top: 1px solid #e8e9ea;
- margin-top: 1.6em;
- padding-top: 1.6em;
- width: 100%;
- }
- .comments-title,
- .comment-reply-title {
- font-size: 26px;
- font-size: 1.625rem;
- }
- .comments-title a,
- .comments-title a:visited,
- .comment-reply-title a,
- .comment-reply-title a:visited {
- float: right;
- }
- .comment-author .fn {
- color: #5e5853;
- display: inline-block;
- margin-bottom: .4em;
- font-size: 16px;
- font-size: 1rem;
- font-family: Lora, Baskerville, Georgia, Times, serif;
- font-weight: bold;
- font-style: italic;
- text-transform: none;
- letter-spacing: 0;
- }
- .comment-author .fn a,
- .comment-author .fn a:visited {
- color: #5e5853;
- }
- .comment-author .avatar {
- float: left;
- margin-right: 1.6em;
- }
- .comment-meta a {
- text-decoration: none;
- }
- .comment-metadata {
- color: #99908a;
- font-size: 13.2px;
- font-size: 0.825rem;
- font-family: Raleway, "Helvetica Neue", sans-serif;
- font-weight: bold;
- margin-bottom: 2.4em;
- text-transform: uppercase;
- letter-spacing: 1px;
- }
- .comment-metadata a,
- .comment-metadata a:visited {
- display: inline-block;
- text-decoration: none;
- }
- .comment-metadata .edit-link:before {
- content: "\2666";
- margin-left: .4em;
- margin-right: .8em;
- }
- .comment-metadata a:first-of-type {
- display: inline-block;
- margin-bottom: .8em;
- }
- .pingback .edit-link,
- .trackback .edit-link {
- float: right;
- }
- .no-comments {
- color: #383e44;
- font-style: italic;
- display: block;
- text-align: center;
- width: 100%;
- }
- .says {
- display: none;
- }
- .comment-content {
- clear: both;
- }
- .comment-respond {
- border-top: 1px solid #e8e9ea;
- margin: 0 0 3.2em;
- padding-top: 1.6em;
- }
- .comment-form label {
- display: inline-block;
- width: 109px;
- }
- .comment-form-author,
- .comment-form-email,
- .comment-form-url,
- .comment-form-comment {
- margin: 0 0 1.6em;
- position: relative;
- }
- .comment-form-author label,
- .comment-form-email label,
- .comment-form-url label,
- .comment-form-comment label {
- font-size: 14px;
- font-size: 0.875rem;
- font-family: Raleway, "Helvetica Neue", sans-serif;
- font-weight: bold;
- letter-spacing: 1px;
- padding: 0.65em 0.8em;
- position: absolute;
- left: 0;
- top: 2px;
- text-transform: uppercase;
- }
- .comment-form-author input,
- .comment-form-author textarea,
- .comment-form-email input,
- .comment-form-email textarea,
- .comment-form-url input,
- .comment-form-url textarea,
- .comment-form-comment input,
- .comment-form-comment textarea {
- clear: both;
- padding-left: 6.4em;
- width: 100%;
- }
- .comment-form-author textarea,
- .comment-form-email textarea,
- .comment-form-url textarea,
- .comment-form-comment textarea {
- padding: 2em 0.8em 0.375em;
- }
- /*--------------------------------------------------------------
- 17.10 Guestbook Template
- --------------------------------------------------------------*/
- .page-template-guestbook .hentry {
- margin-bottom: 1.6em;
- }
- .page-template-guestbook .comments-area {
- border: 0;
- padding: 0;
- }
- .page-template-guestbook .comment-list {
- list-style: none;
- margin: 0;
- padding: 0;
- }
- .page-template-guestbook .comment-list .children {
- padding: 0;
- margin: 0;
- }
- .page-template-guestbook .comments-title {
- display: none;
- }
- .page-template-guestbook .reply {
- display: none;
- }
- .page-template-guestbook .comments-area .comment {
- float: left;
- padding-bottom: 1.6em;
- width: 100%;
- }
- .page-template-guestbook .comments-area .comment:nth-of-type(2n) {
- margin-right: 0;
- }
- .page-template-guestbook .content-area {
- float: none;
- width: 100%;
- }
- .page-template-guestbook .content-area .hentry,
- .page-template-guestbook .comment-respond {
- margin-left: auto;
- margin-right: auto;
- }
- .page-template-guestbook .comment-author .avatar {
- float: left;
- margin-right: .8em;
- }
- .page-template-guestbook .comment-edit-link:before {
- color: #e8e9ea;
- content: "\2666";
- margin-left: .4em;
- margin-right: .8em;
- display: inline-block;
- }
- /*--------------------------------------------------------------
- # Widgets
- --------------------------------------------------------------*/
- .widget {
- margin: 0 0 2.4em;
- /* Make sure select elements fit in widgets. */
- }
- .widget select {
- max-width: 100%;
- }
- .widget a {
- text-decoration: none;
- }
- .widget div > ul, .widget > ul {
- margin: 0;
- padding: 0;
- }
- .widget div > ul li, .widget > ul li {
- list-style: none;
- border-top: 1px solid #e8e9ea;
- margin: 0.8em 0 0;
- padding: 0.8em 0 0;
- }
- .widget div > ul > li:first-of-type, .widget > ul > li:first-of-type {
- border-top: 0;
- margin-top: 0;
- padding-top: 0;
- }
- .widget div > ol, .widget > ol {
- list-style-position: inside;
- margin: 0;
- padding: 0;
- }
- .widget div > ol li, .widget > ol li {
- border-top: 1px solid #e8e9ea;
- margin: 0.8em 0 0;
- padding: 0.8em 0 0;
- }
- .widget div > ol > li:first-of-type, .widget > ol > li:first-of-type {
- border-top: 0;
- margin-top: 0;
- padding-top: 0;
- }
- .widget-title {
- font-size: 16px;
- font-size: 1rem;
- font-family: Raleway, "Helvetica Neue", sans-serif;
- font-style: normal;
- margin-top: 0;
- margin-bottom: .8em;
- padding-bottom: .8em;
- border-bottom: 1px solid #e8e9ea;
- text-align: center;
- font-weight: bold;
- text-transform: uppercase;
- letter-spacing: 1px;
- }
- .widget-title label {
- color: inherit;
- }
- #secondary .widget {
- padding: 1.6em;
- border: 3px solid #f3f3f4;
- font-size: 13.2px;
- font-size: 0.825rem;
- }
- .footer-widgets {
- background-color: #1e1c1b;
- color: #e8e9ea;
- padding: 3.2em 0;
- width: 100%;
- }
- .footer-widgets .widget div ul li, .footer-widgets .widget > ul li {
- border-color: rgba(255, 255, 255, 0.1);
- }
- .footer-widgets .widget_calendar td,
- .footer-widgets .widget_calendar th {
- border-color: rgba(255, 255, 255, 0.1);
- }
- .footer-widgets .widget-title {
- color: #e8e9ea;
- border-color: rgba(255, 255, 255, 0.1);
- }
- .footer-widgets .widget-area {
- float: left;
- width: 100%;
- }
- /* Specific widgets */
- .widget_rss a {
- font-weight: bold;
- }
- .widget_rss .rss-date {
- clear: both;
- display: block;
- font-style: italic;
- margin: 0 0 0.4em;
- }
- .widget_calendar td, .widget_calendar th {
- text-align: center;
- }
- .widget_calendar td#next {
- text-align: right;
- }
- .widget_calendar td#prev {
- text-align: left;
- }
- .widget_search .search-field {
- width: 100%;
- }
- .widget_search .search-submit {
- display: none;
- }
- .textwidget {
- word-wrap: break-word;
- }
- /* Social Media Icons Widget */
- .jetpack_widget_social_icons > ul,
- .widget_wpcom_social_media_icons_widget > ul {
- text-align: center;
- }
- .jetpack_widget_social_icons > ul li,
- .widget_wpcom_social_media_icons_widget > ul li {
- border: 0;
- margin: 0 .2em;
- padding: 0;
- display: inline-block;
- }
- .widget_wpcom_social_media_icons_widget > ul li a:before {
- font-size: 32px;
- margin-right: 0.21875em;
- }
- /*--------------------------------------------------------------
- # Infinite scroll
- --------------------------------------------------------------*/
- /* Globally hidden elements when Infinite Scroll is supported and in use. */
- .infinite-scroll .posts-navigation,
- .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-handle {
- margin: 0 0 3.2em;
- }
- #infinite-handle span {
- display: inline-block;
- -webkit-appearance: inherit;
- margin: 0 auto;
- left: 50%;
- -webkit-transform: translateX(-50%);
- transform: translateX(-50%);
- }
- #infinite-handle span button, #infinite-handle span span {
- border: 0;
- outline: 0;
- }
- .infinite-loader {
- margin-bottom: 3.2em;
- }
- .infinite-loader .spinner {
- margin: 0 auto;
- left: 50%;
- -webkit-transform: translateX(-50%);
- transform: translateX(-50%);
- }
- /*--------------------------------------------------------------
- # Media
- --------------------------------------------------------------*/
- img {
- height: auto;
- /* Make sure images are scaled correctly. */
- max-width: 100%;
- /* Adhere to container width. */
- }
- figure {
- margin: 0 0 1.6em;
- }
- .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%;
- }
- .wp-caption {
- font-size: 13.2px;
- font-size: 0.825rem;
- font-style: italic;
- margin-bottom: 1.6em;
- max-width: 100%;
- }
- .wp-caption img[class*="wp-image-"] {
- display: block;
- margin-left: auto;
- margin-right: auto;
- }
- .wp-caption .wp-caption-text {
- margin: 0.8em 0;
- }
- .wp-caption-text {
- text-align: center;
- }
- /*--------------------------------------------------------------
- ## Galleries
- --------------------------------------------------------------*/
- .gallery {
- margin-bottom: 1.6em;
- }
- .gallery-item {
- display: inline-block;
- text-align: center;
- vertical-align: top;
- padding: .4em;
- width: 100%;
- }
- .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 {
- display: block;
- font-size: 13.2px;
- font-size: 0.825rem;
- }
- /*--------------------------------------------------------------
- # Customizer
- --------------------------------------------------------------*/
- /* Hide this until we're in the Customizer */
- .affinity-panel-title {
- display: none;
- }
- .affinity-customizer.affinity-front-page .affinity-panel {
- /* Colour-code all panels (add 1 to account for #affinity-hero, so 2 is actually panel 1)*/
- }
- .affinity-customizer.affinity-front-page .affinity-panel::after {
- border: 2px dashed;
- bottom: 1.6em;
- content: '';
- display: block;
- left: 1.6em;
- position: absolute;
- right: 1.6em;
- top: 1.6em;
- }
- .affinity-customizer.affinity-front-page .affinity-panel .affinity-panel-title {
- color: #fff;
- display: inline-block;
- font-family: Raleway, "Helvetica Neue", sans-serif;
- font-size: 14px;
- font-size: 0.875rem;
- letter-spacing: 1px;
- padding: 5px 10px;
- position: absolute;
- top: 3.2em;
- right: 3.2em;
- text-transform: uppercase;
- -webkit-transform: translate(3px, -3px);
- transform: translate(3px, -3px);
- font-weight: bold;
- }
- .affinity-customizer.affinity-front-page .affinity-panel:nth-of-type(1)::after {
- display: none;
- }
- .affinity-customizer.affinity-front-page .affinity-panel:nth-of-type(2) .affinity-panel-title {
- background: #a64b55;
- }
- .affinity-customizer.affinity-front-page .affinity-panel:nth-of-type(2)::after {
- border-color: #a64b55;
- color: #a64b55;
- }
- .affinity-customizer.affinity-front-page .affinity-panel:nth-of-type(3) .affinity-panel-title {
- background: #b569a2;
- }
- .affinity-customizer.affinity-front-page .affinity-panel:nth-of-type(3)::after {
- border-color: #b569a2;
- color: #b569a2;
- }
- .affinity-customizer.affinity-front-page .affinity-panel:nth-of-type(4) .affinity-panel-title {
- background: #8f68bd;
- }
- .affinity-customizer.affinity-front-page .affinity-panel:nth-of-type(4)::after {
- border-color: #8f68bd;
- color: #8f68bd;
- }
- .affinity-customizer.affinity-front-page .affinity-panel:nth-of-type(5) .affinity-panel-title {
- background: #575ebd;
- }
- .affinity-customizer.affinity-front-page .affinity-panel:nth-of-type(5)::after {
- border-color: #575ebd;
- color: #575ebd;
- }
- .affinity-customizer.affinity-front-page .affinity-panel:nth-of-type(6) .affinity-panel-title {
- background: #55a1bd;
- }
- .affinity-customizer.affinity-front-page .affinity-panel:nth-of-type(6)::after {
- border-color: #55a1bd;
- color: #55a1bd;
- }
- .affinity-customizer.affinity-front-page .affinity-panel:nth-of-type(7) .affinity-panel-title {
- background: #7dbd8f;
- }
- .affinity-customizer.affinity-front-page .affinity-panel:nth-of-type(7)::after {
- border-color: #7dbd8f;
- color: #7dbd8f;
- }
- .affinity-customizer.affinity-front-page .affinity-panel:nth-of-type(8) .affinity-panel-title {
- background: #c8b247;
- }
- .affinity-customizer.affinity-front-page .affinity-panel:nth-of-type(8)::after {
- border-color: #c8b247;
- color: #c8b247;
- }
- .affinity-customizer.affinity-front-page .affinity-panel:nth-of-type(9) .affinity-panel-title {
- background: #bd7555;
- }
- .affinity-customizer.affinity-front-page .affinity-panel:nth-of-type(9)::after {
- border-color: #bd7555;
- color: #bd7555;
- }
- /* Add a highlight class to improve Customizer behaviour */
- @-webkit-keyframes flash {
- 0%,
- 20%,
- 40%,
- 60%,
- 80%,
- 100% {
- opacity: 1;
- }
- 10%,
- 30%,
- 50%,
- 70%,
- 90% {
- opacity: 0;
- }
- }
- @keyframes flash {
- 0%,
- 20%,
- 40%,
- 60%,
- 80%,
- 100% {
- opacity: 1;
- }
- 10%,
- 30%,
- 50%,
- 70%,
- 90% {
- opacity: 0;
- }
- }
- .affinity-highlight::after {
- -webkit-animation-duration: 2s;
- animation-duration: 2s;
- -webkit-animation-name: flash;
- animation-name: flash;
- -webkit-animation-timing-function: ease-in-out;
- animation-timing-function: ease-in-out;
- -webkit-animation-fill-mode: both;
- animation-fill-mode: both;
- }
- /*--------------------------------------------------------------
- # Media Queries
- --------------------------------------------------------------*/
- @media screen and (max-width: 45.9375em) {
- .contact-form input[type="text"],
- .contact-form input[type="email"],
- .contact-form input[type="url"],
- .contact-form input[type="name"],
- .contact-form textarea {
- padding-left: .5em !important;
- padding-right: .5em !important;
- }
- }
- @media screen and (min-width: 46em) {
- body {
- position: relative;
- }
- .site-footer .sep {
- clear: none;
- display: inline;
- width: auto;
- height: auto;
- visibility: visible;
- margin: 0 0.4em;
- }
- .panel-navigation {
- display: block;
- }
- .site-header {
- margin-bottom: 3.2em;
- overflow: hidden;
- }
- .site-header .entry-title {
- display: block;
- }
- .page .has-post-thumbnail .entry-header .entry-title,
- .page.custom-header-active .entry-header .entry-title {
- display: none;
- }
- .affinity-front-page.page .has-post-thumbnail .entry-header .entry-title,
- .affinity-front-page.page.custom-header-active .entry-header .entry-title {
- display: inherit;
- }
- .affinity-front-page .entry-title {
- margin: 0;
- }
- .affinity-front-page .custom-header .entry-title {
- color: #e8e9ea;
- position: absolute;
- top: 50%;
- left: 50%;
- -webkit-transform: translate(-50%, -50%);
- transform: translate(-50%, -50%);
- z-index: 1;
- }
- .affinity-front-page .hentry .entry-content {
- margin-top: 3.2em;
- margin-bottom: 3.2em;
- }
- .affinity-front-page .edit-link a,
- .affinity-front-page .edit-link a:visited {
- border: 3px solid rgba(232, 233, 234, 0.5);
- color: rgba(232, 233, 234, 0.5);
- display: inline-block;
- font-size: 12.8px;
- font-size: 0.8rem;
- font-family: Raleway, "Helvetica Neue", sans-serif;
- text-transform: uppercase;
- letter-spacing: 1px;
- font-weight: bold;
- text-decoration: none;
- padding: 3px 6px;
- position: absolute;
- top: 1.6em;
- left: 1.6em;
- z-index: 2;
- transition: 0.3s;
- }
- .affinity-front-page .edit-link a:hover,
- .affinity-front-page .edit-link a:visited:hover {
- border-color: #e8e9ea;
- color: #e8e9ea;
- }
- .affinity-front-page .hentry:first-of-type .edit-link a,
- .affinity-front-page .hentry:first-of-type .edit-link a:visited {
- color: inherit;
- border: 0;
- padding: 0;
- position: static;
- top: auto;
- left: auto;
- display: inline-block;
- text-transform: none;
- letter-spacing: 0;
- font-size: 16px;
- font-size: 1rem;
- font-family: Lora, Baskerville, Georgia, Times, serif;
- font-weight: normal;
- margin-bottom: 3.2em;
- }
- .affinity-front-page .custom-header.in-panel {
- background-color: #1e1c1b;
- min-height: 200px;
- }
- .affinity-front-page .no-featured-image .custom-header.in-panel {
- border-top: 1px solid #e8e9ea;
- background-color: transparent;
- min-height: auto;
- padding-top: 3.2em;
- }
- .affinity-front-page .no-featured-image .entry-title {
- color: #5e5853;
- position: relative;
- top: auto;
- left: auto;
- -webkit-transform: none;
- transform: none;
- }
- .affinity-front-page .no-featured-image .edit-link {
- max-width: 716px;
- }
- .affinity-front-page .no-featured-image .edit-link a,
- .affinity-front-page .no-featured-image .edit-link a:visited {
- color: inherit;
- border: 0;
- padding: 0;
- position: static;
- top: auto;
- left: auto;
- display: inline-block;
- text-transform: none;
- letter-spacing: 0;
- font-size: 16px;
- font-size: 1rem;
- font-family: Lora, Baskerville, Georgia, Times, serif;
- font-weight: normal;
- margin-bottom: 3.2em;
- }
- .affinity-front-page .no-featured-image .hentry:first-of-type .edit-link {
- width: 100%;
- }
- h1 {
- font-size: 47.12px;
- font-size: 2.945rem;
- }
- h2 {
- font-size: 42px;
- font-size: 2.625rem;
- }
- h3 {
- font-size: 29.2px;
- font-size: 1.825rem;
- }
- h4 {
- font-size: 26px;
- font-size: 1.625rem;
- }
- h5 {
- font-size: 18px;
- font-size: 1.125rem;
- }
- h6 {
- font-size: 16px;
- font-size: 1rem;
- }
- .entry-title {
- line-height: 1.2;
- font-size: 47.12px;
- font-size: 2.945rem;
- text-align: left;
- }
- .site-description {
- font-size: 32px;
- font-size: 2rem;
- line-height: 1.4;
- color: #e8e9ea;
- border-bottom: 0;
- padding-bottom: 0;
- margin-bottom: 0;
- }
- .site-description a {
- color: #e8e9ea;
- }
- .site-description a:hover {
- color: #e8e9ea;
- }
- .page-title {
- font-size: 29.2px;
- font-size: 1.825rem;
- }
- .entry-summary {
- font-size: 26px;
- font-size: 1.625rem;
- }
- .menu-toggle {
- display: none;
- }
- .header-wrapper {
- min-height: 0;
- position: absolute;
- top: 0;
- left: 0;
- z-index: 1;
- padding-left: 1.6em;
- padding-right: 1.6em;
- }
- .no-custom-header .custom-header {
- display: block;
- }
- .no-custom-header .header-wrapper {
- padding-bottom: .8em;
- }
- .no-custom-header .site-title,
- .site-title {
- text-align: left;
- -webkit-transform: translateY(0);
- transform: translateY(0);
- width: 100%;
- position: relative;
- top: auto;
- left: auto;
- }
- .site-description-wrapper {
- position: absolute;
- top: 50%;
- left: 50%;
- -webkit-transform: translate(-50%, -50%);
- transform: translate(-50%, -50%);
- z-index: 2;
- width: 90%;
- }
- .site-branding {
- max-width: 50%;
- float: left;
- }
- .main-navigation {
- float: right;
- max-width: 50%;
- text-align: right;
- }
- .main-navigation a,
- .main-navigation a:visited {
- margin-top: 0 !important;
- margin-bottom: 1.3em;
- padding-top: 0 !important;
- border-top: 0 !important;
- color: #e8e9ea;
- }
- .main-navigation .current_page_item > a,
- .main-navigation .current-menu-item > a,
- .main-navigation .current_page_ancestor > a,
- .main-navigation .current-menu-ancestor > a {
- color: rgba(232, 233, 234, 0.5);
- }
- .main-navigation.toggled > div {
- clear: none;
- background-color: transparent;
- margin-left: auto;
- margin-right: auto;
- margin-bottom: auto;
- padding-top: 0;
- padding-bottom: 0;
- }
- .main-navigation.toggled > div > ul > li {
- padding-left: 0;
- padding-right: 0;
- }
- .main-navigation ul {
- display: block;
- list-style: none;
- margin: 0 0 -1.3em;
- padding: 0;
- }
- .main-navigation ul ul {
- background-color: white;
- box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.1);
- border: 6px solid white;
- float: left;
- font-family: Lora, Baskerville, Georgia, Times, serif;
- font-weight: normal;
- font-style: italic;
- text-transform: none;
- letter-spacing: 0;
- position: absolute;
- top: 2.55em;
- left: -9999em;
- z-index: 99999;
- }
- .main-navigation ul ul a {
- padding: 0.8em !important;
- padding-left: inherit;
- }
- .main-navigation ul ul:before {
- content: "";
- width: 0;
- height: 0;
- border-bottom: 14px solid white;
- border-top: 0 solid transparent;
- border-left: 14px solid transparent;
- border-right: 14px solid transparent;
- position: absolute;
- left: 50%;
- -webkit-transform: translateX(-50%);
- transform: translateX(-50%);
- top: -20px;
- }
- .main-navigation ul ul:after {
- border: 3px solid #e8e9ea;
- content: "";
- display: block;
- width: 100%;
- height: 100%;
- position: absolute;
- top: 0;
- left: 0;
- z-index: -1;
- }
- .main-navigation ul ul ul {
- left: -999em;
- top: -6px;
- }
- .main-navigation ul ul ul a {
- padding-left: inherit;
- }
- .main-navigation ul ul ul:before {
- display: none;
- }
- .main-navigation ul ul li {
- margin-left: 0;
- text-align: center;
- }
- .main-navigation ul ul li:hover > ul, .main-navigation ul ul li.focus > ul {
- left: 100%;
- }
- .main-navigation ul ul li a:after {
- display: none;
- }
- .main-navigation ul ul li:hover > a, .main-navigation ul ul li.focus > a {
- color: #99908a;
- }
- .main-navigation ul ul li:hover > a:visited, .main-navigation ul ul li.focus > a:visited {
- color: #99908a;
- }
- .main-navigation ul ul li:first-of-type a {
- margin-top: 0;
- padding-top: 0;
- border-top: 0;
- }
- .main-navigation ul ul li:hover > ul,
- .main-navigation ul ul li.focus > ul {
- -webkit-transform: translateX(0);
- transform: translateX(0);
- left: 100%;
- }
- .main-navigation ul ul a,
- .main-navigation ul ul a:visited {
- border-bottom: 1px solid #e8e9ea;
- color: #5e5853;
- padding: .8em;
- margin: 0;
- width: 180px;
- }
- .main-navigation ul ul :hover > a,
- .main-navigation ul ul .focus > a {
- color: #99908a;
- }
- .main-navigation ul ul a:hover,
- .main-navigation ul ul a.focus {
- color: #99908a;
- }
- .main-navigation ul li:hover > ul,
- .main-navigation ul li.focus > ul {
- left: 50%;
- -webkit-transform: translateX(-0.75em) translateX(-50%);
- transform: translateX(-0.75em) translateX(-50%);
- }
- .main-navigation li {
- display: inline-block;
- margin-left: 0.8em;
- position: relative;
- }
- .main-navigation li:hover > a, .main-navigation li.focus > a {
- color: rgba(232, 233, 234, 0.5);
- }
- .main-navigation li:hover > a:visited, .main-navigation li.focus > a:visited {
- color: rgba(232, 233, 234, 0.5);
- }
- .main-navigation li a:after {
- content: "\2666";
- color: rgba(232, 233, 234, 0.25);
- display: inline-block;
- font-family: Arial, Helvetica, sans-serif;
- margin-left: 1em;
- }
- .main-navigation li:last-of-type a:after {
- display: none;
- }
- .main-navigation li.menu-item-has-children > a,
- .main-navigation li.page_item_has_children > a {
- position: relative;
- padding-right: 1.6em;
- }
- .main-navigation li.menu-item-has-children > a:before,
- .main-navigation li.page_item_has_children > a:before {
- content: "\f431";
- font-family: Genericons;
- font-size: 14px;
- line-height: 1;
- display: inline-block;
- position: absolute;
- right: 1.4em;
- top: 3px;
- vertical-align: text-top;
- -webkit-font-smoothing: antialiased;
- }
- .main-navigation li.menu-item-has-children > a:after,
- .main-navigation li.page_item_has_children > a:after {
- position: relative;
- left: 1.6em;
- }
- .main-navigation li.menu-item-has-children:last-of-type > a:before,
- .main-navigation li.page_item_has_children:last-of-type > a:before {
- right: -.1em;
- }
- .main-navigation ul ul li.menu-item-has-children > a:before,
- .main-navigation ul ul li.page_item_has_children > a:before {
- display: none;
- }
- .main-navigation ul ul li.menu-item-has-children > a:after,
- .main-navigation ul ul li.page_item_has_children > a:after {
- content: "\f431";
- color: #99908a;
- font-family: Genericons;
- font-size: 14px;
- font-style: normal;
- font-weight: normal;
- margin: 0 0 0 0.4em;
- padding: 0;
- line-height: 1;
- display: inline-block;
- vertical-align: text-top;
- -webkit-transform: rotate(-90deg);
- transform: rotate(-90deg);
- -webkit-font-smoothing: antialiased;
- }
- .header-wrapper {
- position: fixed;
- top: 0;
- left: 0;
- z-index: 9999;
- transition: 0.3s;
- }
- .admin-bar .header-wrapper {
- top: 32px;
- }
- .header-wrapper.without-transparency {
- background-color: #1e1c1b;
- box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
- }
- .affinity-customizer .header-wrapper {
- z-index: 5;
- }
- .contact-form label.absolute {
- position: absolute;
- left: .8em;
- top: .5em;
- }
- .contact-form .no-padding {
- padding-left: .5em !important;
- padding-right: .5em !important;
- }
- }
- @media screen and (max-width: 782px) {
- .admin-bar .header-wrapper {
- top: 46px;
- }
- }
- @media screen and (min-width: 58em) {
- .site-description {
- font-size: 47.12px;
- font-size: 2.945rem;
- }
- .site-description-wrapper {
- margin: 0 auto;
- width: 75%;
- }
- .content-area {
- float: left;
- margin: 0 -25% 0 0;
- }
- .page-template-guestbook .content-area,
- .page-template-fullwidth-page-php .content-area,
- .no-sidebar .content-area {
- float: none;
- margin: 0 auto;
- }
- .site-main {
- margin: 0 30% 0 0;
- }
- .page-template-guestbook .site-main,
- .page-template-fullwidth-page-php .site-main,
- .no-sidebar .site-main,
- .affinity-front-page .site-main {
- margin: 0 auto;
- }
- .page-template-guestbook .site-main,
- .no-sidebar .site-main {
- max-width: 716px;
- }
- .affinity-front-page .site-content {
- max-width: 100%;
- }
- .affinity-front-page .site-content .entry-header,
- .affinity-front-page .site-content .entry-content,
- .affinity-front-page .site-content .entry-footer {
- margin-left: auto;
- margin-right: auto;
- max-width: 716px;
- width: 90%;
- }
- .affinity-front-page.no-sidebar .site-main {
- width: 100%;
- max-width: 100%;
- }
- .affinity-front-page .contact-form {
- max-width: 80%;
- }
- .site-content .widget-area {
- float: right;
- overflow: hidden;
- width: 25%;
- }
- .site-footer {
- clear: both;
- }
- .comment-author .avatar {
- clear: both;
- display: block;
- float: none;
- margin-bottom: .8em;
- margin-right: 0;
- }
- .comment-content {
- clear: none;
- }
- .comment-meta .edit-link:before {
- display: none;
- }
- .jetpack-social-navigation ul {
- display: block;
- margin: 0 auto !important;
- width: 75%;
- }
- .entry-meta,
- .comment-meta {
- border-right: 1px solid #e8e9ea;
- padding-right: .8em;
- float: left;
- width: 21%;
- }
- .entry-content,
- .search-results .entry-summary,
- .entry-footer,
- .comment-content,
- .reply {
- width: 75%;
- float: right;
- }
- .page-template-guestbook .comment-content,
- .page-template-guestbook .comment-meta {
- width: 100%;
- float: none;
- padding: 0;
- border: 0;
- }
- .page-template-guestbook .comments-area .comment {
- width: calc(50% - 15px);
- }
- .page .entry-content,
- .page .entry-summary,
- .page .entry-footer,
- .jetpack-portfolio .entry-content,
- .jetpack-portfolio .entry-summary,
- .jetpack-portfolio .entry-footer {
- width: 100%;
- float: none;
- }
- .comment-navigation .nav-previous,
- .posts-navigation .nav-previous,
- .post-navigation .nav-previous {
- float: left;
- width: 50%;
- padding: 0;
- margin: 0;
- border: 0;
- }
- .comment-navigation .nav-next,
- .posts-navigation .nav-next,
- .post-navigation .nav-next {
- float: right;
- text-align: right;
- width: 50%;
- }
- .footer-widgets .widget-areas {
- margin: 0 auto;
- width: 75%;
- }
- .footer-widgets .widget-areas .widget-area:nth-child(1):nth-last-child(2),
- .footer-widgets .widget-areas .widget-area:nth-child(2):nth-last-child(1) {
- width: 47%;
- margin-right: 6%;
- }
- .footer-widgets .widget-areas .widget-area:nth-child(1):nth-last-child(2):last-of-type,
- .footer-widgets .widget-areas .widget-area:nth-child(2):nth-last-child(1):last-of-type {
- margin-right: 0;
- }
- .footer-widgets .widget-areas .widget-area:nth-child(1):nth-last-child(3),
- .footer-widgets .widget-areas .widget-area:nth-child(2):nth-last-child(2),
- .footer-widgets .widget-areas .widget-area:nth-child(3):nth-last-child(1) {
- width: 20%;
- margin-right: 5%;
- }
- .footer-widgets .widget-areas .widget-area:nth-child(1):nth-last-child(3):last-of-type,
- .footer-widgets .widget-areas .widget-area:nth-child(2):nth-last-child(2):last-of-type,
- .footer-widgets .widget-areas .widget-area:nth-child(3):nth-last-child(1):last-of-type {
- margin-right: 0;
- }
- .footer-widgets .widget-areas .widget-area:nth-child(1):nth-last-child(3) {
- width: 50%;
- }
- }
- @media screen and (min-width: 68em) {
- .page-template-guestbook .site-main,
- .no-sidebar .site-main {
- width: 75%;
- }
- .site-content {
- max-width: 1068px;
- width: 75%;
- }
- blockquote {
- font-size: 26px;
- font-size: 1.625rem;
- }
- blockquote.alignright, blockquote.alignleft {
- max-width: 12em;
- }
- blockquote.alignleft.below-entry-meta {
- margin-left: -7.2em;
- }
- blockquote.alignright.below-sidebar {
- margin-right: -7.2em;
- }
- img.alignleft.below-entry-meta {
- margin-left: -7.2em;
- }
- img.alignleft.below-entry-meta + img {
- margin-left: 0;
- }
- img.alignright.below-sidebar {
- margin-right: -7.2em;
- }
- img.alignright.below-sidebar + img {
- margin-right: 0;
- }
- .wp-caption.alignleft.below-entry-meta,
- .wp-caption.alignright.below-sidebar {
- position: relative;
- }
- .wp-caption.alignleft.below-entry-meta .wp-caption-text,
- .wp-caption.alignright.below-sidebar .wp-caption-text {
- border-top: 3px solid #e8e9ea;
- margin: 0;
- padding-top: .8em;
- position: absolute;
- top: 0;
- width: 158px;
- }
- .wp-caption.alignleft.below-entry-meta .wp-caption-text {
- -webkit-transform: translateX(-100%) translateX(-1.6em);
- transform: translateX(-100%) translateX(-1.6em);
- text-align: right;
- }
- .wp-caption.alignright.below-sidebar .wp-caption-text {
- right: 0;
- -webkit-transform: translateX(100%) translateX(1.6em);
- transform: translateX(100%) translateX(1.6em);
- text-align: left;
- }
- }
|