123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700 |
- /*
- Theme Name: Radcliffe 2
- Theme URI: http://wordpress.com/themes/radcliffe-2
- Author: Anders Norén
- Author URI: http://www.andersnoren.se
- Description: A theme for bloggers who want their content to take center stage.
- Version: 2.0.9-wpcom
- License: GNU General Public License v2 or later
- License URI: http://www.gnu.org/licenses/gpl-2.0.html
- Text Domain: radcliffe-2
- Tags: author-bio, custom-menu, featured-images, fluid-layout, gray, one-column, responsive-layout, sticky-post, threaded-comments, white
- 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.
- Radcliffe 2 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.io/normalize.css/
- */
- /*--------------------------------------------------------------
- >>> TABLE OF CONTENTS:
- ----------------------------------------------------------------
- # Normalize
- # Typography
- # Elements
- # Navigation
- ## Links
- ## Menus
- # Forms
- # Accessibility
- # Alignments
- # Clearings
- # Layout
- # Widgets
- # Content
- ## Posts and pages
- ## Comments
- # Infinite scroll
- # Media
- ## Captions
- ## Galleries
- # Media Queries
- --------------------------------------------------------------*/
- /*--------------------------------------------------------------
- # Normalize
- --------------------------------------------------------------*/
- html {
- font-family: sans-serif;
- font-size: 62.5%; /* 10px */
- -webkit-text-size-adjust: 100%;
- -ms-text-size-adjust: 100%;
- }
- body {
- margin: 0;
- }
- article,
- aside,
- details,
- figcaption,
- figure,
- footer,
- header,
- main,
- menu,
- nav,
- section,
- summary {
- display: block;
- }
- audio,
- canvas,
- progress,
- video {
- display: inline-block;
- vertical-align: baseline;
- }
- audio:not([controls]) {
- display: none;
- height: 0;
- }
- [hidden],
- template {
- display: none;
- }
- a {
- background-color: transparent;
- }
- a:active,
- a:hover {
- outline: 0;
- }
- abbr[title] {
- border-bottom: 1px dotted;
- }
- b,
- strong {
- font-weight: bold;
- }
- dfn {
- font-style: italic;
- }
- h1 {
- font-size: 2em;
- margin: 0.67em 0;
- }
- mark {
- background: #ff0;
- color: #000;
- }
- small {
- font-size: 80%;
- }
- sub,
- sup {
- font-size: 75%;
- line-height: 0;
- position: relative;
- vertical-align: baseline;
- }
- sup {
- top: -0.5em;
- }
- sub {
- bottom: -0.25em;
- }
- img {
- border: 0;
- }
- svg:not(:root) {
- overflow: hidden;
- }
- figure {
- margin: 1em 40px;
- }
- hr {
- box-sizing: content-box;
- height: 0;
- }
- pre {
- overflow: auto;
- }
- code,
- kbd,
- pre,
- samp {
- font-family: monospace, monospace;
- font-size: 1em;
- }
- button,
- input,
- optgroup,
- select,
- textarea {
- color: inherit;
- font: inherit;
- margin: 0;
- }
- button {
- overflow: visible;
- }
- button,
- select {
- text-transform: none;
- }
- button,
- html input[type="button"],
- input[type="reset"],
- input[type="submit"] {
- -webkit-appearance: button;
- cursor: pointer;
- }
- button[disabled],
- html input[disabled] {
- cursor: default;
- }
- button::-moz-focus-inner,
- input::-moz-focus-inner {
- border: 0;
- padding: 0;
- }
- input {
- line-height: normal;
- }
- input[type="checkbox"],
- input[type="radio"] {
- box-sizing: border-box;
- padding: 0;
- }
- input[type="number"]::-webkit-inner-spin-button,
- input[type="number"]::-webkit-outer-spin-button {
- height: auto;
- }
- input[type="search"]::-webkit-search-cancel-button,
- input[type="search"]::-webkit-search-decoration {
- -webkit-appearance: none;
- }
- fieldset {
- border: 1px solid #c0c0c0;
- margin: 0 2px;
- padding: 0.35em 0.625em 0.75em;
- }
- legend {
- border: 0;
- padding: 0;
- }
- textarea {
- overflow: auto;
- }
- optgroup {
- font-weight: bold;
- }
- table {
- border-collapse: collapse;
- border-spacing: 0;
- }
- td,
- th {
- padding: 0;
- }
- body a,
- .tagcloud a:before {
- -webkit-transition: all 0.1s ease-in-out;
- transition: all 0.1s ease-in-out;
- }
- .post-nav a,
- .respond input,
- .respond textarea,
- .site-title a,
- .main-navigation a,
- .main-navigation > .has-children > a::after,
- .main-navigation > .menu-item-has-children > a::after,
- .menu-toggle,
- .search-button,
- #infinite-handle span,
- .media-caption,
- .entry-content input[type="submit"],
- .entry-content input[type="reset"],
- .entry-content input[type="button"] {
- -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
- transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
- }
- .main-navigation ul ul > li:first-child:after,
- .main-navigation ul ul > li:first-child:hover:after,
- .main-navigation ul ul ul > li:first-child:after,
- .main-navigation ul ul ul > li:first-child:hover:after {
- -webkit-transition: border-color 0.15s ease-in-out;
- transition: border-color 0.15s ease-in-out;
- }
- .entry-header,
- .entry-title,
- .search-form .s {
- -webkit-transition: all 0.3s ease-in-out;
- transition: all 0.3s ease-in-out;
- }
- /*--------------------------------------------------------------
- # Typography
- --------------------------------------------------------------*/
- body,
- button,
- input,
- select,
- textarea {
- color: #222;
- font-family: Palatino,"Palatino Linotype","Palatino LT STD","Book Antiqua",Times,"Times New Roman",serif;
- font-size: 20px;
- font-size: 2rem;
- line-height: 1.8;
- }
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- clear: both;
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
- line-height: 1.1;
- margin-top: 0;
- margin-bottom: 18px;
- }
- h1 {
- font-size: 36px;
- line-height: 1.25;
- }
- h2 {
- font-size: 30px;
- line-height: 1.2;
- }
- h3 {
- font-size: 25px;
- line-height: 1.44;
- }
- h4 {
- font-size: 20px;
- line-height: 1.8em;
- }
- h5,
- h6 {
- font-size: 15px;
- line-height: 2.4em;
- text-transform: uppercase;
- }
- p {
- margin: 0 0 1.8em;
- }
- dfn,
- cite,
- em,
- i {
- font-style: italic;
- }
- address {
- margin: 0 0 1.8em;
- }
- pre {
- background: #eee;
- font-family: "Courier 10 Pitch", Courier, monospace;
- font-size: 16px;
- font-size: 1.6rem;
- 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: 16px;
- font-size: 1.6rem;
- }
- abbr,
- acronym {
- border-bottom: 1px dotted #666;
- cursor: help;
- }
- mark,
- ins {
- background: #fff9c0;
- text-decoration: none;
- }
- big {
- font-size: 125%;
- }
- .header-search .s,
- .entry-meta,
- .widget-title,
- .site-footer,
- .main-navigation a,
- .archive .page-title,
- .entry-footer,
- .posts-navigation,
- .post-navigation,
- .post-navigation a span,
- .comment-header,
- .comment-actions,
- .comment-navigation,
- #wp-calendar tfoot a,
- form,
- input,
- button,
- .button,
- input[type="button"],
- input[type="reset"],
- input[type="submit"],
- #infinite-handle span {
- font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
- }
- /*--------------------------------------------------------------
- # Elements
- --------------------------------------------------------------*/
- html {
- box-sizing: border-box;
- }
- *,
- *:before,
- *:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
- box-sizing: inherit;
- }
- body {
- background: #fff; /* Fallback for when there is no custom background color defined. */
- }
- blockquote:before,
- blockquote:after,
- q:before,
- q:after {
- content: "";
- }
- blockquote,
- q {
- quotes: "" "";
- }
- blockquote {
- color: #666;
- font-style: italic;
- text-align: center;
- margin: 0 0.5em;
- }
- blockquote:before,
- blockquote:after {
- background: #ddd;
- content: "";
- display: block;
- height: 2px;
- margin: 20px auto;
- width: 80px;
- }
- blockquote blockquote:after {
- display: none;
- }
- hr {
- background-color: #ccc;
- border: 0;
- height: 1px;
- margin-bottom: 1.6em;
- }
- ul,
- ol {
- margin: 0 0 1.6em;
- }
- ul {
- list-style: disc;
- }
- ol {
- list-style: decimal;
- }
- li > ul,
- li > ol {
- margin-bottom: 0;
- }
- dt {
- font-weight: bold;
- }
- dd {
- margin: 0 1.6em 1.6em;
- }
- img {
- height: auto; /* Make sure images are scaled correctly. */
- max-width: 100%; /* Adhere to container width. */
- }
- figure {
- margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
- }
- table {
- border-collapse: collapse;
- border-spacing: 0;
- empty-cells: show;
- font-size: 0.9em;
- margin: 0 0 1.6em;
- width: 100%;
- }
- thead {
- vertical-align: bottom;
- white-space: nowrap;
- }
- tbody {
- border-bottom: 1px solid #eee;
- border-top: 1px solid #eee;
- }
- th {
- color: #444;
- font-weight: bold;
- text-align: left;
- }
- th,
- td {
- border-bottom: 1px solid #eee;
- line-height: 120%;
- margin: 0;
- overflow: visible;
- padding: 2%;
- }
- tr:last-child td {
- border-bottom: none;
- }
- table tbody > tr:nth-child(odd) > th,
- table tbody > tr:nth-child(odd) > td {
- background: #f9f9f9;
- }
- /*--------------------------------------------------------------
- # Navigation
- --------------------------------------------------------------*/
- /*--------------------------------------------------------------
- ## Links
- --------------------------------------------------------------*/
- a,
- a:visited {
- color: #ca2017;
- text-decoration: none;
- }
- a:hover,
- a:focus,
- a:active {
- color: #e43a31;
- text-decoration: underline;
- }
- a:focus {
- outline: thin dotted;
- text-decoration: none;
- }
- a:hover,
- a:active {
- outline: 0;
- }
- /*--------------------------------------------------------------
- ## Menus
- --------------------------------------------------------------*/
- .main-navigation {
- display: inherit;
- flex: 1 1 auto;
- margin-bottom: 18px;
- position: relative;
- z-index: 100;
- }
- .main-navigation ul {
- display: none;
- list-style: none;
- margin: 0;
- padding-left: 0;
- }
- #header-menu:after {
- clear: both;
- content: "";
- display: table;
- }
- .main-navigation li {
- float: left;
- margin: 0;
- position: relative;
- }
- .main-navigation a {
- color: #222;
- display: block;
- font-size: 15px;
- font-size: 1.5rem;
- font-weight: 700;
- letter-spacing: 1px;
- line-height: 1.2;
- padding: 9px 15px;
- text-decoration: none;
- text-transform: uppercase;
- word-wrap: break-word;
- }
- .main-navigation a .icon {
- margin-left: 6px;
- }
- .main-navigation ul ul > li:hover > a,
- .main-navigation ul ul > li.focus > a,
- .main-navigation ul ul > li.current-menu-item > a {
- border-radius: 0;
- }
- .main-navigation ul ul > li:first-child > a {
- border-top-left-radius: 6px;
- border-top-right-radius: 6px;
- }
- .main-navigation ul ul > li:last-child > a {
- border-bottom-left-radius: 6px;
- border-bottom-right-radius: 6px;
- }
- .main-navigation ul ul ul {
- left: -999em;
- top: 0;
- }
- .main-navigation ul ul a {
- background: #222;
- color: #fff;
- font-weight: 400;
- text-transform: none;
- width: 200px;
- }
- .main-navigation ul li:hover > ul,
- .main-navigation ul li.focus > ul {
- left: auto;
- }
- .main-navigation ul ul li:hover > ul,
- .main-navigation ul ul li.focus > ul {
- left: 100%;
- }
- .main-navigation .current_page_item > a,
- .main-navigation .current-menu-item > a,
- .main-navigation .current_page_ancestor > a,
- .main-navigation .current-menu-ancestor > a {
- }
- /* Small menu. */
- .menu-toggle {
- background-color: transparent;
- color: #222;
- font-size: 16px;
- font-weight: 600;
- text-transform: uppercase;
- }
- .menu-toggle .icon {
- font-size: 20px;
- margin-right: 6px;
- }
- .menu-toggle:focus .icon,
- .menu-toggle:hover .icon {
- fill: #fff;
- }
- .toggled .menu-toggle .icon-menu,
- .menu-toggle .icon-close {
- display: none;
- }
- .toggled .menu-toggle .icon-close {
- display: inline-block;
- }
- /* Jetpack social menu */
- .jetpack-social-navigation {
- flex: 0 1 auto;
- margin: 0 0 18px;
- }
- .site-header .jetpack-social-navigation ul {
- margin: 0;
- }
- .site-header .jetpack-social-navigation-svg .icon {
- height: 1.25em;
- width: 1.25em;
- }
- .jetpack-social-navigation li {
- margin-right: 0.25em;
- }
- .jetpack-social-navigation a {
- padding: 0 0.5em 0.5em 0;
- }
- .jetpack-social-navigation a,
- .jetpack-social-navigation a:visited {
- color: #222;
- }
- .jetpack-social-navigation a:hover,
- .jetpack-social-navigation a:focus {
- color: #ca2017;
- }
- /* Comment and Post menus */
- .comment-navigation,
- .posts-navigation,
- .post-navigation {
- overflow: hidden;
- }
- .post-nav-wrapper {
- border-top: 1px solid #ddd;
- }
- .post-navigation {
- margin: 0 auto;
- padding-top: 36px;
- padding-bottom: 36px;
- }
- #comment-nav-above {
- margin-bottom: 36px;
- }
- #comment-nav-below {
- margin-top: 36px;
- }
- .comment-navigation div,
- .posts-navigation div {
- text-align: center;
- }
- .comment-navigation a,
- .posts-navigation a {
- color: #666;
- display: block;
- font-size: 14px;
- font-size: 1.4rem;
- font-weight: 700;
- line-height: 2.57;
- text-transform: uppercase;
- }
- .posts-navigation a:hover,
- .comment-navigation a:hover {
- color: #ca2017;
- text-decoration: none;
- }
- .posts-navigation .nav-previous,
- .comment-navigation .nav-previous {
- margin-bottom: 0;
- }
- .post-navigation a {
- color: #222;
- font-family: Palatino,"Palatino Linotype","Palatino LT STD","Book Antiqua",Times,"Times New Roman",serif;
- font-size: 20px;
- font-size: 2rem;
- font-style: italic;
- }
- .post-navigation a span {
- color: #707070;
- display: block;
- font-size: 14px;
- font-size: 1.4rem;
- font-style: normal;
- font-weight: 600;
- line-height: 2.58;
- text-transform: uppercase;
- }
- .post-navigation a:hover {
- color: #ca2017;
- text-decoration: none;
- }
- .nav-previous {
- margin-bottom: 18px;
- }
- .nav-next .icon {
- margin-left: 6px;
- }
- .nav-previous .icon {
- margin-right: 6px;
- }
- /*--------------------------------------------------------------
- # Forms
- --------------------------------------------------------------*/
- button,
- .button,
- input[type="button"],
- input[type="reset"],
- input[type="submit"] {
- -webkit-appearance: none;
- background: #222;
- border: none;
- border-radius: 3px;
- color: #fff;
- font-size: 14px;
- font-size: 1.4rem;
- line-height: 1.29;
- margin: 0;
- padding: 9px 18px;
- }
- button:hover,
- .button:hover,
- input[type="button"]:hover,
- input[type="reset"]:hover,
- input[type="submit"]:hover {
- background: #ca2017;
- color: #fff;
- cursor: pointer;
- text-decoration: none;
- }
- button:focus,
- .button:focus,
- input[type="button"]:focus,
- input[type="reset"]:focus,
- input[type="submit"]:focus,
- button:active,
- .button:active,
- input[type="button"]:active,
- input[type="reset"]:active,
- input[type="submit"]:active {
- background: #ca2017;
- color: #fff;
- cursor: pointer;
- }
- 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: #666;
- border: 1px solid #ccc;
- border-radius: 3px;
- padding: 3px;
- max-width: 100%;
- }
- select {
- border: 1px solid #ccc;
- }
- 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 {
- border-color: #222;
- color: #111;
- }
- textarea {
- width: 100%;
- }
- /*--------------------------------------------------------------
- # 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;
- word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
- }
- .screen-reader-text:focus {
- background-color: #f1f1f1;
- border-radius: 3px;
- box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
- clip: auto !important;
- color: #21759b;
- display: block;
- font-size: 14px;
- font-size: 0.875rem;
- font-weight: bold;
- height: auto;
- left: 5px;
- line-height: normal;
- padding: 15px 23px 14px;
- text-decoration: none;
- top: 5px;
- width: auto;
- z-index: 100000; /* Above WP toolbar. */
- }
- /* Do not show the outline on the skip link target. */
- #content[tabindex="-1"]:focus {
- outline: 0;
- }
- /*--------------------------------------------------------------
- # Alignments
- --------------------------------------------------------------*/
- .alignleft {
- display: inline;
- float: left;
- margin-right: 1.6em;
- }
- .alignright {
- display: inline;
- float: right;
- margin-left: 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;
- }
- /*--------------------------------------------------------------
- # Layout
- --------------------------------------------------------------*/
- .site-header {
- border-top: 5px solid #222;
- padding-bottom: 20px;
- position: relative;
- }
- .site-header:before {
- border-top: 1px solid rgba(255,255,255,0.5);
- content: "";
- left: 0;
- position: absolute;
- top: -5px;
- width: 100%;
- }
- .menu-wrapper {
- margin: 0 auto;
- max-width: 92%;
- width: 1300px;
- }
- .header-wrapper {
- margin: 0 auto;
- max-width: 92%;
- padding: 36px 0 18px;
- position: relative;
- width: 1300px;
- }
- .single.no-featured-image .site-header,
- .page.no-featured-image .site-header {
- border-bottom: 1px solid #ddd;
- }
- .header-image img {
- width: 100%;
- }
- .contact-info-area {
- border: 1px solid #ddd;
- color: #888;
- font-size: 16px;
- font-size: 1.6rem;
- padding: 18px 10px 8px;
- text-align: center;
- }
- .site-header .contact-info-area {
- border-width: 0 0 1px;
- }
- .site > .contact-info-area {
- border-width: 1px 0 0;
- }
- .contact-info-area,
- .contact-info-area a {
- color: #222;
- }
- .contact-info-area a:focus,
- .contact-info-area a:hover {
- color: #ca2017;
- text-decoration: none;
- }
- .contact-info-area a:focus span,
- .contact-info-area a:hover span {
- text-decoration: underline;
- }
- .contact-info-area span,
- .contact-info-area span a {
- display: inline-block;
- }
- .contact-info-area span a,
- .contact-info-wrapper > span:last-of-type {
- padding: 0 10px 9px;
- }
- .contact-info-area span:first-child {
- margin-left: 0;
- }
- .contact-info-area span.contact-info-label {
- position: absolute;
- left: -999999em;
- }
- .contact-info-area .icon {
- fill: #ca2017;
- height: 1.5em;
- width: 1.5em;
- }
- .site-branding {
- position: relative;
- text-align: center;
- }
- .custom-logo-link {
- display: block;
- margin-bottom: 18px;
- text-align: center;
- }
- .custom-logo-link + .site-title {
- margin-top: 36px;
- }
- .site-title {
- font-family: Palatino,"Palatino Linotype","Palatino LT STD","Book Antiqua",Times,"Times New Roman",serif;
- font-size: 40px;
- font-size: 4rem;
- font-weight: 600;
- line-height: 1;
- margin-bottom: 0;
- margin-top: 0;
- word-wrap: break-word;
- }
- .site-title a {
- color: #222;
- }
- .site-title a:hover {
- color: #ca2017;
- text-decoration: none;
- }
- .site-description {
- font-style: italic;
- line-height: 2;
- margin: 0;
- }
- .header-search {
- background: #222;
- display: none;
- padding: 50px 0;
- text-align: center;
- }
- .header-search-wrapper {
- margin: 0 auto;
- max-width: 92%;
- width: 1300px;
- }
- .header-search .s {
- background: none;
- border: none;
- color: #fff !important;
- display: block;
- font-size: 36px;
- font-size: 3.6rem;
- font-weight: 300;
- margin: 0;
- width: 100%;
- }
- .header-search .s::-webkit-input-placeholder {
- color: rgba(255,255,255,0.5);
- }
- .header-search .s:-ms-input-placeholder {
- color: rgba(255,255,255,0.5);
- }
- .header-search .s:focus {
- outline: none;
- }
- .site-footer {
- border-top: 1px solid #ddd;
- font-size: 16px;
- text-transform: uppercase;
- text-align: center;
- }
- .site-info {
- font-size: 14px;
- font-size: 1.4rem;
- font-weight: 600;
- line-height: 2.58;
- margin: auto;
- max-width: 92%;
- padding: 36px 0;
- text-transform: uppercase;
- }
- .site-info, .site-info a {
- color: #707070;
- }
- .site-info a:hover {
- color: #ca2017;
- text-decoration: none;
- }
- /*--------------------------------------------------------------
- # Widgets
- --------------------------------------------------------------*/
- .widget-area {
- border-top: 1px solid #ddd;
- clear: both;
- padding: 50px 0 10px;
- }
- .widget-wrapper {
- margin: 0 auto;
- max-width: 92%;
- width: 1300px;
- }
- .widget-area .widget-column {
- width: 100%;
- }
- .widget {
- font-size: 16px;
- font-size: 1.6rem;
- margin: 0 0 3.6em;
- }
- .widget-title {
- font-size: 16px;
- font-size: 1.6rem;
- line-height: 1.125;
- margin: 0 0 18px;
- text-transform: uppercase;
- }
- .widget ul {
- list-style-type: none;
- padding-left: 0;
- }
- .widget li {
- border-top: 1px solid rgba(0, 0, 0, 0.075);
- padding: 8px 0;
- }
- .widget ul ul {
- margin-top: 9px;
- }
- .widget ul ul li:last-child {
- padding-bottom: 0;
- }
- /* Make sure select elements fit in widgets. */
- .widget select {
- max-width: 100%;
- }
- /* Calendar widget */
- #wp-calendar {
- max-width: 100%;
- text-align: center;
- width: 100%;
- }
- #wp-calendar,
- #wp-calendar caption,
- #wp-calendar tr,
- #wp-calendar td,
- #wp-calendar th {
- text-align: center;
- }
- #wp-calendar td {
- padding: 3% 2%;
- }
- #wp-calendar caption {
- line-height: 1;
- padding-bottom: 20px;
- text-transform: capitalize;
- }
- #wp-calendar thead th {
- border-bottom: 1px solid #eee;
- border-top: 1px solid #eee;
- font-size: 18px;
- font-size: 1.8rem;
- font-weight: 600;
- line-height: normal;
- padding: 3% 2% 1.75%;
- text-transform: uppercase;
- }
- #wp-calendar tbody {
- border-bottom: 1px solid #eee;
- }
- #wp-calendar tfoot td {
- padding: 0;
- }
- #wp-calendar tfoot #prev {
- text-align: left;
- }
- #wp-calendar tfoot #next {
- text-align: right;
- }
- #wp-calendar tfoot a {
- color: #666;
- display: block;
- font-size: 14px;
- font-size: 1.4rem;
- font-weight: 700;
- padding: 12px 0;
- text-transform: uppercase;
- }
- #wp-calendar tfoot a:hover {
- color: #ca2017;
- text-decoration: none;
- }
- /* widget */
- .search-form .search-field {
- -webkit-appearance: none;
- background: #eee;
- border: none;
- border-radius: 0;
- color: #444;
- font-size: 18px;
- font-size: 1.8rem;
- padding: 5% 20% 5% 5%;
- width: 100%;
- }
- .search-submit {
- display: none;
- }
- /*--------------------------------------------------------------
- # Content
- --------------------------------------------------------------*/
- /*--------------------------------------------------------------
- ## Hero Area
- --------------------------------------------------------------*/
- .hero-area {
- background: #888;
- color: #fff;
- position: relative;
- text-align: center;
- display: flex;
- align-items: center;
- }
- .hero-area.has-post-thumbnail {
- background-position: 50% 50%;
- background-size: cover;
- }
- .hero-area:before {
- background: #111111;
- bottom: 0;
- content: "";
- display: block;
- left: 0;
- opacity: 0.4;
- position: absolute;
- right: 0;
- top: 0;
- }
- .hero-area-wrapper {
- font-size: 18px;
- font-size: 1.8rem;
- margin: 0 auto;
- max-width: 92%;
- padding: 36px 0;
- position: relative;
- width: 740px;
- }
- .hero-area-title {
- font-size: 24px;
- font-size: 2.4rem;
- line-height: 1.5;
- margin-top: 0;
- margin-bottom: 9px;
- }
- .hero-area-button {
- margin-top: 18px;
- }
- .hero-area .button {
- background: #fff;
- color: #ca2017;
- display: inline-block;
- font-size: 16px;
- font-size: 1.6rem;
- padding: 12px 24px;
- }
- .hero-area .button:focus,
- .hero-area .button:hover {
- background: #fff;
- color: #ca2017;
- opacity: 0.75;
- }
- .hero-area .button,
- .hero-area .button:focus,
- .hero-area .button:hover {
- background: #fff;
- color: #222;
- }
- .hero-area-title:empty,
- .hero-area-content:empty,
- .hero-area-button a:empty {
- display: none;
- }
- /*--------------------------------------------------------------
- ## Posts & Pages
- --------------------------------------------------------------*/
- .sticky {
- display: block;
- }
- .hentry {
- margin-bottom: 36px;
- position: relative;
- }
- .archive .hentry,
- .blog .hentry,
- .search-results .hentry {
- margin: 0;
- }
- .archive .entry-header,
- .blog .entry-header,
- .search-results .entry-header {
- background: rgba(0, 0, 0, 0.55);
- width: 100%;
- }
- .archive article:nth-of-type(even) .entry-header,
- .blog article:nth-of-type(even) .entry-header,
- .search-results article:nth-of-type(even) .entry-header {
- background: rgba(0, 0, 0, 0.6);
- }
- .archive article .entry-header:hover,
- .blog article .entry-header:hover,
- .search-results article .entry-header:hover {
- background: rgba(0, 0, 0, 0.75);
- }
- .archive .entry-thumbnail + .entry-header,
- .blog .entry-thumbnail + .entry-header,
- .search .entry-thumbnail + .entry-header {
- position: absolute;
- bottom: 0;
- left: 0;
- }
- .archive .entry-header .entry-meta a,
- .blog .entry-header .entry-meta a,
- .search-results .entry-header .entry-meta a {
- color: #fff;
- }
- .entry-header {
- padding: 36px 0;
- text-align: center;
- }
- .entry-thumbnail {
- background-size: cover;
- background-position: 50% 50%;
- display: block;
- min-height: 270px;
- max-height: 684px;
- overflow: hidden;
- position: relative;
- width: 100%;
- }
- .entry-title {
- font-family: Palatino,"Palatino Linotype","Palatino LT STD","Book Antiqua",Times,"Times New Roman",serif;
- font-size: 36px;
- font-size: 3.6rem;
- font-weight: 600;
- line-height: 1.25;
- margin: 0 auto;
- max-width: 92%;
- word-wrap: break-word;
- width: 1040px;
- }
- .blog .entry-title,
- .archive .entry-title,
- .search .entry-title {
- text-shadow: 2px 2px 0 rgba(0,0,0,0.1);
- }
- .entry-title a {
- color: #fff;
- text-decoration: none;
- }
- .entry-title a:hover {
- color: #fd534a;
- }
- .entry-meta,
- .entry-meta a,
- .entry-meta a:visited {
- color: #666;
- font-size: 12px;
- font-size: 1.2rem;
- font-weight: 600;
- letter-spacing: 1px;
- line-height: 1.5;
- margin-bottom: 18px;
- text-decoration: none;
- text-transform: uppercase;
- }
- .entry-meta a:hover {
- color: #ca2017;
- text-decoration: none;
- }
- .updated:not(.published) {
- display: none;
- }
- .byline:before,
- .comments-link:before {
- content: "/";
- color: rgba(255,255,255,0.5);
- margin: 0 0.5em;
- }
- .single .byline:before,
- .single .comments-link:before {
- color: rgba(0,0,0,0.15);
- }
- .home .sticky .byline,
- .home .sticky .comments-link {
- display: none;
- }
- .date-hidden .byline:before,
- .date-hidden.author-hidden .comments-link:before {
- content: "";
- }
- .page-content,
- .entry-content,
- .entry-summary,
- .entry-footer,
- .post-navigation,
- .posts-navigation,
- .comments-wrapper,
- .respond-wrapper {
- margin-left: auto;
- margin-right: auto;
- max-width: 92%;
- width: 740px;
- }
- .page-content,
- .entry-content,
- .entry-summary {
- font-size: 18px;
- font-size: 1.8rem;
- line-height: 1.8;
- }
- .page-content > :last-child,
- .entry-content > :last-child,
- .entry-summary > :last-child,
- .comment-content > :last-child {
- margin-bottom: 0;
- }
- .entry-footer {
- font-size: 16px;
- font-size: 1.6rem;
- line-height: 1.69;
- display: block;
- margin-top: 36px;
- }
- .entry-footer a {
- color: #666;
- }
- .entry-footer a:hover {
- color: #ca2017;
- text-decoration: none;
- }
- .entry-author {
- margin-right: 0;
- margin-bottom: 36px;
- }
- .entry-links {
- flex: 2;
- }
- .entry-author,
- .entry-links {
- border-top: 1px solid #ddd;
- padding-top: 18px;
- }
- .author-avatar img {
- border-radius: 50%;
- }
- .author-title {
- font-size: 25px;
- font-size: 2.5rem;
- line-height: 1.44;
- margin: 0 0 8px;
- }
- .cat-links,
- .tags-links,
- .edit-link {
- display: block;
- padding-left: 30px;
- position: relative;
- }
- .cat-links .icon,
- .tags-links .icon,
- .edit-link .icon {
- fill: #adadad;
- height: 24px;
- left: 0;
- position: absolute;
- top: 2px;
- width: 24px;
- }
- .cat-links,
- .tags-links {
- margin-bottom: 0.5em;
- }
- .author-link {
- display: block;
- }
- .page-links {
- clear: both;
- margin: 0 0 1.6em;
- }
- .page-links span {
- display: inline-block;
- padding: 0 0.25em;
- margin: 0 0.2em 0.2em 0.2em;
- }
- .page-header {
- border-top: 1px solid #ddd;
- padding: 54px 0;
- text-align: center;
- }
- .page-content {
- padding: 36px 0;
- }
- .archive .page-title,
- .search .page-title,
- .error404 .page-title {
- color: #707070;
- font-size: 16px;
- font-size: 1.6rem;
- font-weight: 600;
- line-height: 2.25;
- letter-spacing: 1px;
- margin: 0 0 18px;
- text-transform: uppercase;
- }
- .error-404 .page-header,
- .no-results .page-header,
- .search-no-results .page-header {
- border-bottom: 1px solid #ddd;
- padding: 30px 0;
- }
- /*--------------------------------------------------------------
- ## Comments
- --------------------------------------------------------------*/
- .comments-area,
- .respond {
- background: #f1f1f1;
- border-top: 1px solid #ddd;
- overflow: hidden;
- }
- .comments-area .respond:first-child {
- border-top: 0;
- }
- .comments-wrapper {
- padding-top: 60px;
- }
- .respond {
- padding-top: 36px;
- }
- .comments-wrapper,
- .respond-wrapper {
- padding-bottom: 36px;
- }
- .respond-wrapper .no-comments {
- margin-bottom: 0;
- text-align: center;
- }
- .comments-title {
- border-bottom: 1px solid #ddd;
- margin: 0;
- padding-bottom: 17px;
- }
- .comments-title,
- .comment-reply-title {
- font-size: 24px;
- font-size: 2.4rem;
- font-weight: 700;
- margin-bottom: 36px;
- text-align: center;
- }
- .comment-reply-title {
- margin-bottom: 18px;
- }
- .comments .children {
- margin-left: 5%;
- }
- .comment-wrapper,
- .pingback,
- .trackback {
- margin-left: 0;
- }
- .comment-wrapper:after {
- display: none;
- }
- .comment-list {
- padding: 0;
- }
- .comment-list,
- ol.children {
- list-style-type: none;
- }
- ol.children ol.children {
- padding-left: 0;
- }
- .comment-list li {
- margin-top: 18px;
- position: relative;
- }
- .comment-list > li:first-child {
- margin-top: 0;
- }
- .comment-wrapper,
- .pingback ,
- .trackback {
- background: #fff;
- border-radius: 6px;
- padding: 30px;
- position: relative;
- }
- .comment-wrapper:after {
- border: 12px solid transparent;
- border-right-color: #fff;
- content: "";
- display: none;
- left: -24px;
- position: absolute;
- top: 28px;
- }
- .comment .avatar {
- border-radius: 50%;
- display: none;
- height: auto;
- left: 0;
- max-width: 80px;
- position: absolute;
- top: 0;
- }
- .comment-header cite {
- color: #333;
- font-style: normal;
- font-weight: 700;
- }
- .comment-header cite a {
- color: #333;
- }
- .comment-header span {
- color: #707070;
- font-size: 13px;
- font-size: 1.3rem;
- font-weight: 700;
- margin-left: 5px;
- }
- .comment-header span a {
- color: #707070;
- }
- .comment-content {
- font-size: 18px;
- font-size: 1.8rem;
- line-height: 2;
- margin: 18px 0;
- }
- .comment-content a {
- word-wrap: break-word;
- }
- .comment-content li {
- margin-top: 0;
- }
- .comment-actions {
- line-height: 1;
- }
- .comment-actions a {
- font-size: 14px;
- font-size: 1.4rem;
- font-weight: 700;
- margin-right: 10px;
- text-transform: uppercase;
- }
- form label,
- .comment-respond .logged-in-as,
- .comment-respond .comment-notes {
- font-size: 14px;
- font-size: 1.4rem;
- }
- .bypostauthor {
- display: block;
- }
- .bypostauthor .by-post-author {
- background: #ca2017;
- border-radius: 99px;
- height: 10px;
- left: 12px;
- position: absolute;
- text-indent: -9999px;
- top: 39px;
- width: 10px;
- z-index: 10;
- }
- /*--------------------------------------------------------------
- # Infinite scroll
- --------------------------------------------------------------*/
- /* Globally hidden elements when Infinite Scroll is supported and in use. */
- .infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
- .infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
- display: none;
- }
- /* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
- .infinity-end.neverending .site-footer {
- display: block;
- }
- #infinite-handle span,
- .infinite-loader {
- height: 110px;
- padding: 45px 0;
- }
- #infinite-handle span {
- background: #eee;
- color: #666;
- display: block;
- float: left;
- font-size: 18px;
- font-size: 1.8rem;
- font-weight: 700;
- letter-spacing: 1px;
- text-align: center;
- text-transform: uppercase;
- width: 100%;
- }
- #infinite-handle span:hover {
- background: #ca2017;
- color: #fff;
- }
- .infinite-loader {
- background-color: #eee;
- }
- .infinite-loader .spinner {
- left: 50% !important;
- -webkit-transform: translate(-50%, 0);
- -ms-transform: translate(-50%, 0);
- transform: translate(-50%, 0);
- }
- /*--------------------------------------------------------------
- # Jetpack Contact Forms
- --------------------------------------------------------------*/
- .site-content .contact-form input[type="radio"],
- .site-content .contact-form input[type="checkbox"] {
- margin-bottom: 6px;
- margin-right: .3em;
- vertical-align: middle;
- }
- .site-content .contact-form label.checkbox,
- .site-content .contact-form label.checkbox-multiple,
- .site-content .contact-form label.radio {
- font-weight: normal;
- font-style: normal;
- margin-bottom: 0;
- float: none;
- line-height: 1.8;
- }
- .site-content .contact-form > div {
- margin-bottom: 18px;
- }
- .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: 4px;
- max-width: 100%;
- }
- /*--------------------------------------------------------------
- # Media
- --------------------------------------------------------------*/
- .page-content .wp-smiley,
- .entry-content .wp-smiley,
- .comment-content .wp-smiley {
- border: none;
- margin-bottom: 0;
- margin-top: 0;
- padding: 0;
- }
- /* Make sure embeds and iframes fit their containers. */
- embed,
- iframe,
- object {
- max-width: 100%;
- }
- /* SVG Icons base styles. */
- .icon {
- display: inline-block;
- fill: currentColor;
- height: 1em;
- position: relative;
- top: -0.0625em;
- vertical-align: middle;
- width: 1em;
- }
- /*--------------------------------------------------------------
- ## Captions
- --------------------------------------------------------------*/
- .wp-caption,
- .gallery-caption {
- font-size: 0.8em;
- 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.8075em 0;
- }
- .wp-caption-text {
- opacity: 0.8;
- text-align: center;
- }
- /*--------------------------------------------------------------
- ## Galleries
- --------------------------------------------------------------*/
- .gallery {
- margin: 0 -2% 1.6em;
- }
- .gallery-item {
- display: inline-block;
- padding: 0 1% 0;
- text-align: center;
- vertical-align: top;
- 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;
- }
- .slideshow-window {
- background-color: transparent !important;
- border: 0px !important;
- }
- /*--------------------------------------------------------------
- # Media Queries
- --------------------------------------------------------------*/
- @media all and (max-width: 767px) {
- .menu-toggle {
- display: block;
- margin: 0 auto;
- }
- .menu-toggle:focus {
- outline: thin solid;
- }
- .dropdown-toggle {
- background-color: transparent;
- color: #666;
- position: absolute;
- right: 6px;
- top: 0;
- }
- .dropdown-toggle:hover
- .dropdown-toggle:hover {
- background-color: transparent;
- color: #666;
- }
- a:hover + .dropdown-toggle,
- a:focus + .dropdown-toggle {
- color: #fff;
- }
- .dropdown-toggle.toggled {
- -ms-transform: rotate(180deg);
- -webkit-transform: rotate(180deg);
- transform: rotate(180deg);
- }
- .main-navigation a > .icon-expand {
- display: none;
- }
- .main-navigation > div {
- background-color: #eee;
- height: auto;
- left: 0;
- max-height: 0;
- overflow: hidden;
- padding: 0;
- position: relative;
- width: 100%;
- -webkit-transition: max-height 0.425s ease-in-out;
- -moz-transition: max-height 0.425s ease-in-out;
- transition: max-height 0.425s ease-in-out;
- }
- .main-navigation.toggled > div {
- max-height: 300vh;
- width: 100%;
- z-index: 999;
- }
- .main-navigation ul {
- display: inherit;
- }
- .main-navigation ul li {
- float: none;
- }
- .main-navigation ul > li:first-child > a {
- border-top-left-radius: 6px;
- border-top-right-radius: 6px;
- }
- .main-navigation ul > li:last-child > a {
- border-bottom-left-radius: 6px;
- border-bottom-right-radius: 6px;
- }
- .main-navigation > div {
- border-radius: 6px;
- }
- .main-navigation ul a {
- color: #666;
- display: block;
- font-weight: 600;
- padding: 10px 4%;
- }
- .main-navigation ul ul a {
- color: #666;
- }
- .main-navigation li a:hover,
- .main-navigation li a:focus,
- .main-navigation li a:active {
- background: #ca2017;
- border-radius: 0;
- color: #fff;
- }
- .main-navigation .sub-menu {
- border-top: 0;
- display: none;
- padding: 0 0 0 25px;
- }
- .main-navigation .sub-menu.toggled {
- display: block;
- }
- .main-navigation ul ul a {
- background: transparent;
- width: 100%;
- }
- .site-header .jetpack-social-navigation ul {
- margin: 0;
- text-align: center;
- }
- }
- @media all and (min-width: 600px) {
- .header-wrapper {
- padding-top: 45px;
- padding-bottom: 36px;
- }
- .site-title {
- font-size: 50px;
- font-size: 5rem;
- }
- .site-header .jetpack-social-navigation-svg .icon {
- height: 24px;
- width: 24px;
- }
- .jetpack-social-navigation {
- flex: 0 0 auto;
- margin: 0;
- }
- .jetpack-social-navigation li {
- margin-right: 0;
- }
- .jetpack-social-navigation a {
- padding: 0.25em;
- }
- blockquote {
- font-size: 1.1em;
- margin: 0 1.8em;
- }
- blockquote:before,
- blockquote:after {
- margin: 36px auto;
- width: 108px;
- }
- blockquote blockquote {
- font-size: 1.0em;
- }
- .hentry {
- margin-bottom: 108px;
- }
- .entry-title {
- font-size: 50px;
- font-size: 5rem;
- line-height: 1.44;
- }
- .entry-meta,
- .entry-meta a {
- font-size: 16px;
- font-size: 1.6rem;
- line-height: 1.125;
- }
- .entry-footer {
- display: flex;
- flex-direction: row;
- margin-top: 72px;
- }
- .entry-author {
- flex: 3;
- margin-right: 36px;
- }
- .entry-author .author-bio,
- .entry-author .author-heading {
- margin-bottom: 0;
- padding-left: 80px;
- }
- .author-avatar-hide.entry-author .author-bio,
- .author-avatar-hide.entry-author .author-heading {
- padding-left: 0;
- }
- .entry-author .author-avatar {
- position: absolute;
- }
- .post-navigation {
- padding-top: 72px;
- padding-bottom: 72px;
- }
- .page-content {
- padding: 72px 0;
- }
- .page-content,
- .entry-content,
- .entry-summary {
- font-size: 20px;
- font-size: 2rem;
- }
- .respond {
- padding-top: 72px;
- }
- .comments-wrapper,
- .respond-wrapper {
- padding-bottom: 72px;
- }
- .comment-wrapper,
- .pingback ,
- .trackback {
- margin-left: 110px;
- padding: 36px;
- }
- .comment-wrapper:after {
- display: block;
- }
- .comment-list li {
- margin-top: 36px;
- }
- .comment .avatar {
- display: block;
- }
- ol.children {
- padding-left: 36px;
- }
- .comments-title,
- .comment-reply-title {
- font-size: 28px;
- font-size: 2.8rem;
- line-height: 1.286;
- margin: 0 0 36px;
- }
- .comments-wrapper {
- padding-top: 108px;
- }
- form label,
- .comment-respond .logged-in-as,
- .comment-respond .comment-notes {
- font-size: 18px;
- font-size: 1.8rem;
- line-height: 2;
- }
- .bypostauthor .by-post-author {
- height: 32px;
- left: -2px;
- top: 50px;
- width: 32px;
- }
- .comment-navigation .nav-previous,
- .posts-navigation .nav-previous,
- .post-navigation .nav-previous {
- float: left;
- text-align: left;
- width: 50%;
- }
- .comment-navigation .nav-next,
- .posts-navigation .nav-next,
- .post-navigation .nav-next {
- float: right;
- text-align: right;
- width: 50%;
- }
- .posts-navigation a {
- padding: 2em 1em;
- }
- .nav-previous {
- margin-bottom: 0;
- }
- .widget-wrapper {
- display: flex;
- justify-content: space-around;
- }
- .widget-area {
- padding: 72px 0;
- }
- .widget-area .widget-column {
- width: 30%;
- }
- .widget {
- font-size: 18px;
- font-size: 1.8rem;
- }
- #infinite-handle span,
- .infinite-loader {
- height: 180px;
- padding: 72px 0;
- }
- #infinite-handle span {
- font-size: 22px;
- font-size: 2.2rem;
- }
- .hero-area-wrapper {
- font-size: 20px;
- font-size: 2rem;
- line-height: 1.6;
- padding-bottom: 72px;
- padding-top: 72px;
- }
- .hero-area-title {
- font-size: 30px;
- font-size: 3rem;
- line-height: 1.2;
- margin-top: 0;
- margin-bottom: 18px;
- }
- .hero-area .button {
- font-size: 24px;
- font-size: 2.4rem;
- line-height: 1.5;
- padding-top: 9px;
- padding-bottom: 9px;
- }
- .hero-area-button {
- margin-top: 36px;
- }
- }
- @media screen and (min-width: 768px) {
- h1 {
- font-size: 40px;
- line-height: 1.35;
- }
- .contact-info-area .icon {
- height: 1em;
- width: 1em;
- }
- .contact-info-area span.contact-info-label {
- display: inline;
- left: auto;
- margin: 0;
- position: static;
- }
- .site-header {
- padding-bottom: 36px;
- border-top-width: 9px;
- }
- .site-header:before {
- top: -8px;
- }
- .header-wrapper {
- align-items: flex-start;
- display: flex;
- justify-content: space-between;
- }
- .site-title {
- font-size: 60px;
- font-size: 6rem;
- }
- .site-branding {
- flex: 1 1 auto;
- }
- .search-toggle {
- display: block;
- flex: 0 0 auto;
- }
- .menu-wrapper {
- align-items: flex-start;
- display: flex;
- justify-content: space-between;
- max-width: 92%;
- }
- .menu-toggle,
- .dropdown-toggle {
- display: none;
- }
- .main-navigation {
- flex: 2 1 auto;
- margin-bottom: 0;
- }
- .main-navigation ul {
- display: block;
- }
- #header-menu {
- margin-left: -15px;
- }
- .main-navigation li {
- margin-right: 6px;
- }
- .main-navigation li:hover > a,
- .main-navigation li.focus > a,
- .main-navigation li.current-menu-item > a {
- background: #ca2017;
- border-radius: 3px;
- color: #fff;
- }
- .main-navigation li.current-menu-item ~ li.current-menu-item > a {
- background: #222;
- color: #fff;
- }
- .main-navigation li.current-menu-item ~ li.current-menu-item > a:hover {
- background: #ca2017;
- }
- .main-navigation ul li:hover > ul ul {
- top: 0;
- }
- .main-navigation ul ul {
- padding-top: 1.15em;
- position: absolute;
- top: 100%;
- left: -999em;
- z-index: 99999;
- }
- .main-navigation ul ul > li:first-child:after {
- border: 10px solid transparent;
- border-bottom-color: #222;
- content: "";
- display: block;
- left: 50%;
- margin-left: -10px;
- position: absolute;
- top: -20px;
- }
- .main-navigation ul ul > li:first-child:hover:after,
- .main-navigation ul ul > li.current-menu-item:first-child:after {
- border-bottom-color: #ca2017;
- }
- .main-navigation ul ul a {
- padding-right: 18px;
- }
- .main-navigation ul ul .menu-item-has-children > a > .icon,
- .main-navigation ul ul .page_item_has_children > a > .icon {
- margin-top: -7px;
- left: auto;
- position: absolute;
- right: 0.5em;
- top: 50%;
- -ms-transform: rotate(-90deg);
- -moz-transform: rotate(-90deg);
- -webkit-transform: rotate(-90deg);
- transform: rotate(-90deg);
- }
- .main-navigation ul ul ul {
- padding-top: 0;
- padding-left: 20px;
- }
- .main-navigation ul ul ul > li:first-child:after {
- border: 10px solid transparent;
- border-right-color: #222;
- content: "";
- display: block;
- top: 8px;
- position: absolute;
- left: -10px;
- }
- .main-navigation ul ul ul > li:first-child:hover:after,
- .main-navigation ul ul ul > li.current-menu-item:first-child:after {
- border-bottom-color: transparent;
- border-right-color: #ca2017;
- }
- .jetpack-social-navigation {
- max-width: none;
- text-align: right;
- }
- .hero-area {
- max-height: 684px;
- }
- .hero-area-wrapper {
- font-size: 20px;
- font-size: 2rem;
- line-height: 1.6;
- padding-bottom: 144px;
- padding-top: 144px; }
- .hero-area-title {
- font-size: 40px;
- font-size: 4rem;
- line-height: 1.125;
- margin-top: 0;
- margin-bottom: 27px;
- }
- .hero-area .button {
- font-size: 30px;
- font-size: 3rem;
- line-height: 1.2;
- padding-top: 12px;
- padding-bottom: 12px;
- }
- .entry-header {
- padding: 72px 0;
- }
- .entry-title {
- font-size: 60px;
- font-size: 6rem;
- line-height: 1.2;
- }
- }
- @media screen and (max-width: 1304px) {
- .site-branding .custom-logo {
- height: auto;
- max-width: 90vw;
- max-height: 1000%;
- }
- }
|