123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490 |
- /*
- Theme Name: Intergalactic 2
- Theme URI: https://wordpress.com/themes/intergalactic-2/
- Author: Automattic
- Author URI: https://wordpress.com/themes/
- Description: Intergalactic 2 is a stunning specimen for your personal blog. Bold featured images act as the backdrop to your text, giving you a high-contrast, readable theme that's perfect for making your content pop. The one-column layout provides a distraction-free environment for reading, while the slide-out menu keeps your navigation and secondary content readily accessible.
- Version: 2.0.7-wpcom
- License: GNU General Public License v2 or later
- License URI: http://www.gnu.org/licenses/gpl-2.0.html
- Text Domain: intergalactic
- Tags: accessibility-ready, author-bio, black, blog, clean, conservative, custom-background, custom-colors, custom-header, custom-menu, dark, featured-image-header, featured-images, flexible-header, infinite-scroll, modern, one-column, photoblogging, photography, responsive-layout, right-sidebar, rtl-language-support, translation-ready, white, site-logo
- 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.
- Intergalactic 2 is based on Underscores http://underscores.me/, (C) 2012-2017 Automattic, Inc.
- Resetting and rebuilding styles have been helped along thanks to the fine work of
- Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
- along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
- and Blueprint http://www.blueprintcss.org/
- */
- /*--------------------------------------------------------------
- >>> TABLE OF CONTENTS:
- ----------------------------------------------------------------
- 1.0 - Reset
- 2.0 - Typography
- 3.0 - Elements
- 4.0 - Forms
- 5.0 - Navigation
- 5.1 - Links
- 5.2 - Menus
- 6.0 - Accessibility
- 7.0 - Alignments
- 8.0 - Clearings
- 9.0 - Widgets
- 10.0 - Content
- 10.1 - Posts and pages
- 10.2 - Asides
- 10.3 - Comments
- 11.0 - Infinite scroll
- 12.0 - Media
- 12.1 - Captions
- 12.2 - Galleries
- --------------------------------------------------------------*/
- /*--------------------------------------------------------------
- 1.0 - Reset
- --------------------------------------------------------------*/
- html,
- body,
- div,
- span,
- applet,
- object,
- iframe,
- h1,
- h2,
- h3,
- h4,
- h5,
- h6,
- p,
- blockquote,
- pre,
- a,
- abbr,
- acronym,
- address,
- big,
- cite,
- code,
- del,
- dfn,
- em,
- font,
- ins,
- kbd,
- q,
- s,
- samp,
- small,
- strike,
- strong,
- sub,
- sup,
- tt,
- var,
- dl,
- dt,
- dd,
- ol,
- ul,
- li,
- fieldset,
- form,
- label,
- legend,
- table,
- caption,
- tbody,
- tfoot,
- thead,
- tr,
- th,
- td {
- font-family: inherit;
- font-size: 100%;
- font-weight: inherit;
- font-style: inherit;
- margin: 0;
- padding: 0;
- vertical-align: baseline;
- border: 0;
- outline: 0;
- }
- html {
- font-size: 62.5%;
- /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
- overflow-y: scroll;
- /* Keeps page centered in all browsers regardless of content height */
- -webkit-text-size-adjust: 100%;
- /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
- -ms-text-size-adjust: 100%;
- /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
- }
- *,
- *:before,
- *:after {
- /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- }
- body {
- background: #fff;
- /* Fallback for when there is no custom background color defined. */
- }
- article,
- aside,
- details,
- figcaption,
- figure,
- footer,
- header,
- main,
- nav,
- section {
- display: block;
- }
- ol,
- ul {
- list-style: none;
- }
- table {
- border-spacing: 0;
- /* tables still need 'cellspacing="0"' in the markup */
- border-collapse: separate;
- }
- caption,
- th,
- td {
- font-weight: normal;
- text-align: left;
- }
- blockquote:before,
- blockquote:after,
- q:before,
- q:after {
- content: '';
- }
- blockquote,
- q {
- quotes: '' '';
- }
- a:focus {
- outline: thin dotted;
- }
- a:hover,
- a:active {
- outline: 0;
- }
- a img {
- border: 0;
- }
- /*--------------------------------------------------------------
- 2.0 Typography
- --------------------------------------------------------------*/
- body,
- button,
- input,
- select,
- textarea {
- font-family: Lato, Helvetica, sans-serif;
- font-size: 18px;
- font-size: 1.8rem;
- font-weight: 300;
- line-height: 1.5;
- color: #000;
- }
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- font-weight: bold;
- clear: both;
- margin: .75em 0;
- text-transform: uppercase;
- }
- h1 {
- font-size: 2.333em;
- margin: .375em 0;
- }
- h2 {
- font-size: 1.667em;
- line-height: 1.4;
- margin: .375em 0;
- }
- h3 {
- font-size: 1.333em;
- line-height: 1.3;
- text-transform: none;
- }
- h4 {
- font-size: 1.11em;
- }
- h5 {
- font-size: 1em;
- }
- h6 {
- font-size: .778em;
- }
- p {
- margin-bottom: 1.5em;
- }
- b,
- strong {
- font-weight: bold;
- }
- dfn,
- cite,
- em,
- i {
- font-style: italic;
- }
- blockquote {
- font-style: italic;
- margin: 0 1.5em;
- color: #767676;
- }
- blockquote blockquote {
- font-size: inherit;
- }
- address {
- margin: 0 0 1.5em;
- }
- pre {
- font-family: 'Courier 10 Pitch', Courier, monospace;
- font-size: 15px;
- font-size: 1.5rem;
- line-height: 1.6;
- overflow: auto;
- max-width: 100%;
- margin-bottom: 1.6em;
- padding: 1.6em;
- background: #eee;
- }
- code,
- kbd,
- tt,
- var {
- font-family: Monaco, Consolas, 'Andale Mono', 'DejaVu Sans Mono', monospace;
- font-size: 15px;
- font-size: 1.5rem;
- }
- abbr,
- acronym {
- cursor: help;
- border-bottom: 1px dotted #aaa;
- }
- mark,
- ins {
- text-decoration: none;
- background: #fff9c0;
- }
- sup,
- sub {
- font-size: 75%;
- line-height: 0;
- position: relative;
- height: 0;
- vertical-align: baseline;
- }
- sup {
- bottom: 1ex;
- }
- sub {
- top: .5ex;
- }
- small {
- font-size: 75%;
- }
- big {
- font-size: 125%;
- }
- /*--------------------------------------------------------------
- 3.0 Elements
- --------------------------------------------------------------*/
- hr {
- height: 1px;
- margin-bottom: 1.5em;
- border: 0;
- background-color: #ccc;
- }
- ul,
- ol {
- margin: 0 0 1.5em 3em;
- }
- 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 {
- /* Make sure images are scaled correctly. */
- max-width: 100%;
- height: auto;
- /* Adhere to container width. */
- }
- figure {
- margin: 0;
- }
- table {
- width: 100%;
- margin: 0 0 1.5em;
- }
- td {
- padding: 3px 5px;
- border-bottom: 1px solid #aaa;
- }
- th {
- font-weight: bold;
- padding: 10px 5px 5px;
- border-bottom: 4px solid #222;
- }
- /*--------------------------------------------------------------
- 4.0 Forms
- --------------------------------------------------------------*/
- button,
- input,
- select,
- textarea {
- font-size: 100%;
- /* Corrects font size not being inherited in all browsers */
- margin: 0;
- /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
- vertical-align: baseline;
- /* Improves appearance and consistency in all browsers */
- }
- button,
- input[type='button'],
- input[type='reset'],
- input[type='submit'] {
- /* Corrects inability to style clickable 'input' types in iOS */
- font-size: 18px;
- font-size: 1.8rem;
- font-weight: bold;
- line-height: 1;
- padding: .75em;
- cursor: pointer;
- -webkit-transition: .3s all ease-in-out;
- -moz-transition: .3s all ease-in-out;
- transition: .3s all ease-in-out;
- text-transform: uppercase;
- color: #222;
- border: 2px solid #222;
- background: transparent;
- box-shadow: none;
- text-shadow: none;
- /* Improves usability and consistency of cursor style between image-type 'input' and others */
- -webkit-appearance: button;
- }
- button:hover,
- input[type='button']:hover,
- input[type='reset']:hover,
- input[type='submit']:hover {
- -webkit-transition: .3s all ease-in-out;
- -moz-transition: .3s all ease-in-out;
- transition: .3s all ease-in-out;
- color: #fff;
- border-color: #222;
- background: #222;
- box-shadow: none;
- }
- 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 {
- -webkit-transition: .3s all ease-in-out;
- -moz-transition: .3s all ease-in-out;
- transition: .3s all ease-in-out;
- color: #fff;
- border-color: #222;
- background: #222;
- box-shadow: none;
- }
- .slide-menu button,
- .slide-menu input[type='button'],
- .slide-menu input[type='reset'],
- .slide-menu input[type='submit'] {
- border: 2px solid #aaa;
- color: #aaa;
- }
- .slide-menu button:hover,
- .slide-menu input[type='button']:hover,
- .slide-menu input[type='reset']:hover,
- .slide-menu input[type='submit']:hover {
- border: 2px solid #fff;
- color: #fff;
- }
- .slide-menu button:focus,
- .slide-menu input[type='button']:focus,
- .slide-menu input[type='reset']:focus,
- .slide-menu input[type='submit']:focus {
- border: 2px solid #fff;
- color: #fff;
- }
- input[type='checkbox'],
- input[type='radio'] {
- padding: 0;
- /* Addresses excess padding in IE8/9 */
- }
- input[type='search'] {
- /* Addresses appearance set to searchfield in S5, Chrome */
- -webkit-box-sizing: content-box;
- /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
- -moz-box-sizing: content-box;
- box-sizing: content-box;
- -webkit-appearance: textfield;
- }
- input[type='search']::-webkit-search-decoration {
- /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
- -webkit-appearance: none;
- }
- button::-moz-focus-inner,
- input::-moz-focus-inner {
- padding: 0;
- /* Corrects inner padding and border displayed oddly in FF3/4 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
- border: 0;
- }
- input[type='text'],
- input[type='email'],
- input[type='url'],
- input[type='password'],
- input[type='search'],
- textarea {
- color: #767676;
- border: 1px solid #aaa;
- max-width: 100%;
- }
- input[type='text']:focus,
- input[type='email']:focus,
- input[type='url']:focus,
- input[type='password']:focus,
- input[type='search']:focus,
- textarea:focus {
- color: #222;
- }
- input[type='text'],
- input[type='email'],
- input[type='url'],
- input[type='password'],
- input[type='search'] {
- padding: .55em;
- }
- textarea {
- overflow: auto;
- /* Improves readability and alignment in all browsers */
- width: 100%;
- /* Removes default vertical scrollbar in IE6/7/8/9 */
- padding-left: 3px;
- vertical-align: top;
- }
- .search-form {
- position: relative;
- }
- .search-form label:before {
- font-family: Genericons;
- font-size: 16px;
- line-height: 50px;
- position: absolute;
- z-index: 1;
- top: 0;
- left: 0;
- display: inline-block;
- clip: auto;
- width: 2em;
- height: 50px;
- content: '\f400';
- text-align: center;
- color: #222;
- }
- .search-form input[type='search'] {
- padding-left: 2em;
- }
- /*--------------------------------------------------------------
- 5.0 Navigation
- --------------------------------------------------------------*/
- /*--------------------------------------------------------------
- 5.1 Links
- --------------------------------------------------------------*/
- a {
- -webkit-transition: .3s all ease-in-out;
- -moz-transition: .3s all ease-in-out;
- transition: .3s all ease-in-out;
- text-decoration: none;
- font-weight: bold;
- color: #81699b;
- }
- a:visited {
- color: #81699b;
- font-weight: normal;
- }
- a:hover,
- a:focus,
- a:active {
- -webkit-transition: .3s all ease-in-out;
- -moz-transition: .3s all ease-in-out;
- transition: .3s all ease-in-out;
- color: #557d73;
- }
- /*--------------------------------------------------------------
- 5.2 Menus
- --------------------------------------------------------------*/
- .main-navigation {
- display: block;
- clear: both;
- width: 100%;
- margin: 0 0 3em;
- text-transform: uppercase;
- }
- .main-navigation a {
- display: block;
- padding: .75em 0;
- text-decoration: none;
- color: white;
- transition: color .1s ease-in-out;
- }
- .main-navigation a:hover {
- color: rgba(255, 255, 255, .5);
- }
- .main-navigation ul {
- display: block;
- clear: both;
- margin: 0;
- padding-left: 0;
- list-style: none;
- }
- .main-navigation li {
- position: relative;
- clear: both;
- border-top: 1px solid #595959;
- }
- .main-navigation li:first-of-type {
- border-top: 0;
- }
- .main-navigation li li {
- font-size: .778em;
- border-top: 0;
- }
- .main-navigation li li a {
- color: #aaa;
- }
- .main-navigation li li li {
- font-size: inherit;
- }
- .main-navigation li li li a:before {
- display: inline;
- margin-right: 5px;
- content: '#';
- }
- /* Animated button courtesy of http://sarasoueidan.com/demos/navicon-transformicons/ */
- .menu-toggle {
- position: absolute;
- z-index: 5;
- margin-top: -1px;
- top: .75em;
- right: 1.5em;
- font-size: 20px;
- padding: 0;
- cursor: pointer;
- user-select: none;
- transition: .3s;
- border: 0;
- border-radius: 0;
- background: transparent;
- box-shadow: none;
- text-shadow: none;
- }
- .menu-toggle:hover,
- .menu-toggle:focus,
- .menu-toggle:active {
- opacity: 1;
- border-color: #222;
- background: transparent;
- box-shadow: none;
- color: #222;
- }
- .menu-toggle:active {
- transition: 0;
- }
- .lines {
- position: relative;
- top: -6px;
- display: inline-block;
- margin-right: 4px;
- width: 20px;
- height: 3px;
- transition: .3s;
- background: #222;
- }
- .lines:before,
- .lines:after {
- position: absolute;
- left: 0;
- display: inline-block;
- width: 20px;
- height: 3px;
- content: '';
- transition: .3s;
- -webkit-transform-origin: 1.71429px center;
- transform-origin: 1.71429px center;
- background: #222;
- }
- .lines:before {
- top: 6px;
- }
- .lines:after {
- top: -6px;
- }
- .menu-toggle.toggle-on {
- color: #222;
- }
- .menu-toggle.x.toggle-on .lines {
- background: transparent;
- }
- .menu-toggle.x.toggle-on .lines:before,
- .menu-toggle.x.toggle-on .lines:after {
- top: 0;
- width: 20px;
- -webkit-transform-origin: 50% 50%;
- transform-origin: 50% 50%;
- background: #222;
- }
- .menu-toggle.x.toggle-on .lines:before {
- -webkit-transform: rotate3d(0, 0, 1, 45deg);
- transform: rotate3d(0, 0, 1, 45deg);
- }
- .menu-toggle.x.toggle-on .lines:after {
- -webkit-transform: rotate3d(0, 0, 1, -45deg);
- transform: rotate3d(0, 0, 1, -45deg);
- }
- /* Single post */
- .singular .menu-toggle,
- .error404 .menu-toggle,
- .search-no-results .menu-toggle,
- .has-custom-header .menu-toggle {
- border-color: #fff;
- color: #fff;
- }
- .singular .menu-toggle.toggle-on,
- .error404 .menu-toggle.toggle-on,
- .search-no-results .menu-toggle.toggle-on,
- .has-custom-header .menu-toggle.toggle-on {
- border-color: white;
- color: white;
- }
- .singular .menu-toggle .lines,
- .error404 .menu-toggle .lines,
- .search-no-results .menu-toggle .lines,
- .has-custom-header .menu-toggle .lines {
- background: white;
- }
- .singular .menu-toggle .lines:before,
- .singular .menu-toggle .lines:after,
- .error404 .menu-toggle .lines:before,
- .error404 .menu-toggle .lines:after,
- .search-no-results .menu-toggle .lines:before,
- .search-no-results .menu-toggle .lines:after,
- .has-custom-header .menu-toggle .lines:before,
- .has-custom-header .menu-toggle .lines:after {
- background: white;
- }
- .singular .menu-toggle:hover,
- .error404 .menu-toggle:hover,
- .search-no-results .menu-toggle:hover,
- .has-custom-header .menu-toggle:hover {
- color: white;
- border-color: white;
- }
- .singular .menu-toggle:hover .lines,
- .error404 .menu-toggle:hover .lines,
- .search-no-results .menu-toggle:hover .lines,
- .has-custom-header .menu-toggle:hover .lines {
- background: white;
- color: white;
- }
- .singular .menu-toggle:hover .lines:before,
- .singular .menu-toggle:hover .lines:after,
- .error404 .menu-toggle:hover .lines:before,
- .error404 .menu-toggle:hover .lines:after,
- .search-no-results .menu-toggle:hover .lines:before,
- .search-no-results .menu-toggle:hover .lines:after,
- .has-custom-header .menu-toggle:hover .lines:before,
- .has-custom-header .menu-toggle:hover .lines:after {
- background: white;
- color: white;
- }
- .singular .menu-toggle.x.toggle-on .lines,
- .error404 .menu-toggle.x.toggle-on .lines,
- .search-no-results .menu-toggle.x.toggle-on .lines,
- .has-custom-header .menu-toggle.x.toggle-on .lines {
- background: transparent;
- }
- .singular .menu-toggle.x.toggle-on .lines:before,
- .singular .menu-toggle.x.toggle-on .lines:after,
- .error404 .menu-toggle.x.toggle-on .lines:before,
- .error404 .menu-toggle.x.toggle-on .lines:after,
- .search-no-results .menu-toggle.x.toggle-on .lines:before,
- .search-no-results .menu-toggle.x.toggle-on .lines:after,
- .has-custom-header .menu-toggle.x.toggle-on .lines:before,
- .has-custom-header .menu-toggle.x.toggle-on .lines:after {
- background: white;
- }
- .site-main .comment-navigation,
- .site-main .posts-navigation,
- .site-main .post-navigation {
- font-size: .778em;
- font-weight: bold;
- clear: both;
- overflow: hidden;
- width: 100%;
- margin: 0;
- text-align: center;
- text-transform: uppercase;
- }
- .comment-navigation .nav-previous a,
- .posts-navigation .nav-previous a,
- .post-navigation .nav-previous a {
- display: block;
- float: left;
- width: 43%;
- padding: .75em 0;
- color: #222;
- background-color: white;
- }
- .comment-navigation .nav-next a,
- .posts-navigation .nav-next a,
- .post-navigation .nav-next a {
- display: block;
- float: right;
- width: 43%;
- padding: .75em 0;
- text-align: center;
- color: #222;
- background-color: white;
- }
- .post-navigation .nav-next .title,
- .post-navigation .nav-previous .title {
- clear: both;
- color: rgba(0,0,0,0.5);
- font-size: .75em;
- display: block;
- font-style: italic;
- text-transform: none;
- }
- /* Social links */
- .jetpack-social-navigation {
- margin: 0 auto 3em;
- }
- .jetpack-social-navigation ul {
- margin: 0;
- padding: 0;
- list-style: none;
- }
- .jetpack-social-navigation ul a {
- color: rgba(255, 255, 255, .5);
- text-decoration: none;
- transition: color .1s ease-in-out;
- }
- .jetpack-social-navigation ul li {
- font-size: 32px;
- font-weight: normal;
- font-style: normal;
- line-height: .75;
- display: inline-block;
- list-style: none;
- margin: 10px 10px 0 0;
- padding: .325em;
- transition: border-color .1s ease-in-out;
- text-align: center;
- text-decoration: none;
- color: rgba(255, 255, 255, .5);
- border: 1px solid rgba(255, 255, 255, .5);
- }
- .jetpack-social-navigation ul li:hover {
- text-decoration: none;
- color: white;
- border-color: white;
- }
- .jetpack-social-navigation ul li:hover a {
- color: white;
- }
- .jetpack-social-navigation ul:last-of-type {
- margin-right: 0;
- }
- /*--------------------------------------------------------------
- 6.0 Accessibility
- --------------------------------------------------------------*/
- /* Text meant only for screen readers */
- .screen-reader-text {
- position: absolute !important;
- overflow: hidden;
- clip: rect(1px, 1px, 1px, 1px);
- width: 1px;
- height: 1px;
- }
- .screen-reader-text:focus {
- font-size: 14px;
- font-size: 1.4rem;
- font-weight: bold;
- line-height: normal;
- z-index: 100000;
- top: 5px;
- left: 5px;
- display: block;
- clip: auto !important;
- width: auto;
- height: auto;
- padding: 15px 23px 14px;
- text-decoration: none;
- color: #21759b;
- /* stops bg color from leaking outside the border: */
- -webkit-border-radius: 3px;
- border-radius: 3px;
- background-color: #f1f1f1;
- background-clip: padding-box;
- box-shadow: 0 0 2px 2px rgba(0, 0, 0, .6);
- /* Above WP toolbar */
- }
- /*--------------------------------------------------------------
- 7.0 Alignments
- --------------------------------------------------------------*/
- .alignleft,
- .alignright,
- .aligncenter {
- display: block;
- margin: 0 auto;
- margin-top: .75em;
- margin-bottom: .75em;
- }
- .alignleft.size-thumbnail {
- display: inline;
- float: left;
- margin-right: 1.5em;
- }
- .alignright.size-thumbnail {
- display: inline;
- float: right;
- margin-left: 1.5em;
- }
- /*--------------------------------------------------------------
- 8.0 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 {
- display: table;
- content: '';
- }
- .clear:after,
- .entry-content:after,
- .comment-content:after,
- .site-header:after,
- .site-content:after,
- .site-footer:after {
- clear: both;
- }
- /*--------------------------------------------------------------
- 9.0 Widgets
- --------------------------------------------------------------*/
- .slide-menu {
- position: relative;
- z-index: 99;
- display: none;
- width: 100%;
- padding: 1.5em;
- background: #222;
- }
- .slide-menu.expanded {
- display: block;
- }
- .single-post .slide-menu {
- padding: 1.5em 0;
- }
- .widget {
- margin: 0 0 3em;
- color: #aaa;
- /* Make sure select elements fit in widgets */
- }
- .widget select {
- max-width: 100%;
- }
- .widget a,
- .site-footer .widget a {
- color: white;
- }
- .widget a:hover {
- opacity: 0.5;
- }
- .widget ul li {
- list-style: none;
- }
- .widget > ul,
- .widget ul:first-of-type {
- margin: 0;
- padding: 0;
- }
- .widget-title {
- font-size: 1.333em;
- font-weight: bold;
- text-transform: uppercase;
- }
- /* Search widget */
- .widget_search .search-submit {
- display: none;
- }
- /* Calendar */
- #wp-calendar caption {
- font-weight: bold;
- text-align: center;
- }
- #wp-calendar td,
- #wp-calendar th {
- text-align: center;
- }
- #wp-calendar th {
- border-color: #aaa;
- }
- /* Recent Posts */
- .widget_recent_entries ul li {
- margin: .375em 0 0;
- padding: .375em 0 0;
- }
- .widget_recent_entries .post-date {
- display: block;
- clear: both;
- width: 100%;
- }
- .footer-widgets {
- padding: 3em 1.5em;
- }
- .footer-widgets .widget-area {
- width: 100%;
- margin: 0;
- float: left;
- }
- /* Widget - lists */
- .widgets-list-layout .widgets-list-layout-blavatar {
- margin-right: 0.5em;
- width: auto;
- }
- .widgets-list-layout .widgets-list-layout-links {
- float: none;
- width: auto;
- }
- /*--------------------------------------------------------------
- 10.0 Content
- --------------------------------------------------------------*/
- /*--------------------------------------------------------------
- 10.1 Posts and pages
- --------------------------------------------------------------*/
- .site-header {
- position: relative;
- overflow: hidden;
- min-height: 84px;
- }
- .header-background {
- position: absolute;
- z-index: -1;
- top: 0;
- left: 0;
- overflow: hidden;
- width: 100%;
- height: 100%;
- background-position: center;
- background-repeat: no-repeat;
- -webkit-background-size: cover;
- -moz-background-size: cover;
- background-size: cover;
- }
- .site-branding {
- min-height: 70px;
- position: relative;
- z-index: 1;
- }
- .singular .site-branding,
- .error404 .site-branding,
- .search-no-results .site-branding {
- min-height: 0;
- max-width: 60%;
- }
- .custom-logo {
- max-width: 600px;
- max-height: 200px;
- width: auto;
- height: auto;
- margin: 2.75em auto -2.75em;
- display: block;
- }
- .but-no-site-title .custom-logo {
- margin-bottom: 2.75em;
- }
- .page.but-no-site-title .custom-logo {
- margin-bottom: 0;
- }
- .site-title {
- font-size: 1.667em;
- line-height: 1.25;
- margin: 2.75em auto .25em;
- padding: 0;
- text-align: center;
- text-transform: uppercase;
- }
- .site-title a {
- color: #222;
- }
- .site-description {
- font-size: .778em;
- font-weight: 300;
- margin: 0 0 1.5em;
- padding: 0 1.5em;
- text-align: center;
- text-transform: none;
- color: #767676;
- }
- .singular .site-description {
- padding: 0;
- }
- .entry-title,
- .page-title {
- font-size: 1.667em;
- line-height: 1.25;
- margin: .75em auto;
- text-align: center;
- word-wrap: break-word;
- }
- .page-header {
- margin: 0 auto;
- padding: .375em 0;
- background: #222;
- color: #fff;
- }
- .page-title {
- font-size: 1.11em;
- margin: .375em auto;
- text-transform: capitalize;
- color: white;
- }
- .archive-description {
- text-align: center;
- padding: 0 1.5em .375em;
- }
- .sticky {
- display: block;
- }
- .sticky-flag {
- color: rgba(255,255,255,0.5);
- display: block;
- font-weight: bold;
- text-transform: uppercase;
- text-align: center;
- margin: 0 auto -1.5em;
- }
- /* Posts & Pages */
- .hentry {
- position: relative;
- z-index: 1;
- margin: 0;
- padding: 0;
- }
- .blog .hentry,
- .archive .hentry,
- .search .hentry {
- padding: 3em 0;
- }
- .entry-content-wrapper {
- z-index: 1;
- padding-top: 3em;
- background: white;
- }
- .updated:not(.published) {
- display: none;
- }
- .entry-title {
- padding: 0 .778em;
- }
- .entry-title,
- .entry-title a {
- color: white;
- }
- .entry-content,
- .entry-summary,
- .page-content,
- .comment-content {
- -webkit-hyphens: auto;
- -moz-hyphens: auto;
- -ms-hyphens: auto;
- hyphens: auto;
- word-wrap: break-word;
- }
- .page-content,
- .entry-content,
- .entry-summary,
- .taxonomy-description {
- margin: 1.5em auto 0;
- padding: 0 1.5em;
- }
- .page-links {
- clear: both;
- margin: 0 0 1.5em;
- word-spacing: 5px;
- }
- .entry-meta,
- .entry-footer {
- font-size: .778em;
- padding: 0 1.5em;
- }
- .entry-tags,
- .entry-categories {
- color: #767676;
- font-weight: normal;
- display: inline-block;
- margin-right: 3em;
- text-transform: capitalize;
- }
- .entry-tags .heading,
- .entry-categories .heading {
- color: #000;
- font-weight: bold;
- }
- .entry-meta a,
- .entry-footer a {
- color: #767676;
- }
- .entry-meta a:hover,
- .entry-meta a:active,
- .entry-meta a:focus,
- .entry-footer a:hover,
- .entry-footer a:active,
- .entry-footer a:focus {
- text-decoration: underline;
- }
- .edit-link {
- display: block;
- width: 100%;
- text-align: center;
- }
- .blog .entry-background,
- .archive .entry-background,
- .search .entry-background {
- position: absolute;
- z-index: 1;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- opacity: .3;
- background-repeat: no-repeat;
- -webkit-background-size: cover;
- -moz-background-size: cover;
- background-size: cover;
- background-position: center;
- }
- .blog .entry-content,
- .blog .entry-summary,
- .archive .entry-content,
- .archive .entry-summary,
- .search .entry-content,
- .search .entry-summary {
- font-size: 1em;
- }
- .blog .entry-content,
- .blog .entry-summary,
- .blog .entry-header,
- .blog .entry-footer,
- .blog .hentry a,
- .blog blockquote,
- .archive .entry-content,
- .archive .entry-summary,
- .archive .entry-header,
- .archive .entry-footer,
- .archive .hentry a,
- .archive blockquote,
- .search .entry-content,
- .search .entry-summary,
- .search .entry-header,
- .search .entry-footer,
- .search .hentry a,
- .search blockquote {
- position: relative;
- z-index: 2;
- color: white;
- }
- .blog .hentry,
- .archive .hentry,
- .search .hentry {
- border-bottom: 1px solid #252525;
- background-color: #222;
- }
- .blog .page-header,
- .archive .page-header,
- .search .page-header {
- border-bottom: 1px solid #252525;
- }
- .blog a.more-link {
- font-size: .778em;
- font-weight: bold;
- display: block;
- width: 48%;
- max-width: 330px;
- margin: 1.5em auto;
- padding: .75em 0;
- -webkit-transition: .3s all ease-in-out;
- -moz-transition: .3s all ease-in-out;
- transition: .3s all ease-in-out;
- text-align: center;
- text-transform: uppercase;
- color: white;
- border: 2px solid white;
- }
- .blog a.more-link:after {
- display: inline;
- margin-left: 5px;
- content: "\2192" /*rtl:"\2190"*/;
- }
- .blog a.more-link:hover,
- .blog a.more-link:active,
- .blog a.more-link:focus {
- -webkit-transition: .3s all ease-in-out;
- -moz-transition: .3s all ease-in-out;
- transition: .3s all ease-in-out;
- color: #222;
- background: white;
- }
- /* Search not found/404 */
- .error404 .page-content,
- .search-no-results .page-content {
- padding-top: 1.5em;
- padding-bottom: 3em;
- }
- /* Author Bio */
- .entry-author {
- font-size: 1em;
- margin: 0 0 1.5em;
- }
- .author-title {
- clear: none;
- font-size: 1.5em;
- }
- .author-avatar {
- width: 140px;
- margin: 0 auto .75em;
- }
- .author-avatar img {
- border-radius: 50%;
- }
- /* Footer */
- .entry-footer-wrapper {
- position: relative;
- clear: both;
- padding: 1.5em;
- color: white;
- border-bottom: 1px solid #252525;
- background: #111;
- }
- .site-info {
- font-size: .778em;
- font-weight: bold;
- position: relative;
- clear: both;
- margin: 1.5em auto;
- padding: 1.5em;
- text-align: center;
- text-transform: uppercase;
- }
- .site-info .sep {
- line-height: 1;
- display: block;
- visibility: hidden;
- clear: both;
- width: 100%;
- height: 0;
- }
- .site-footer {
- position: relative;
- clear: both;
- color: #aaa;
- background: #111;
- }
- .site-footer a {
- color: #aaa;
- }
- /* Single Posts */
- .singular .edit-link {
- float: right;
- width: auto;
- text-align: right;
- }
- .singular .site-header,
- .error404 .site-header,
- .search-no-results .site-header {
- margin: 0;
- padding: .75em 1.5em;
- background-color: #222;
- }
- .singular .site-title,
- .error404 .site-title,
- .search-no-results .site-title {
- clear: none;
- font-size: 1.11em;
- margin-top: 0;
- margin-bottom: 0;
- text-align: left;
- width: auto;
- }
- .singular .site-title a,
- .error404 .site-title a,
- .search-no-results .site-title a,
- .has-custom-header .site-title a {
- color: white;
- }
- .singular .site-title a:hover,
- .error404 .site-title a:hover,
- .search-no-results .site-title a:hover,
- .has-custom-header .site-title a:hover {
- color: white;
- }
- .singular .site-description,
- .error404 .site-description,
- .search-no-results .site-description {
- color: white;
- clear: none;
- float: left;
- text-align: left;
- width:auto;
- margin: 0;
- }
- .has-custom-header .site-description {
- color: white;
- }
- .singular .custom-logo,
- .error404 .custom-logo,
- .search-no-results .custom-logo {
- float: left;
- margin: 0;
- margin-right: .75em;
- position: relative;
- max-width: 250px;
- max-height: 50px;
- }
- .singular .entry-content-wrapper {
- padding-top: 1.5em;
- padding-bottom: 1.5em;
- }
- .singular .entry-header {
- background-color: #222;
- }
- .singular .entry-title {
- font-size: 1.667em;
- width: 100%;
- margin: 0 auto;
- padding: .75em;
- text-align: center;
- }
- .single-thumbnail .entry-header {
- width: 100%;
- height: 400px;
- background-color: transparent;
- }
- .single-thumbnail .entry-title {
- position: relative;
- z-index: 1;
- top: 50%;
- -ms-transform: translateY(-50%);
- -moz-transform: translateY(-50%);
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- .single-thumbnail .entry-background {
- background-position: center;
- opacity: 1;
- position: relative;
- }
- .single-thumbnail .entry-background:before {
- position: absolute;
- z-index: 1;
- top: 0;
- left: 0;
- display: block;
- width: 100%;
- height: 100%;
- content: '';
- opacity: .3;
- background-color: #222;
- }
- .singular .entry-meta {
- text-align: center;
- color: #767676;
- }
- .singular .wpnbc .entry-title,
- .singular .wpnbha .entry-title,
- .wpnbha .entry-meta {
- width: 100%;
- }
- .singular .wpnbha .entry-title,
- .singular .wpnbpc .entry-title {
- padding-left: 0;
- text-align: unset;
- }
- .singular .wpnbpc .entry-title {
- text-align: left;
- }
- .wpnbha h2.entry-title a:link,
- .wpnbha h2.entry-title a:visited {
- color: #000;
- }
- .wpnbha h2.entry-title a:hover,
- .wpnbha h2.entry-title a:active {
- color: #557d73;
- }
- .wpnbha article.has-post-image a.more-link {
- color: #fff;
- }
- /*--------------------------------------------------------------
- 10.3 Comments
- --------------------------------------------------------------*/
- .comments-area {
- padding: 1.5em;
- }
- .comments-title,
- .comment-reply-title {
- font-size: 1.667em;
- margin: .75em 0;
- text-align: center;
- }
- .comment-list {
- margin: 0;
- padding: 0;
- list-style: none;
- }
- .comment-list .comment {
- list-style: none;
- }
- .comment-content {
- clear: both;
- margin-top: 1.5em;
- }
- .comment-content a {
- word-wrap: break-word;
- }
- .bypostauthor {
- display: block;
- }
- .comment-author img {
- float: left;
- margin-bottom: 1em;
- margin-right: 1.5em;
- border-radius: 50%;
- }
- .comment-author .fn {
- font-weight: bold;
- text-transform: uppercase;
- }
- .comment-author .fn a,
- .comment-author .fn a:visited {
- color: #222;
- }
- .comment .edit-link {
- float: right;
- width: auto;
- text-align: right;
- }
- .says {
- display: none;
- }
- .comment-metadata {
- font-size: .778em;
- color: #767676;
- }
- .comment-metadata a {
- color: #767676;
- }
- .comment-body {
- margin-bottom: 1.5em;
- padding-bottom: 1.5em;
- border-bottom: 1px solid #aaa;
- }
- .comment-reply-link {
- font-weight: bold;
- text-transform: uppercase;
- color: #767676;
- }
- .no-comments {
- font-style: italic;
- text-align: center;
- }
- /*--------------------------------------------------------------
- 11.0 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-footer {
- z-index: 5;
- }
- #infinite-footer .container {
- border: none;
- background: #222;
- }
- #infinite-footer .blog-credits,
- #infinite-footer .blog-credits a,
- #infinite-footer .blog-credits a:hover,
- #infinite-footer .blog-info a,
- #infinite-footer .blog-info a:hover {
- color: #aaa;
- }
- #infinite-handle {
- padding: 0;
- text-align: center;
- }
- #infinite-handle span {
- font-size: 1.11em;
- font-weight: bold;
- display: block;
- width: 260px;
- margin: 1.5em auto;
- padding: .75em 1.5em;
- text-align: center;
- text-transform: uppercase;
- color: #fff;
- background: #81699b;
- }
- #infinite-handle span:after {
- display: inline;
- margin-left: 5px;
- content: "\2192" /*rtl:"\2190"*/;
- }
- .infinite-loader {
- width: 34px;
- margin: 2.6em auto;
- }
- /*--------------------------------------------------------------
- # 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;
- margin-bottom: .375em;
- }
- .site-content .contact-form label.checkbox,
- .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;
- }
- .site-content .contact-form .grunion-field-label {
- margin-bottom: .1875em;
- }
- /*--------------------------------------------------------------
- 12.0 Media
- --------------------------------------------------------------*/
- .page-content img.wp-smiley,
- .entry-content img.wp-smiley,
- .comment-content img.wp-smiley {
- margin-top: 0;
- margin-bottom: 0;
- padding: 0;
- border: none;
- }
- /* Make sure embeds and iframes fit their containers */
- embed,
- iframe,
- object {
- max-width: 100%;
- }
- .jetpack-video-wrapper {
- margin: 0 0 1.5em;
- }
- /*--------------------------------------------------------------
- 12.1 Captions
- --------------------------------------------------------------*/
- .wp-caption {
- max-width: 100%;
- margin-bottom: 1.5em;
- }
- .wp-caption img[class*='wp-image-'] {
- display: block;
- margin: 0 auto;
- }
- .wp-caption .wp-caption-text {
- margin: .8075em 0;
- }
- .wp-caption-text {
- font-size: .778em;
- padding-bottom: .75em;
- text-align: center;
- }
- .wp-block-image figcaption {
- text-align: center;
- }
- /*--------------------------------------------------------------
- 12.2 Galleries
- --------------------------------------------------------------*/
- .gallery {
- margin-bottom: 1.5em;
- }
- .gallery-item {
- display: inline-block;
- width: 100%;
- padding: .75em;
- text-align: center;
- vertical-align: top;
- }
- .gallery-columns-1 .gallery-item {
- padding: 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 {
- font-size: .778em;
- display: block;
- }
- .tiled-gallery-caption {
- z-index: 3;
- }
- /* Add alignment for wider devices */
- @media screen and (min-width: 480px) {
- .alignleft {
- display: inline;
- float: left;
- margin-right: 1.5em;
- }
- .alignright {
- display: inline;
- float: right;
- margin-left: 1.5em;
- }
- }
- /* Tablets */
- @media screen and (min-width: 784px) {
- html,
- .single-thumbnail,
- .single-thumbnail .site,
- .single-thumbnail .site-content,
- .single-thumbnail .site-main,
- .single-thumbnail .content-area {
- position: relative;
- height: 100%;
- }
- .header-background {
- -webkit-background-size: cover;
- -moz-background-size: cover;
- background-size: cover;
- }
- .page-content,
- .entry-content,
- .entry-summary,
- .entry-title,
- .entry-footer,
- .comments-area,
- .site-info,
- .entry-author,
- .entry-meta,
- .page-title,
- .taxonomy-description {
- width: 660px;
- margin-right: auto;
- margin-bottom: 1.5em;
- margin-left: auto;
- }
- .slide-menu,
- .singular .slide-menu {
- position: fixed;
- top: 0;
- right: -650px;
- display: block;
- visibility: hidden;
- overflow-y: scroll;
- overflow-x: hidden;
- width: 650px;
- height: 100%;
- padding: 3em;
- -webkit-transition: .3s all ease-in-out;
- -moz-transition: .3s all ease-in-out;
- transition: .3s all ease-in-out;
- }
- .slide-menu.expanded,
- .singular .slide-menu.expanded {
- right: 0;
- display: block;
- visibility: visible;
- -webkit-transition: .3s all ease-in-out;
- -moz-transition: .3s all ease-in-out;
- transition: .3s all ease-in-out;
- }
- .site {
- position: relative;
- left: 0;
- -webkit-transition: .3s left ease-in-out;
- -moz-transition: .3s left ease-in-out;
- transition: .3s left ease-in-out;
- }
- .sidebar-open .site {
- left: -650px;
- -webkit-transition: .3s left ease-in-out;
- -moz-transition: .3s left ease-in-out;
- transition: .3s left ease-in-out;
- }
- h1 {
- font-size: 4.44em;
- margin: .1875em 0;
- }
- h2 {
- font-size: 1.667em;
- margin: .1875em 0;
- }
- h3 {
- font-size: 1.333em;
- }
- h4 {
- font-size: 1.11em;
- }
- h5 {
- font-size: 1em;
- }
- h6 {
- font-size: .778em;
- }
- blockquote {
- font-size: 1.333em;
- }
- .custom-logo {
- max-width: 600px;
- height: auto;
- max-height: 200px;
- width: auto;
- margin-top: 4.75em;
- margin-bottom: -4.75em;
- }
- .but-no-site-title .custom-logo {
- margin-bottom: 4.75em;
- }
- .singular .custom-logo,
- .error404 .custom-logo,
- .search-no-results .custom-logo {
- margin-right: 1em;
- top: 4px;
- }
- .site-title {
- font-size: 2.333em;
- }
- .site-description {
- font-size: 1.333em;
- }
- .singular .site-description,
- .error404 .site-description,
- .search-no-results .site-description {
- font-size: .75em;
- }
- .entry-title {
- font-size: 2.333em;
- }
- .page-title {
- font-size: 2.333em;
- margin-bottom: .375em;
- }
- .entry-author {
- font-size: 1.11em;
- }
- .singular .entry-title {
- font-size: 2.333em;
- }
- .comments-area {
- padding: 1.5em 0;
- }
- .page-content,
- .entry-content,
- .entry-summary,
- .entry-meta,
- .entry-footer,
- .entry-title {
- padding: 0;
- }
- .author-bio,
- .author-heading {
- margin-left: 167px;
- }
- .author-avatar {
- margin: 0;
- }
- .author-avatar img {
- float: left;
- margin: 0 1.5em 1.5em 0;
- }
- /* Single posts with thumbnail */
- .single-thumbnail .entry-header {
- position: relative;
- clear: both;
- height: 100%;
- background-color: transparent;
- }
- .single-thumbnail .entry-background {
- position: relative;
- z-index: -1;
- top: -85px;
- clear: both;
- width: 100%;
- height: 100%;
- margin: 0;
- padding: 0;
- background-repeat: no-repeat;
- -webkit-background-size: cover;
- -moz-background-size: cover;
- background-size: cover;
- }
- .single-thumbnail .site-header {
- background-color: transparent;
- }
- .single-thumbnail .entry-content-wrapper {
- padding-top: 0;
- }
- .single-thumbnail .site-footer {
- z-index: 0;
- }
- .blog .entry-content,
- .blog .entry-summary,
- .archive .entry-content,
- .archive .entry-summary,
- .search .entry-content,
- .search .entry-summary {
- font-size: 1.11em;
- }
- .blog .hentry,
- .archive .hentry,
- .search .hentry {
- padding: 6em 0;
- }
- .footer-widgets .widget-area:nth-child(1):nth-last-child(2),
- .footer-widgets .widget-area:nth-child(2):nth-last-child(1) {
- width: 48%;
- margin-right: 4%;
- }
- .footer-widgets .widget-area:nth-child(1):nth-last-child(2):last-of-type,
- .footer-widgets .widget-area:nth-child(2):nth-last-child(1):last-of-type {
- margin-right: 0;
- }
- .footer-widgets .widget-area:nth-child(1):nth-last-child(3),
- .footer-widgets .widget-area:nth-child(2):nth-last-child(2),
- .footer-widgets .widget-area:nth-child(3):nth-last-child(1) {
- width: 30%;
- margin-right: 5%;
- }
- .footer-widgets .widget-area:nth-child(1):nth-last-child(3):last-of-type,
- .footer-widgets .widget-area:nth-child(2):nth-last-child(2):last-of-type,
- .footer-widgets .widget-area:nth-child(3):nth-last-child(1):last-of-type {
- margin-right: 0;
- }
- }
- /* Large screens */
- @media screen and (min-width: 1060px) {
- /* Pull content into margins */
- .entry-content .jetpack-video-wrapper,
- .entry-content .gallery,
- .entry-content .tiled-gallery-wrapper {
- width: 1000px;
- margin-left: -170px;
- }
- .entry-content .jetpack-video-wrapper iframe {
- margin: 0 auto !important;
- }
- blockquote.aligncenter {
- width: 1000px;
- margin-left: -170px;
- }
- .wp-caption.alignleft,
- img.alignleft,
- blockquote.alignleft {
- margin-left: -170px;
- }
- blockquote.alignleft,
- blockquote.alignright {
- width: 330px;
- }
- .wp-caption.alignright,
- img.alignright,
- blockquote.alignright {
- margin-right: -170px;
- }
- /* Increase heading sizes */
- h2 {
- font-size: 2.333em;
- margin: .1875em 0;
- }
- h3 {
- font-size: 1.667em;
- }
- h4 {
- font-size: 1.11em;
- }
- .menu-toggle {
- padding: 8px 10px;
- top: 1.1em;
- border: 2px solid #222;
- }
- .menu-toggle.x.toggle-on {
- border: 2px solid #222;
- }
- .menu-toggle.x.toggle-on .lines {
- background: transparent;
- }
- .singular .menu-toggle.x.toggle-on,
- .error404 .menu-toggle.x.toggle-on,
- .search-no-results .menu-toggle.x.toggle-on,
- .has-custom-header .menu-toggle.x.toggle-on {
- border-color: white;
- }
- .custom-logo {
- margin-top: 2.75em;
- margin-bottom: -2.75em;
- }
- .but-no-site-title .custom-logo {
- margin-bottom: 2.75em;
- }
- .site-title,
- .site-description {
- width: 1000px;
- margin-top: .75em;
- margin-right: auto;
- margin-left: auto;
- }
- .site-title {
- font-size: 5.55em;
- }
- .site-description {
- font-size: 1.667em;
- margin: 0 auto 3em;
- padding: 0;
- }
- .has-custom-header .site-branding {
- -webkit-background-size: cover;
- -moz-background-size: cover;
- background-size: cover;
- }
- .has-custom-header.but-no-site-title:not(.singular):not(.error404):not(.search-no-results) .site-branding {
- min-height: 300px;
- }
- .comment-author img {
- margin-left: -102px;
- margin-bottom: 0;
- }
- .site-main .comment-navigation,
- .site-main .posts-navigation,
- .site-main .post-navigation {
- font-size: 1.11em;
- }
- .comment-navigation .nav-previous a,
- .posts-navigation .nav-previous a,
- .post-navigation .nav-previous a,
- .comment-navigation .nav-next a,
- .posts-navigation .nav-next a,
- .post-navigation .nav-next a {
- width: 220px;
- }
- /* Single posts */
- .singular .site-title,
- .error404 .site-title,
- .search-no-results .site-title {
- font-size: 1.667em;
- }
- .singular .entry-title {
- font-size: 4.44em;
- width: 1000px;
- margin: 0 auto;
- }
- .site-info .sep {
- line-height: 1;
- display: inline;
- margin: 0 5px;
- visibility: visible;
- clear: none;
- width: auto;
- height: auto;
- }
- img.size-big,
- .wp-caption.caption-big {
- display: inline-block;
- float: none;
- margin-left: -170px;
- max-width: 1000px;
- }
- .wp-caption.caption-big .wp-caption-text {
- width: 1000px;
- }
- }
- /* Really large screens */
- @media screen and (min-width: 1400px) {
- .site-title,
- .site-description,
- .singular .entry-title {
- width: 1366px;
- }
- }
|