123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346 |
- /*
- Theme Name: Karuna
- Theme URI: http://wordpress.com/themes/karuna/
- Author: Automattic
- Author URI: http://wordpress.com/themes/
- Description: Karuna is a clean business theme designed with health and wellness-focused sites in mind. With bright, bold colors, prominent featured images, and support for customer testimonials, your business' brand will shine with Karuna.
- Version: 1.2.10-wpcom
- License: GNU General Public License v2 or later
- License URI: http://www.gnu.org/licenses/gpl-2.0.html
- Text Domain: karuna
- Tags: blog, business, education, clean, light, green, purple, one-column, two-columns, right-sidebar, custom-background, custom-colors, custom-header, custom-menu, full-width-template, rtl-language-support, translation-ready, school, traditional, contemporary, featured-image-header, featured-images, professional, infinite-scroll, flexible-header, responsive-layout, threaded-comments, site-logo, testimonials, classic-menu, fixed-menu
- 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.
- Karuna is based on Components http://components.underscores.me/, (C) 2015-2017 Automattic, Inc.
- Underscores is distributed under the terms of the GNU GPL v2 or later.
- Normalizing styles have been helped along thanks to the fine work of
- Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
- */
- /*--------------------------------------------------------------
- >>> TABLE OF CONTENTS:
- ----------------------------------------------------------------
- # Normalize
- # Accessibility
- # Alignments
- # Clearings
- # Typography
- # Forms
- # Buttons
- # Formatting
- # Lists
- # Tables
- # Navigation
- # Links
- # Layout
- ## Posts
- ## Pages
- # Comments
- # Widgets
- # Infinite scroll
- # Media
- ## Galleries
- # Media Queries
- --------------------------------------------------------------*/
- /*--------------------------------------------------------------
- # Normalize
- --------------------------------------------------------------*/
- html {
- font-family: sans-serif;
- -webkit-text-size-adjust: 100%;
- -ms-text-size-adjust: 100%;
- }
- body {
- margin: 0;
- }
- article,
- aside,
- details,
- figcaption,
- figure,
- footer,
- header,
- main,
- menu,
- nav,
- section,
- summary {
- display: block;
- }
- audio,
- canvas,
- progress,
- video {
- display: inline-block;
- vertical-align: baseline;
- }
- audio:not([controls]) {
- display: none;
- height: 0;
- }
- [hidden],
- template {
- display: none;
- }
- a {
- background-color: transparent;
- }
- a:active,
- a:hover {
- outline: 0;
- }
- abbr[title] {
- border-bottom: 1px dotted;
- }
- b,
- strong {
- font-weight: bold;
- }
- dfn {
- font-style: italic;
- }
- h1 {
- font-size: 2em;
- margin: 0.67em 0;
- }
- mark {
- background: #ff0;
- color: #000;
- }
- small {
- font-size: 80%;
- }
- sub,
- sup {
- font-size: 75%;
- line-height: 0;
- position: relative;
- vertical-align: baseline;
- }
- sup {
- top: -0.5em;
- }
- sub {
- bottom: -0.25em;
- }
- img {
- border: 0;
- }
- svg:not(:root) {
- overflow: hidden;
- }
- figure {
- margin: 1em 40px;
- }
- hr {
- box-sizing: content-box;
- height: 0;
- }
- pre {
- overflow: auto;
- }
- code,
- kbd,
- pre,
- samp {
- font-family: monospace, monospace;
- font-size: 1em;
- }
- button,
- input,
- optgroup,
- select,
- textarea {
- color: inherit;
- font: inherit;
- margin: 0;
- }
- button {
- overflow: visible;
- }
- button,
- select {
- text-transform: none;
- }
- button,
- html input[type="button"],
- input[type="reset"],
- input[type="submit"] {
- -webkit-appearance: button;
- cursor: pointer;
- }
- button[disabled],
- html input[disabled] {
- cursor: default;
- }
- button::-moz-focus-inner,
- input::-moz-focus-inner {
- border: 0;
- padding: 0;
- }
- input {
- line-height: normal;
- }
- input[type="checkbox"],
- input[type="radio"] {
- box-sizing: border-box;
- padding: 0;
- }
- input[type="number"]::-webkit-inner-spin-button,
- input[type="number"]::-webkit-outer-spin-button {
- height: auto;
- }
- input[type="search"] {
- -webkit-appearance: textfield;
- }
- input[type="search"]::-webkit-search-cancel-button,
- input[type="search"]::-webkit-search-decoration {
- -webkit-appearance: none;
- }
- fieldset {
- border: 1px solid silver;
- margin: 0 2px;
- padding: 0.35em 0.625em 0.75em;
- }
- legend {
- border: 0;
- padding: 0;
- }
- textarea {
- overflow: auto;
- }
- optgroup {
- font-weight: bold;
- }
- table {
- border-collapse: collapse;
- border-spacing: 0;
- }
- td,
- th {
- padding: 0;
- }
- /*--------------------------------------------------------------
- # Accessibility
- --------------------------------------------------------------*/
- .screen-reader-text {
- clip: rect(1px, 1px, 1px, 1px);
- position: absolute !important;
- height: 1px;
- width: 1px;
- overflow: hidden;
- }
- .screen-reader-text:focus {
- background-color: rgba(0, 0, 0, 0.02);
- border-radius: 3px;
- box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
- clip: auto !important;
- color: #333333;
- 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: 0.8em 1.6em 0.8em 0;
- }
- .alignright {
- display: inline;
- float: right;
- margin: 0.8em 0 0.8em 1.6em;
- }
- .aligncenter {
- clear: both;
- margin: 0.8em auto;
- display: block;
- margin-left: auto;
- margin-right: auto;
- }
- /*--------------------------------------------------------------
- # Clearings
- --------------------------------------------------------------*/
- .clear:before,
- .clear:after,
- .entry-content:before,
- .entry-content:after,
- .comment-content:before,
- .comment-content:after,
- .site-header:before,
- .site-header:after,
- .site-content:before,
- .site-content:after,
- .site-footer:before,
- .site-footer:after {
- content: "";
- display: table;
- table-layout: fixed;
- }
- .clear:after,
- .entry-content:after,
- .comment-content:after,
- .site-header:after,
- .site-content:after,
- .site-footer:after {
- clear: both;
- }
- /*--------------------------------------------------------------
- # Typography
- --------------------------------------------------------------*/
- body,
- button,
- input,
- select,
- textarea {
- color: #333333;
- font-family: Karla, sans-serif;
- font-size: 16px;
- font-size: 1rem;
- line-height: 1.6;
- }
- h1, h2, h3, h4, h5, h6 {
- clear: both;
- font-weight: bold;
- font-family: Karla, sans-serif;
- text-transform: uppercase;
- }
- h1 {
- font-size: 32px;
- font-size: 2rem;
- }
- h2 {
- font-size: 30px;
- font-size: 1.875rem;
- }
- h3 {
- font-size: 26px;
- font-size: 1.625rem;
- }
- h4 {
- font-size: 18px;
- font-size: 1.125rem;
- }
- h5 {
- font-size: 16px;
- font-size: 1rem;
- }
- h6 {
- font-size: 14px;
- font-size: 0.875rem;
- }
- p {
- margin: 0.8em 0;
- }
- dfn, cite, em, i {
- font-style: italic;
- }
- blockquote {
- font-size: 26px;
- font-size: 1.625rem;
- font-weight: bold;
- margin: 0 1.6em;
- }
- address {
- margin: 0 0 1.6em;
- }
- pre {
- background: rgba(0, 0, 0, 0.02);
- font-family: "Courier 10 Pitch", Courier, monospace;
- font-size: 15px;
- font-size: 0.9375rem;
- line-height: 1.6;
- margin-bottom: 1.6em;
- max-width: 100%;
- overflow: auto;
- padding: 1.6em;
- }
- code, kbd, tt, var {
- font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
- font-size: 15px;
- font-size: 0.9375rem;
- }
- abbr, acronym {
- border-bottom: 1px dotted #999999;
- cursor: help;
- }
- mark, ins {
- background: #fff9c0;
- text-decoration: none;
- }
- big {
- font-size: 125%;
- }
- blockquote, q {
- quotes: "" "";
- }
- blockquote:before, blockquote:after, q:before, q:after {
- content: "";
- }
- /*--------------------------------------------------------------
- # Forms
- --------------------------------------------------------------*/
- input[type="text"],
- input[type="email"],
- input[type="url"],
- input[type="password"],
- input[type="search"],
- input[type="number"],
- input[type="tel"],
- input[type="range"],
- input[type="date"],
- input[type="month"],
- input[type="week"],
- input[type="time"],
- input[type="datetime"],
- input[type="datetime-local"],
- input[type="color"],
- textarea {
- color: #999999;
- border: 1px solid #dddddd;
- border-radius: 5px;
- padding: .5em;
- }
- input[type="text"]:focus,
- input[type="email"]:focus,
- input[type="url"]:focus,
- input[type="password"]:focus,
- input[type="search"]:focus,
- input[type="number"]:focus,
- input[type="tel"]:focus,
- input[type="range"]:focus,
- input[type="date"]:focus,
- input[type="month"]:focus,
- input[type="week"]:focus,
- input[type="time"]:focus,
- input[type="datetime"]:focus,
- input[type="datetime-local"]:focus,
- input[type="color"]:focus,
- textarea:focus {
- color: #333333;
- border-color: #6636cc;
- outline: none;
- }
- select {
- border: 1px solid #dddddd;
- }
- textarea {
- width: 100%;
- }
- /*--------------------------------------------------------------
- # Forms
- --------------------------------------------------------------*/
- button,
- input[type="button"],
- input[type="reset"],
- input[type="submit"],
- .button {
- border: 2px solid;
- border-color: #6636cc;
- border-radius: 10px;
- background: transparent;
- box-shadow: none;
- color: #6636cc;
- font-weight: bold;
- font-size: 16px;
- font-size: 1rem;
- letter-spacing: 1px;
- line-height: 1;
- padding: 0.8em 1.6em 0.8em;
- text-shadow: none;
- text-decoration: none;
- text-transform: uppercase;
- transition: 0.3s;
- }
- button:hover,
- input[type="button"]:hover,
- input[type="reset"]:hover,
- input[type="submit"]:hover,
- .button:hover {
- border-color: #85cc36;
- box-shadow: none;
- color: #85cc36;
- }
- button:active, button:focus,
- input[type="button"]:active,
- input[type="button"]:focus,
- input[type="reset"]:active,
- input[type="reset"]:focus,
- input[type="submit"]:active,
- input[type="submit"]:focus,
- .button:active,
- .button:focus {
- border-color: #85cc36;
- box-shadow: none;
- color: #85cc36;
- }
- .button {
- display: inline-block;
- }
- /*--------------------------------------------------------------
- # Formattings
- --------------------------------------------------------------*/
- hr {
- background-color: #dddddd;
- border: 0;
- height: 1px;
- margin-bottom: 1.6em;
- }
- /*--------------------------------------------------------------
- # Lists
- --------------------------------------------------------------*/
- ul, ol {
- margin: 0 0 0.8em 1.6em;
- padding: 0;
- }
- ul {
- list-style: disc;
- }
- ol {
- list-style: decimal;
- }
- li > ul,
- li > ol {
- margin-bottom: 0;
- margin-left: .8em;
- }
- dt {
- font-weight: bold;
- }
- dd {
- margin: 0 1.6em 1.6em;
- }
- /*--------------------------------------------------------------
- # Tables
- --------------------------------------------------------------*/
- table {
- background-color: rgba(0, 0, 0, 0.02);
- margin: 0 0 1.6em;
- width: 100%;
- }
- caption {
- background-color: rgba(0, 0, 0, 0.02);
- padding: 8px 5px;
- }
- th,
- td {
- padding: 8px 5px;
- }
- /*--------------------------------------------------------------
- # Navigation
- --------------------------------------------------------------*/
- .main-navigation {
- clear: both;
- display: block;
- font-size: 14px;
- font-size: 0.875rem;
- font-weight: bold;
- padding: 0.8em 0 1.6em;
- text-align: left;
- text-transform: uppercase;
- width: 100%;
- content: "";
- display: table;
- table-layout: fixed;
- }
- .main-navigation ul {
- display: none;
- list-style: none;
- margin: 0;
- padding: 0;
- }
- .main-navigation li {
- border-top: 1px solid #dddddd;
- position: relative;
- list-style: none;
- }
- .main-navigation li li a {
- padding-left: 1.6em;
- }
- .main-navigation li li li a {
- padding-left: 3.2em;
- }
- .main-navigation li li li li a {
- padding-left: 4.8em;
- }
- .main-navigation li li li li li a {
- padding-left: 5.4em;
- }
- .main-navigation a,
- .main-navigation a:visited {
- color: #333333;
- display: block;
- padding: 0.8em 0.4em;
- text-decoration: none;
- }
- .main-navigation a:hover, .main-navigation a:focus,
- .main-navigation a:visited:hover,
- .main-navigation a:visited:focus {
- color: #333333;
- opacity: 0.5;
- }
- .main-navigation .current_page_item > a,
- .main-navigation .current-menu-item > a,
- .main-navigation .current_page_ancestor > a,
- .main-navigation .current-menu-ancestor > a {
- color: #333333;
- opacity: 0.5;
- }
- /* Small menu. */
- .main-navigation.toggled ul {
- display: block;
- }
- .menu-toggle {
- display: inline-block;
- margin: 0.8em auto;
- position: relative;
- left: 50%;
- -webkit-transform: translateX(-50%);
- -moz-transform: translateX(-50%);
- -ms-transform: translateX(-50%);
- -o-transform: translateX(-50%);
- transform: translateX(-50%);
- text-align: center;
- }
- .main-navigation .genericon-menu {
- display: inline-block;
- margin-right: 5px;
- }
- .comment-navigation,
- .posts-navigation,
- .post-navigation {
- border-top: 3px solid #dddddd;
- border-bottom: 1px solid #dddddd;
- padding: 0.8em 0;
- font-size: 18px;
- font-size: 1.125rem;
- }
- .site-main .comment-navigation, .site-main
- .posts-navigation, .site-main
- .post-navigation {
- margin: 0 0 1.6em;
- overflow: hidden;
- }
- .comment-navigation .nav-previous,
- .posts-navigation .nav-previous,
- .post-navigation .nav-previous {
- border-bottom: 1px solid #dddddd;
- margin-bottom: .8em;
- padding-bottom: .8em;
- width: 100%;
- }
- .comment-navigation .nav-next,
- .posts-navigation .nav-next,
- .post-navigation .nav-next {
- text-align: right;
- width: 100%;
- }
- .comment-navigation a,
- .comment-navigation a:visited,
- .posts-navigation a,
- .posts-navigation a:visited,
- .post-navigation a,
- .post-navigation a:visited {
- color: #6636cc;
- text-decoration: none;
- }
- .comment-navigation a:hover,
- .comment-navigation a:visited:hover,
- .posts-navigation a:hover,
- .posts-navigation a:visited:hover,
- .post-navigation a:hover,
- .post-navigation a:visited:hover {
- color: #85cc36;
- }
- .post-navigation .title {
- display: block;
- clear: both;
- color: #999999;
- font-style: normal;
- text-transform: uppercase;
- font-weight: bold;
- font-size: 13.2px;
- font-size: 0.825rem;
- }
- /*--------------------------------------------------------------
- # Links
- --------------------------------------------------------------*/
- a {
- color: #6636cc;
- font-weight: bold;
- text-decoration: none;
- transition: 0.3s;
- }
- a:visited {
- color: #6636cc;
- }
- a:hover, a:focus, a:active {
- color: #85cc36;
- }
- a:focus {
- outline: thin dotted;
- }
- a:hover, a:active {
- outline: 0;
- }
- .entry-content a,
- .entry-summary a {
- word-wrap: break-word;
- word-break: break-word;
- }
- /*--------------------------------------------------------------
- # Links
- --------------------------------------------------------------*/
- a {
- color: #6636cc;
- font-weight: bold;
- text-decoration: none;
- transition: 0.3s;
- }
- a:visited {
- color: #6636cc;
- }
- a:hover, a:focus, a:active {
- color: #85cc36;
- }
- a:focus {
- outline: thin dotted;
- }
- a:hover, a:active {
- outline: 0;
- }
- .entry-content a,
- .entry-summary a {
- word-wrap: break-word;
- word-break: break-word;
- }
- /*--------------------------------------------------------------
- # Layout
- --------------------------------------------------------------*/
- html {
- box-sizing: border-box;
- }
- *,
- *:before,
- *:after {
- box-sizing: inherit;
- }
- body {
- background: white; /* Fallback for when there is no custom background color defined. */
- }
- .site-content {
- padding: 1.6em 5%;
- }
- .no-sidebar .site-main {
- margin: 0;
- }
- .no-sidebar:not(.page-template-full-width-page):not(.page-template-front-page) .content-area {
- float: none;
- margin: 0 auto;
- max-width: 685px;
- }
- .post-type-archive-jetpack-testimonial .site-main {
- margin: 0;
- }
- /*--------------------------------------------------------------
- ## Posts
- --------------------------------------------------------------*/
- .sticky {
- display: block;
- }
- .hentry {
- margin: 0 0 3.2em;
- }
- .byline,
- .updated:not(.published) {
- display: none;
- }
- .single .byline,
- .group-blog .byline {
- display: inline;
- }
- .page-content,
- .entry-content,
- .entry-summary {
- margin: 0 0 1.6em;
- }
- .post-thumbnail {
- margin: 0 0 0.8em;
- }
- .entry-title {
- letter-spacing: 0;
- line-height: 1;
- margin: 0 0 0.2em;
- text-transform: none;
- word-wrap: break-word;
- font-size: 32px;
- font-size: 2rem;
- }
- .entry-title a {
- color: #333333;
- text-decoration: none;
- }
- .entry-title a:hover, .entry-title a:focus {
- color: #85cc36;
- }
- .entry-meta,
- .entry-footer {
- content: "";
- display: table;
- table-layout: fixed;
- color: #999999;
- text-transform: lowercase;
- margin: 0 0 1.6em;
- width: 100%;
- font-size: 14px;
- font-size: 0.875rem;
- }
- .entry-meta a,
- .entry-footer a {
- color: #999999;
- font-weight: normal;
- }
- .entry-meta a:hover, .entry-meta a:focus,
- .entry-footer a:hover,
- .entry-footer a:focus {
- text-decoration: underline;
- }
- .entry-footer span {
- margin-right: 1.6em;
- }
- .entry-content,
- .entry-summary {
- font-size: 16px;
- font-size: 1rem;
- }
- .edit-link {
- float: right;
- display: inline-block;
- clear: right;
- }
- .more-link {
- font-weight: bold;
- text-decoration: none;
- }
- .jetpack-recipe {
- padding: 0.8em 1.6em !important;
- }
- /* Author Bio */
- .entry-author {
- background-color: rgba(0, 0, 0, 0.02);
- padding: 1.6em;
- position: relative;
- }
- .entry-author .author-avatar {
- position: absolute;
- left: 1.6em;
- top: 1.6em;
- }
- .entry-author .author-title,
- .entry-author .author-name {
- line-height: 1.2;
- margin: 0;
- }
- .entry-author .author-avatar + .author-heading,
- .entry-author .author-avatar + .author-heading + .author-bio {
- margin-left: 84px;
- }
- .entry-author .author-bio {
- margin-top: 1.6em;
- margin-bottom: 0;
- }
- .entry-author .author-title {
- color: #999999;
- font-size: 16px;
- font-size: 1rem;
- }
- /*--------------------------------------------------------------
- ## Pages
- --------------------------------------------------------------*/
- .page-links {
- clear: both;
- margin: 0 0 1.6em;
- }
- .page-title {
- color: #999999;
- line-height: 1.2;
- }
- /*--------------------------------------------------------------
- ## Full-Width Page
- --------------------------------------------------------------*/
- .page-template-full-width-page .site-main {
- margin: 0;
- }
- .page-template-full-width-page .site-content {
- padding: 1.6em 5%;
- max-width: 100%;
- }
- .page-template-full-width-page .content-area {
- float: none;
- margin: 0;
- }
- /*--------------------------------------------------------------
- ## Static Front Page
- --------------------------------------------------------------*/
- .page-template-front-page .site-main {
- margin: 0;
- }
- .page-template-front-page .site-content {
- max-width: 100%;
- padding-left: 0;
- padding-right: 0;
- }
- .page-template-front-page .content-area {
- float: none;
- margin: 0 auto;
- max-width: 100%;
- }
- .page-template-front-page .site-main > .hentry:first-of-type {
- padding: 0 5%;
- margin-bottom: 0;
- }
- .page-template-front-page .site-main > .hentry:first-of-type .entry-title {
- text-align: center;
- }
- .page-template-front-page .site-main > .hentry:first-of-type .entry-content {
- font-size: 20px;
- font-size: 1.25rem;
- margin-bottom: 0;
- }
- .page-template-front-page .site-main > .hentry:first-of-type .entry-footer {
- margin: 0;
- }
- .post-type-archive-jetpack-testimonial .testimonials-hentry {
- margin-bottom: 0;
- }
- .front-testimonials {
- padding: 1.6em 5%;
- width: 100%;
- }
- .front-testimonials .hentry {
- background: rgba(0, 0, 0, 0.02);
- margin-bottom: 3.2em;
- padding: 1.6em 1.6em 3em;
- position: relative;
- font-size: 16px;
- font-size: 1rem;
- }
- .front-testimonials .hentry p {
- margin-top: 0;
- }
- .front-testimonials .hentry .entry-content {
- margin: 0;
- }
- .front-testimonials .entry-meta {
- display: block;
- margin: 0;
- width: auto;
- }
- .front-testimonials .hentry footer {
- float: right;
- }
- .front-testimonials .hentry .entry-header {
- float: left;
- margin: 0 0 1em;
- }
- .front-testimonials .hentry .entry-title {
- letter-spacing: 0;
- text-transform: none;
- font-size: 16px;
- font-size: 1rem;
- }
- .front-testimonials .hentry .entry-title:before {
- content: "\2014";
- margin-right: 5px;
- }
- .front-testimonials .hentry .post-thumbnail {
- position: absolute;
- left: 50%;
- bottom: 0;
- margin: 0;
- -webkit-transform: translateX(-50%) translateY(50%);
- -moz-transform: translateX(-50%) translateY(50%);
- -ms-transform: translateX(-50%) translateY(50%);
- -o-transform: translateX(-50%) translateY(50%);
- transform: translateX(-50%) translateY(50%);
- }
- .front-testimonials .hentry .post-thumbnail img {
- border-radius: 50%;
- width: 100px;
- height: 100px;
- }
- .jetpack-testimonial.hentry:before,
- .jetpack-testimonial.hentry:after {
- content: "";
- display: table;
- table-layout: fixed;
- }
- .jetpack-testimonial.hentry:after {
- clear: both;
- }
- .recent-posts {
- background-color: rgba(0, 0, 0, 0.02);
- padding: 1.6em 5%;
- width: 100%;
- content: "";
- display: table;
- table-layout: fixed;
- }
- .recent-posts .recent-posts-title {
- font-weight: normal;
- text-transform: none;
- letter-spacing: 0;
- margin: 0 0 1.6em;
- text-align: center;
- font-size: 24px;
- font-size: 1.5rem;
- }
- .recent-posts .grid-row {
- content: "";
- display: table;
- table-layout: fixed;
- width: 100%;
- }
- .recent-posts .hentry {
- margin: 0 0 1.6em;
- }
- .recent-posts .more-recent-posts {
- display: inline-block;
- position: relative;
- left: 50%;
- -webkit-transform: translateX(-50%);
- -moz-transform: translateX(-50%);
- -ms-transform: translateX(-50%);
- -o-transform: translateX(-50%);
- transform: translateX(-50%);
- }
- .recent-posts .entry-title {
- font-size: 16px;
- font-size: 1rem;
- text-transform: uppercase;
- letter-spacing: 1px;
- }
- /*--------------------------------------------------------------
- ## Header
- --------------------------------------------------------------*/
- .site-header {
- text-align: center;
- }
- .top-bar-wrapper {
- padding: 0 5%;
- width: 100%;
- }
- .top-bar {
- color: white;
- background-color: #6636cc;
- font-weight: bold;
- padding: 0.8em 0;
- text-transform: uppercase;
- width: 100%;
- font-size: 14px;
- font-size: 0.875rem;
- content: "";
- display: table;
- table-layout: fixed;
- }
- .top-bar .site-description {
- width: 100%;
- }
- .top-bar a {
- color: white;
- }
- .top-bar .jetpack-social-navigation ul {
- margin-bottom: .75em;
- }
- .top-bar .jetpack-social-navigation li {
- padding: 0 0.4em;
- }
- .top-bar .jetpack-social-navigation a:hover, .top-bar .jetpack-social-navigation a:focus {
- opacity: 0.5;
- }
- .top-bar .jetpack-social-navigation .icon {
- height: 24px;
- width: 24px;
- }
- .no-top-bar .top-bar {
- padding: 0.4em 0;
- }
- .site-branding-wrapper {
- padding: 0 5%;
- width: 100%;
- }
- .site-branding {
- padding: 1.6em 0 0;
- }
- .custom-logo {
- -webkit-transform: translateZ(0);
- -moz-transform: translateZ(0);
- -ms-transform: translateZ(0);
- -o-transform: translateZ(0);
- transform: translateZ(0);
- -webkit-backface-visibility: hidden;
- -moz-backface-visibility: hidden;
- -ms-backface-visibility: hidden;
- backface-visibility: hidden;
- -webkit-perspective: 1000;
- -moz-perspective: 1000;
- -ms-perspective: 1000;
- perspective: 1000;
- max-width: 100%;
- max-height: 100px;
- width: auto;
- height: auto;
- transition: 0.2s;
- }
- .site-title {
- font-size: 32px;
- font-size: 2rem;
- font-weight: bold;
- letter-spacing: 0;
- line-height: 1;
- margin: 0;
- text-transform: uppercase;
- color: #333333;
- -webkit-font-smoothing: antialiased;
- }
- .site-title a {
- color: #333333;
- text-decoration: none;
- }
- .site-header .size-karuna-hero,
- .custom-header {
- display: block;
- margin: 0 auto;
- width: 100%;
- height: auto;
- }
- /*--------------------------------------------------------------
- ## Footer
- --------------------------------------------------------------*/
- .site-footer {
- clear: both;
- background-color: #6636cc;
- width: 100%;
- }
- .site-info {
- background-color: white;
- font-size: 14px;
- font-size: 0.875rem;
- padding: 1.6em 5%;
- text-align: center;
- }
- .site-info .sep {
- display: inline-block;
- margin: 0 0.4em;
- }
- /*--------------------------------------------------------------
- # Comments
- --------------------------------------------------------------*/
- .comment-content a {
- word-wrap: break-word;
- }
- .bypostauthor {
- display: block;
- }
- .comments-area {
- background-color: rgba(0, 0, 0, 0.02);
- padding: 1.6em;
- margin: 0 0 1.6em;
- }
- .comments-title,
- .comment-reply-title {
- line-height: 1.2;
- margin: 0 0 0.4em;
- font-size: 20px;
- font-size: 1.25rem;
- }
- .comment-content a {
- word-wrap: break-word;
- }
- .bypostauthor {
- display: block;
- }
- .comment-list {
- list-style: none;
- margin: 0 0 3.2em;
- padding: 0;
- }
- .comment-list .children {
- list-style: none;
- }
- .comment-list .edit-link {
- display: inline;
- text-align: left;
- width: auto;
- }
- .comment-body {
- content: "";
- display: table;
- table-layout: fixed;
- margin-top: 1.6em;
- padding-top: 1.6em;
- width: 100%;
- }
- .comment-author .fn {
- display: inline-block;
- margin-bottom: .4em;
- font-weight: bold;
- text-transform: none;
- letter-spacing: 0;
- font-size: 16px;
- font-size: 1rem;
- }
- .comment-author .avatar {
- float: left;
- margin-right: 1.6em;
- }
- .comment-meta a {
- text-decoration: none;
- }
- .comment-metadata {
- color: #999999;
- font-size: 13.2px;
- font-size: 0.825rem;
- margin-bottom: 1.6em;
- text-transform: lowercase;
- }
- .comment-metadata a,
- .comment-metadata a:visited {
- color: #999999;
- display: inline-block;
- font-weight: normal;
- text-decoration: none;
- }
- .comment-metadata a:hover, .comment-metadata a:focus,
- .comment-metadata a:visited:hover,
- .comment-metadata a:visited:focus {
- text-decoration: underline;
- }
- .comment-metadata .edit-link {
- float: none;
- }
- .comment-metadata .edit-link:before {
- content: "|";
- margin-left: .4em;
- margin-right: .8em;
- }
- .comment-metadata a:first-of-type {
- display: inline-block;
- margin-bottom: .8em;
- }
- .pingback .edit-link,
- .trackback .edit-link {
- float: right;
- }
- .no-comments {
- font-style: italic;
- display: block;
- text-align: center;
- width: 100%;
- }
- .says {
- display: none;
- }
- .comment-content {
- clear: both;
- }
- .comment-form label {
- display: inline-block;
- width: 109px;
- }
- .comment-form-author,
- .comment-form-email,
- .comment-form-url,
- .comment-form-comment {
- margin: 0 0 1.6em;
- position: relative;
- }
- .comment-form-author label,
- .comment-form-email label,
- .comment-form-url label,
- .comment-form-comment label {
- font-size: 14px;
- font-size: 0.875rem;
- font-weight: bold;
- padding: 0.65em 0.8em;
- position: absolute;
- left: 0;
- top: 2px;
- text-transform: uppercase;
- }
- .comment-form-author input,
- .comment-form-author textarea,
- .comment-form-email input,
- .comment-form-email textarea,
- .comment-form-url input,
- .comment-form-url textarea,
- .comment-form-comment input,
- .comment-form-comment textarea {
- clear: both;
- padding-left: 6.4em;
- width: 100%;
- }
- .comment-form-author textarea,
- .comment-form-email textarea,
- .comment-form-url textarea,
- .comment-form-comment textarea {
- padding: 2em 0.8em 0.375em;
- }
- /*--------------------------------------------------------------
- # Widgets
- --------------------------------------------------------------*/
- .widget {
- margin: 0 0 2.4em;
- }
- .widget select {
- max-width: 100%;
- }
- .widget img {
- max-width: 100%;
- }
- .widget div > ul, .widget > ul {
- margin: 0;
- padding: 0;
- }
- .widget div > ul li, .widget > ul li {
- list-style: none;
- border-top: 1px solid rgba(153, 153, 153, 0.2);
- margin: 0.8em 0 0;
- padding: 0.8em 0 0;
- }
- .widget div > ul > li:first-of-type, .widget > ul > li:first-of-type {
- border-top: 0;
- margin-top: 0;
- padding-top: 0;
- }
- .widget div > ol, .widget > ol {
- list-style-position: inside;
- margin: 0;
- padding: 0;
- }
- .widget div > ol li, .widget > ol li {
- border-top: 1px solid rgba(153, 153, 153, 0.2);
- margin: 0.8em 0 0;
- padding: 0.8em 0 0;
- }
- .widget div > ol > li:first-of-type, .widget > ol > li:first-of-type {
- border-top: 0;
- margin-top: 0;
- padding-top: 0;
- }
- .widget_media_image .wp-caption {
- margin: 0 auto;
- }
- .widget-title {
- font-size: 16px;
- font-size: 1rem;
- margin: 0 0 0.8em;
- }
- .header-widget-area-wrapper {
- padding-top: 1.6em;
- padding-bottom: 1.6em;
- }
- .header-widget-area {
- color: white;
- background-color: #85cc36;
- font-weight: bold;
- padding: 0 10%;
- text-align: left;
- width: 100%;
- font-size: 16px;
- font-size: 1rem;
- content: "";
- display: table;
- table-layout: fixed;
- }
- .header-widget-area a {
- color: white;
- }
- .header-widget-area button,
- .header-widget-area input[type="button"],
- .header-widget-area input[type="reset"],
- .header-widget-area input[type="submit"],
- .header-widget-area .button {
- color: white;
- border-color: white;
- padding: 0.4em 0.8em;
- white-space: nowrap;
- }
- .header-widget-area button:hover, .header-widget-area button:focus,
- .header-widget-area input[type="button"]:hover,
- .header-widget-area input[type="button"]:focus,
- .header-widget-area input[type="reset"]:hover,
- .header-widget-area input[type="reset"]:focus,
- .header-widget-area input[type="submit"]:hover,
- .header-widget-area input[type="submit"]:focus,
- .header-widget-area .button:hover,
- .header-widget-area .button:focus{
- opacity: 0.5;
- }
- .header-widget-area a:hover,
- .header-widget-area a:focus {
- opacity: 0.7;
- }
- .header-widget-area .textwidget {
- text-align: center;
- line-height: 2;
- }
- .header-widget-area .widget {
- margin: 0 0 2.4em;
- }
- .header-widget-area .widget:first-of-type {
- margin-top: 0;
- }
- .header-widget-area .widget:last-of-type {
- margin-bottom: 0;
- }
- .site-content .widget-area .widget {
- background-color: rgba(0, 0, 0, 0.02);
- padding: 1.6em;
- }
- .site-content .full-width-widget-area {
- padding: 0 5% 1.6em;
- width: 100%;
- }
- .site-content .full-width-widget-area .widget {
- background-color: transparent;
- margin: 0.4em auto;
- padding: 0;
- width: 100%;
- }
- .site-content .full-width-widget-area .widget-title {
- text-align: center;
- text-transform: none;
- letter-spacing: 0;
- margin-bottom: .8em;
- font-weight: normal;
- font-size: 20px;
- font-size: 1.25rem;
- }
- .footer-widgets-wrapper {
- background-color: #6636cc;
- color: white;
- padding: 1.6em 5%;
- width: 100%;
- }
- .footer-widgets-wrapper a {
- color: white;
- }
- .footer-widgets-wrapper a:hover {
- opacity: 0.7;
- }
- .footer-widgets-wrapper button,
- .footer-widgets-wrapper input[type="button"],
- .footer-widgets-wrapper input[type="reset"],
- .footer-widgets-wrapper input[type="submit"],
- .footer-widgets-wrapper .button {
- color: white;
- border-color: white;
- }
- .footer-widgets-wrapper .widget {
- font-size: 16px;
- font-size: 1rem;
- }
- /* Specific widgets */
- .widget_rss a {
- font-weight: bold;
- }
- .widget_rss .rss-date {
- clear: both;
- display: block;
- font-style: italic;
- margin: 0 0 0.4em;
- }
- .widget_calendar td,
- .widget_calendar th {
- text-align: center;
- }
- .widget_calendar td#next {
- text-align: right;
- }
- .widget_calendar td#prev {
- text-align: left;
- }
- .widget_search .search-field {
- width: 100%;
- max-width: 100%;
- }
- .widget_search .search-submit {
- display: none;
- }
- .textwidget {
- word-wrap: break-word;
- }
- /*--------------------------------------------------------------
- # Infinite scroll
- --------------------------------------------------------------*/
- .infinite-scroll .posts-navigation,
- .infinite-scroll.neverending .site-footer {
- display: none;
- }
- .infinity-end.neverending .site-footer {
- display: block;
- }
- #infinite-handle span {
- border: 2px solid;
- border-color: #6636cc;
- border-radius: 10px;
- background: transparent;
- box-shadow: none;
- color: #6636cc;
- display: inline-block;
- font-weight: bold;
- margin-bottom: 1.6em;
- font-size: 16px;
- font-size: 1rem;
- letter-spacing: 1px;
- line-height: 1;
- padding: 0.8em 1.6em 0.8em;
- text-shadow: none;
- text-decoration: none;
- text-transform: uppercase;
- transition: 0.3s;
- position: relative;
- left: 50%;
- -webkit-transform: translateX(-50%);
- -moz-transform: translateX(-50%);
- -ms-transform: translateX(-50%);
- -o-transform: translateX(-50%);
- transform: translateX(-50%);
- text-align: center;
- }
- #infinite-handle span button {
- transition: none;
- }
- .infinite-loader {
- width: 100%;
- }
- .infinite-loader .spinner {
- position: relative;
- left: 50%;
- -webkit-transform: translateX(-50%);
- -moz-transform: translateX(-50%);
- -ms-transform: translateX(-50%);
- -o-transform: translateX(-50%);
- transform: translateX(-50%);
- }
- /*--------------------------------------------------------------
- # 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: .4em;
- }
- .site-content .contact-form label.checkbox,
- .site-content .contact-form > div {
- margin-bottom: .8em;
- }
- .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: .4em;
- }
- .site-content .contact-form .grunion-field-label {
- margin-bottom: .2em;
- }
- /*--------------------------------------------------------------
- # Media
- --------------------------------------------------------------*/
- img {
- height: auto; /* Make sure images are scaled correctly. */
- max-width: 100%; /* Adhere to container width. */
- }
- .page-content .wp-smiley,
- .entry-content .wp-smiley,
- .comment-content .wp-smiley {
- border: none;
- margin-bottom: 0;
- margin-top: 0;
- padding: 0;
- }
- embed,
- iframe,
- object {
- max-width: 100%; /* Make sure embeds and iframes fit their containers. */
- }
- figure {
- margin-left: 0;
- margin-right: 0;
- }
- .wp-caption {
- 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 {
- font-style: italic;
- margin: 0.8075em 0;
- }
- .wp-caption-text {
- text-align: center;
- }
- /*--------------------------------------------------------------
- ## Galleries
- --------------------------------------------------------------*/
- .gallery {
- margin-bottom: 1.6em;
- }
- .gallery-item {
- display: inline-block;
- margin: 0;
- padding: 0.8em;
- 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;
- }
- /*--------------------------------------------------------------
- # Media Queries
- --------------------------------------------------------------*/
- @media screen and (min-width: 768px) {
- /* Increase font sizes on larger screens */
- .site-title {
- font-size: 42px;
- font-size: 2.625rem;
- }
- .site-info {
- font-size: 16px;
- font-size: 1rem;
- }
- .page-template-front-page .site-main > .hentry:first-of-type .entry-content {
- font-size: 28px;
- font-size: 1.75rem;
- }
- .front-testimonials .hentry {
- font-size: 28px;
- font-size: 1.75rem;
- padding-bottom: 1.6em;
- }
- .front-testimonials .hentry .entry-title {
- font-size: 18px;
- font-size: 1.125rem;
- }
- .recent-posts .recent-posts-title {
- font-size: 28px;
- font-size: 1.75rem;
- }
- .recent-posts .entry-title {
- font-size: 20px;
- font-size: 1.25rem;
- }
- .entry-title {
- font-size: 42px;
- font-size: 2.625rem;
- word-wrap: normal;
- }
- .entry-content,
- .entry-summary {
- font-size: 18px;
- font-size: 1.125rem;
- }
- .widget-title {
- font-size: 20px;
- font-size: 1.25rem;
- }
- .header-widget-area {
- font-size: 18px;
- font-size: 1.125rem;
- }
- .site-content .full-width-widget-area {
- padding-top: 3.2em;
- }
- .site-content .full-width-widget-area .widget-title {
- font-size: 28px;
- font-size: 1.75rem;
- }
- .footer-widgets-wrapper .widget {
- font-size: 18px;
- font-size: 1.125rem;
- }
- .comments-title,
- .comment-reply-title {
- font-size: 30px;
- font-size: 1.875rem;
- }
- h1 {
- font-size: 42px;
- font-size: 2.625rem;
- }
- h2 {
- font-size: 32px;
- font-size: 2rem;
- }
- h3 {
- font-size: 30px;
- font-size: 1.875rem;
- }
- h4 {
- font-size: 26px;
- font-size: 1.625rem;
- }
- h5 {
- font-size: 20px;
- font-size: 1.25rem;
- }
- h6 {
- font-size: 16px;
- font-size: 1rem;
- }
- .site-header {
- text-align: left;
- }
- .top-bar-wrapper {
- padding: 0 10%;
- }
- .top-bar {
- padding: 0.8em 0;
- content: "";
- display: table;
- table-layout: fixed;
- }
- .top-bar .site-description {
- float: left;
- line-height: 26px;
- margin: 0;
- width: 50%;
- }
- .top-bar .jetpack-social-navigation {
- text-align: right;
- float: right;
- width: 50%;
- }
- .top-bar .jetpack-social-navigation ul {
- margin-bottom: 0;
- }
- .top-bar .jetpack-social-navigation li {
- padding-left: .8em;
- padding-right: 0;
- }
- .site-branding-wrapper {
- position: relative;
- padding: 0 10%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- .sticky-wrapper {
- background: white;
- max-width: 100%;
- width: 100%;
- z-index: 2;
- transition: 0.2s;
- }
- .site-branding {
- float: left;
- display: inline-block;
- margin-right: 1.6em;
- min-width: 33%;
- padding: 1.6em 0;
- }
- .site-branding .site-title {
- clear: none;
- display: inline-block;
- vertical-align: middle;
- }
- .custom-logo {
- clear: none;
- display: inline-block;
- margin-right: .8em;
- vertical-align: middle;
- }
- .menu-toggle {
- display: none;
- }
- .genericon, .main-navigation .page_item_has_children > a:after,
- .main-navigation .menu-item-has-children > a:after {
- font-size: 16px;
- vertical-align: middle;
- text-align: center;
- display: inline-block;
- font-family: "Genericons";
- font-style: normal;
- font-weight: normal;
- font-variant: normal;
- line-height: 1;
- text-decoration: inherit;
- text-transform: none;
- -moz-osx-font-smoothing: grayscale;
- -webkit-font-smoothing: antialiased;
- speak: none;
- }
- .genericon-expand, .main-navigation .page_item_has_children > a:after,
- .main-navigation .menu-item-has-children > a:after {
- content: "\f431";
- }
- .main-navigation {
- clear: none;
- display: block;
- float: right;
- text-align: right;
- margin-left: 1.6em;
- padding: 1.6em 0;
- position: relative;
- width: auto;
- }
- .main-navigation li {
- border-top: 0;
- display: inline-block;
- float: none;
- }
- .main-navigation li li a,
- .main-navigation li li li a,
- .main-navigation li li li li a,
- .main-navigation li li li li li a {
- padding-left: 1.6em;
- }
- .main-navigation ul {
- display: block;
- list-style: none;
- margin: 0;
- padding-left: 0;
- }
- .main-navigation ul ul {
- background-color: #6636cc;
- box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
- float: left;
- position: absolute;
- top: 1.6em;
- left: -999em;
- z-index: 99999;
- margin-left: .8em;
- text-align: left;
- }
- .main-navigation ul ul ul {
- left: -999em;
- top: 0;
- margin-left: 0;
- }
- .main-navigation ul ul li {
- border-bottom: 1px solid rgba(153, 153, 153, 0.3);
- }
- .main-navigation ul ul li:hover > ul, .main-navigation ul ul li.focus > ul {
- left: 100%;
- }
- .main-navigation ul ul .page_item_has_children > a:after,
- .main-navigation ul ul .menu-item-has-children > a:after {
- -webkit-transform: rotate(-90deg);
- -moz-transform: rotate(-90deg);
- -ms-transform: rotate(-90deg);
- -o-transform: rotate(-90deg);
- transform: rotate(-90deg);
- top: -2px;
- margin-left: 0;
- }
- .main-navigation ul ul a,
- .main-navigation ul ul a:visited {
- color: white;
- padding: 0.6em 1.6em;
- width: 200px;
- transition: opacity 0.3s;
- }
- .main-navigation ul ul a:hover, .main-navigation ul ul a:focus,
- .main-navigation ul ul a:visited:hover,
- .main-navigation ul ul a:visited:focus {
- color: white;
- opacity: 0.5;
- }
- .main-navigation ul ul li:nth-of-type(1) a {
- padding-top: .6em;
- }
- .main-navigation ul ul li:last-of-type {
- border-bottom: 0;
- }
- .main-navigation ul ul li:last-of-type a {
- padding-bottom: .6em;
- }
- .main-navigation ul li:hover > ul,
- .main-navigation ul li.focus > ul {
- left: auto;
- }
- .main-navigation a {
- padding: 0.2em 0 0.2em 2.4em;
- transition: opacity 0.3s;
- }
- .main-navigation .page_item_has_children > a:after,
- .main-navigation .menu-item-has-children > a:after {
- margin-left: 3px;
- position: relative;
- top: -2px;
- }
- .content-area {
- float: left;
- margin: 0 -40% 0 0;
- width: 100%;
- }
- .site-content {
- padding: 3.2em 10%;
- }
- .site-main {
- margin: 0 40% 0 0;
- }
- .site-content .widget-area {
- float: right;
- overflow: hidden;
- width: 30%;
- }
- .page-template-front-page .site-main > .hentry:first-of-type {
- padding: 0 10%;
- }
- .front-testimonials {
- padding: 3.2em 10%;
- content: "";
- display: table;
- table-layout: fixed;
- }
- .front-testimonials .hentry {
- float: left;
- margin-right: 4%;
- padding: 1.6em 2.4em;
- width: 48%;
- }
- .front-testimonials .hentry:nth-of-type(2n) {
- margin-right: 0;
- }
- .recent-posts {
- padding: 3.2em 10%;
- }
- .recent-posts .grid-row {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- }
- .recent-posts .hentry {
- float: left;
- margin-right: 10%;
- margin-bottom: 3.2em;
- width: 45%;
- }
- .recent-posts .hentry:nth-of-type(2n) {
- margin-right: 0;
- }
- .site-info {
- padding: 1.6em 10%;
- }
- .page-template-full-width-page .site-content {
- padding: 3.2em 10%;
- }
- .comments-area {
- padding: 2.4em;
- }
- .front-testimonials,
- .footer-widgets-wrapper,
- .recent-posts-wrapper,
- .site-branding-wrapper,
- .top-bar-wrapper,
- .site-content,
- .page-template-front-page .site-main > .hentry:first-of-type,
- .page-template-full-width-page-php .site-content,
- .site-content .full-width-widget-area,
- .header-widget-area .header-widget-area-wrapper {
- margin-left: auto;
- margin-right: auto;
- max-width: 1040px;
- }
- .page-template-front-page .site-content {
- padding-left: 0;
- padding-right: 0;
- }
- .comment-navigation .nav-previous,
- .posts-navigation .nav-previous,
- .post-navigation .nav-previous {
- float: left;
- width: 50%;
- padding: 0;
- margin: 0;
- border: 0;
- }
- .comment-navigation .nav-next,
- .posts-navigation .nav-next,
- .post-navigation .nav-next {
- float: right;
- text-align: right;
- width: 50%;
- }
- .site-content .full-width-widget-area,
- .header-widget-area-wrapper {
- float: none;
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- padding: 1.6em 0;
- width: 100%;
- }
- .site-content .full-width-widget-area .widget,
- .header-widget-area-wrapper .widget {
- flex-basis: 30%;
- margin: 0 0 1.6em;
- }
- .site-content .full-width-widget-area .widget-gallery,
- .site-content .full-width-widget-area .widget_text,
- .site-content .full-width-widget-area .widget_wpcom_instagram_widget,
- .header-widget-area-wrapper .widget-gallery,
- .header-widget-area-wrapper .widget_text,
- .header-widget-area-wrapper .widget_wpcom_instagram_widget {
- flex-basis: 100%;
- }
- .site-content .full-width-widget-area {
- padding: 3.2em 10% 0 10%;
- }
- .footer-widgets-wrapper {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- padding: 3.2em 10%;
- }
- .footer-widgets-wrapper .widget-area {
- width: 48%;
- }
- }
- @media screen and (min-width: 1100px) {
- .sticking.sticky-wrapper {
- box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.02);
- position: fixed;
- top: 0;
- left: 0;
- z-index: 10;
- }
- .admin-bar .sticking.sticky-wrapper {
- top: 32px;
- }
- .sticking .site-title {
- font-size: 28.8px;
- font-size: 1.8rem;
- }
- .sticking .custom-logo {
- max-height: 50px;
- }
- .front-testimonials,
- .footer-widgets-wrapper,
- .recent-posts-wrapper,
- .site-branding-wrapper,
- .top-bar-wrapper,
- .site-content,
- .page-template-front-page .site-main > .hentry:first-of-type,
- .page-template-full-width-page-php .site-content,
- .site-content .full-width-widget-area {
- padding-left: 0;
- padding-right: 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;
- }
- .footer-widgets .widget-area:nth-child(1):nth-last-child(4),
- .footer-widgets .widget-area:nth-child(2):nth-last-child(3),
- .footer-widgets .widget-area:nth-child(3):nth-last-child(2),
- .footer-widgets .widget-area:nth-child(4):nth-last-child(1) {
- width: 20%;
- margin-right: 6.6666%;
- }
- .footer-widgets .widget-area:nth-child(1):nth-last-child(4):last-of-type,
- .footer-widgets .widget-area:nth-child(2):nth-last-child(3):last-of-type,
- .footer-widgets .widget-area:nth-child(3):nth-last-child(2):last-of-type,
- .footer-widgets .widget-area:nth-child(4):nth-last-child(1):last-of-type {
- margin-right: 0;
- }
- }
|