123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142 |
- /* Theme Name: Penscratch 2
- * Theme URI: https://wordpress.com/themes/penscratch-2/
- * Author: Automattic
- * Author URI: https://wordpress.com/themes/
- * Description: A clean, responsive writing theme with support for custom logos, featured images, fancy pull quotes, and more.
- * Version: 2.0.2-wpcom
- * License: GNU General Public License v2 or later
- * License URI: http://www.gnu.org/licenses/gpl-2.0.html
- * Text Domain: penscratch
- * Tags: blog, classic-menu, clean, custom-background, custom-colors, custom-header, custom-menu, editor-style, education, flexible-header, full-width-template, gray, infinite-scroll, journal, light, minimal, one-column, responsive-layout, right-sidebar, rtl-language-support, school, simple, site-logo, translation-ready, two-columns, 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.
- *
- * Penscratch 2 is based on Underscores http://underscores.me/, (C) 2012-2017 Automattic, Inc.
- *
- * Resetting and rebuilding styles have been helped along thanks to the fine work of
- * Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
- * along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
- * and Blueprint http://www.blueprintcss.org/ */
- /* =Reset
- -------------------------------------------------------------- */
- html,
- body,
- div,
- span,
- applet,
- object,
- iframe,
- h1,
- h2,
- h3,
- h4,
- h5,
- h6,
- p,
- blockquote,
- pre,
- a,
- abbr,
- acronym,
- address,
- big,
- cite,
- code,
- del,
- dfn,
- em,
- font,
- ins,
- kbd,
- q,
- s,
- samp,
- small,
- strike,
- strong,
- sub,
- sup,
- tt,
- var,
- dl,
- dt,
- dd,
- ol,
- ul,
- li,
- fieldset,
- form,
- label,
- legend,
- table,
- caption,
- tbody,
- tfoot,
- thead,
- tr,
- th,
- td,
- th {
- font-family: inherit;
- font-size: 100%;
- font-weight: inherit;
- font-style: inherit;
- margin: 0;
- padding: 0;
- vertical-align: baseline;
- border: 0;
- outline: 0;
- }
- html {
- font-size: 62.5%;
- /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/4/#c790 */
- overflow-y: scroll;
- /* Keeps page centered in all browsers regardless of content height */
- -webkit-text-size-adjust: 100%;
- /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
- -ms-text-size-adjust: 100%;
- /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
- }
- *,
- *:before,
- *:after {
- /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
- -webkit-box-sizing: border-box;
- /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
- -moz-box-sizing: border-box;
- /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
- box-sizing: border-box;
- }
- body {
- background: #fff;
- }
- article,
- aside,
- details,
- figcaption,
- figure,
- footer,
- header,
- main,
- nav,
- section {
- display: block;
- }
- ol,
- ul {
- list-style: none;
- }
- table {
- border-spacing: 0;
- /* tables still need 'cellspacing="0"' in the markup */
- border-collapse: separate;
- }
- caption,
- th,
- td,
- th {
- font-weight: normal;
- text-align: left;
- }
- blockquote:before,
- blockquote:after,
- q:before,
- q:after {
- content: '';
- }
- blockquote,
- q {
- quotes: '' '';
- }
- a:focus {
- outline: thin dotted;
- }
- a:hover,
- a:active {
- outline: 0;
- }
- a img {
- border: 0;
- }
- /* =Rebuild
- ----------------------------------------------- */
- * html {
- font-size: 100%;
- }
- html {
- font-size: 16px;
- line-height: 1.5em;
- }
- body,
- button,
- input,
- select,
- textarea {
- font-family: Georgia, 'Bitstream Charter', serif;
- font-size: 16px;
- font-weight: 400;
- color: #404040;
- }
- /* Headings */
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- clear: both;
- }
- /* Text elements */
- p {
- margin-bottom: 24px;
- }
- ul,
- ol {
- margin: 0 0 24px 36px;
- }
- ul {
- list-style: disc;
- }
- ol {
- list-style: decimal;
- }
- li > ul,
- li > ol {
- margin-bottom: 0;
- margin-left: 24px;
- }
- dt {
- font-weight: 600;
- }
- dd {
- margin: 0 24px 24px;
- }
- b,
- strong {
- font-weight: 600;
- }
- dfn,
- cite,
- em,
- i {
- font-style: italic;
- }
- blockquote {
- margin: 0 24px;
- }
- address {
- margin: 0 0 24px;
- }
- pre {
- font-family: 'Courier 10 Pitch', Courier, monospace;
- font-size: .9375em;
- line-height: 1.6em;
- overflow: auto;
- max-width: 100%;
- margin-top: -2px;
- margin-bottom: 24px;
- padding: 24px;
- background: rgba(119, 119, 119, .5);
- }
- code,
- kbd,
- tt,
- var {
- font-family: Monaco, Consolas, 'Andale Mono', 'DejaVu Sans Mono', monospace;
- font-size: .875em;
- line-height: 1.71429em;
- }
- abbr,
- acronym {
- cursor: help;
- border-bottom: 1px dotted #666;
- }
- mark,
- ins {
- text-decoration: none;
- background: #fff9c0;
- }
- sup,
- sub {
- font-size: 75%;
- line-height: 0;
- position: relative;
- height: 0;
- vertical-align: baseline;
- }
- sup {
- bottom: 1ex;
- }
- sub {
- top: .5ex;
- }
- small {
- font-size: 75%;
- }
- big {
- font-size: 125%;
- }
- figure {
- margin: 0;
- }
- table {
- width: 100%;
- margin: 0 0 24px;
- }
- th {
- font-weight: bold;
- }
- img {
- /* Make sure images are scaled correctly. */
- max-width: 100%;
- height: auto;
- /* Adhere to container width. */
- }
- /* Alignment */
- .alignleft {
- display: inline;
- float: left;
- margin-right: 24px;
- }
- .alignright {
- display: inline;
- float: right;
- margin-left: 24px;
- }
- .aligncenter {
- display: block;
- clear: both;
- margin: 0 auto;
- }
- /* Text meant only for screen readers */
- .screen-reader-text {
- position: absolute !important;
- clip: rect(1px, 1px, 1px, 1px);
- }
- .screen-reader-text:focus {
- font-weight: 600;
- line-height: 24px;
- position: absolute !important;
- z-index: 100000; /* Above WP toolbar. */
- top: 24px;
- left: 24px;
- display: inline-block;
- clip: auto !important;
- padding: 24px;
- border: 1px solid #000;
- background-color: #fff;
- -webkit-box-shadow: rgba(0, 0, 0, .6) 2px 2px 10px;
- -moz-box-shadow: rgba(0, 0, 0, .6) 2px 2px 10px;
- box-shadow: rgba(0, 0, 0, .6) 2px 2px 10px;
- }
- /* Clearing */
- .clear:before,
- .clear:after {
- display: table;
- content: '';
- }
- .clear:after {
- clear: both;
- }
- .entry-content:before,
- .entry-content:after {
- display: table;
- content: '';
- }
- .entry-content:after {
- clear: both;
- }
- .comment-content:before,
- .comment-content:after {
- display: table;
- content: '';
- }
- .comment-content:after {
- clear: both;
- }
- .site-header:before,
- .site-header:after {
- display: table;
- content: '';
- }
- .site-header:after {
- clear: both;
- }
- .site-content:before,
- .site-content:after {
- display: table;
- content: '';
- }
- .site-content:after {
- clear: both;
- }
- .site-footer:before,
- .site-footer:after {
- display: table;
- content: '';
- }
- .site-footer:after {
- clear: both;
- }
- /* =Forms
- ----------------------------------------------- */
- button,
- input,
- select,
- textarea {
- margin: 0;
- /* Addresses margins set differently in IE6/7, F3, S5, Chrome */
- vertical-align: baseline;
- /* Improves appearance and consistency in all browsers */
- *vertical-align: middle;
- /* Improves appearance and consistency in all browsers */
- }
- button,
- input[type='button'],
- input[type='reset'],
- input[type='submit'] {
- cursor: pointer;
- color: rgba(0, 0, 0, .8);
- border: 1px solid #ccc;
- border-color: #ccc #ccc #bbb #ccc;
- border-radius: 3px;
- background: #e6e6e6;
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), inset 0 15px 17px rgba(255, 255, 255, .5), inset 0 -5px 12px rgba(0, 0, 0, .05);
- /* Corrects inability to style clickable 'input' types in iOS */
- text-shadow: 0 1px 0 rgba(255, 255, 255, .8);
- /* Improves usability and consistency of cursor style between image-type 'input' and others */
- -webkit-appearance: button;
- }
- button:hover,
- input[type='button']:hover,
- input[type='reset']:hover,
- input[type='submit']:hover {
- border-color: #ccc #bbb #aaa #bbb;
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8), inset 0 15px 17px rgba(255, 255, 255, .8), inset 0 -5px 12px rgba(0, 0, 0, .02);
- }
- button:focus,
- input[type='button']:focus,
- input[type='reset']:focus,
- input[type='submit']:focus,
- button:active,
- input[type='button']:active,
- input[type='reset']:active,
- input[type='submit']:active {
- border-color: #aaa #bbb #bbb #bbb;
- box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .5), inset 0 2px 5px rgba(0, 0, 0, .15);
- }
- input[type='checkbox'],
- input[type='radio'] {
- padding: 0;
- /* Addresses excess padding in IE8/9 */
- }
- input[type='search'] {
- /* Addresses appearance set to searchfield in S5, Chrome */
- -webkit-box-sizing: content-box;
- /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
- -moz-box-sizing: content-box;
- box-sizing: content-box;
- -webkit-appearance: textfield;
- }
- input[type='search']::-webkit-search-decoration {
- /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
- -webkit-appearance: none;
- }
- button::-moz-focus-inner,
- input::-moz-focus-inner {
- padding: 0;
- /* Corrects inner padding and border displayed oddly in FF3 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
- border: 0;
- }
- input[type='text'],
- input[type='email'],
- input[type='url'],
- input[type='password'],
- input[type='search'],
- textarea {
- color: #666;
- border: 1px solid #ccc;
- border-radius: 3px;
- }
- input[type='text']:focus,
- input[type='email']:focus,
- input[type='url']:focus,
- input[type='password']:focus,
- input[type='search']:focus,
- textarea:focus {
- color: #111;
- }
- input[type='text'],
- input[type='email'],
- input[type='url'],
- input[type='password'],
- input[type='search'] {
- padding: 3px;
- }
- textarea {
- overflow: auto;
- /* Improves readability and alignment in all browsers */
- width: 98%;
- /* Removes default vertical scrollbar in IE6/7/8/9 */
- padding-left: 3px;
- vertical-align: top;
- }
- * html {
- font-size: 100%;
- }
- html {
- font-size: 16px;
- line-height: 1.7em;
- }
- /* =Global */
- body {
- background-color: #eee;
- font-family: "Roboto Slab", Georgia, Times, serif;
- font-size: 15px;
- font-weight: 300;
- line-height: 27px;
- color: #666;
- }
- /* Alignment */
- .alignleft {
- display: inline;
- float: left;
- margin: 14px 27px 14px 0;
- }
- .alignright {
- display: inline;
- float: right;
- margin: 14px 0 14px 27px;
- }
- .aligncenter {
- display: block;
- clear: both;
- margin: 14px auto;
- }
- .alignnone {
- margin-top: 14px;
- margin-bottom: 14px;
- }
- /* Headings */
- h1,
- h2,
- h3,
- h4,
- h5,
- h6 {
- color: #666;
- font-family: "Roboto Slab", Georgia, Times, serif;
- }
- h1 {
- font-size: 28px;
- font-weight: normal;
- margin: 27px 0;
- }
- h2 {
- font-size: 20px;
- font-weight: normal;
- margin: 27px 0;
- }
- h3,
- #respond h3 {
- font-size: 20px;
- font-weight: normal;
- margin: 27px 0;
- }
- h4 {
- font-size: 16px;
- font-weight: normal;
- margin: 27px 0;
- }
- h5 {
- font-size: 16px;
- font-weight: normal;
- margin: 27px 0;
- }
- h6 {
- font-size: 14px;
- font-weight: normal;
- margin: 27px 0;
- }
- hr {
- height: 0;
- margin-top: -1px;
- margin-bottom: 24px;
- padding-top: 24px;
- border: 1px solid #ccc;
- border-width: 0 0 1px 0;
- clear: both;
- }
- /* Text elements */
- p {
- margin-bottom: 27px;
- }
- ul {
- margin: 0 0 27px 27px;
- list-style: disc;
- }
- ul ul {
- list-style: square;
- }
- ul ul ul {
- list-style: circle;
- }
- ol {
- margin: 0 0 27px 27px;
- list-style: decimal;
- }
- ol ol {
- list-style: lower-alpha;
- }
- ol ol ol {
- list-style: lower-roman;
- }
- li > ul,
- li > ol {
- margin-bottom: 0;
- margin-left: 27px;
- }
- dt {
- font-weight: 400;
- }
- dd {
- margin: 14px 0 14px 27px;
- }
- b,
- strong {
- font-weight: bold;
- }
- dfn,
- cite,
- em,
- i {
- font-style: italic;
- }
- blockquote {
- margin: 0 0 27px;
- padding-left: 48px;
- position: relative;
- color: #999;
- }
- blockquote:before {
- font-family: Baskerville, Georgia, serif;
- font-size: 48px;
- font-weight: bold;
- color: #eee;
- content: "\201D";
- display: block;
- position: absolute;
- top: 16px;
- left: 0;
- transform: scaleX(-1);
- }
- blockquote blockquote {
- font-size: inherit;
- }
- blockquote cite {
- display: block;
- font-size: inherit;
- font-weight: inherit;
- font-style: inherit;
- margin-top: 7px;
- width: 100%;
- text-align: right;
- }
- button,
- input[type='button'],
- input[type='reset'],
- input[type='submit'],
- .button,
- .button:visited {
- font-family: "Roboto Slab", Georgia, Times, serif;
- box-sizing: border-box;
- padding: 10px 14px;
- -webkit-transition: all .3s ease-in-out;
- transition: all .3s ease-in-out;
- letter-spacing: 1px;
- text-transform: uppercase;
- color: #999;
- border: 3px solid #eee;
- background: white;
- box-shadow: none;
- text-shadow: none;
- }
- button:hover,
- button:focus,
- button:active,
- input[type='button']:hover,
- input[type='button']:focus,
- input[type='button']:active,
- input[type='reset']:hover,
- input[type='reset']:focus,
- input[type='reset']:active,
- input[type='submit']:hover,
- input[type='submit']:focus,
- input[type='submit']:active,
- .button:hover,
- .button:focus,
- .button:active {
- -webkit-transition: all .3s ease-in-out;
- transition: all .3s ease-in-out;
- color: #1c7c7c;
- border-color: #1c7c7c;
- box-shadow: none;
- }
- input[type='text'],
- input[type='email'],
- input[type='url'],
- input[type='password'],
- input[type='search'] {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- max-width: 100%;
- padding: 12px;
- border: 1px solid #eee;
- }
- input[type='text']:active,
- input[type='text']:focus,
- input[type='email']:active,
- input[type='email']:focus,
- input[type='url']:active,
- input[type='url']:focus,
- input[type='password']:active,
- input[type='password']:focus,
- input[type='search']:active,
- input[type='search']:focus {
- border-color: #d4d4d4;
- outline: none;
- background: white;
- }
- textarea {
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- max-width: 100%;
- padding: 12px;
- border: 1px solid #eee;
- }
- textarea:active,
- textarea:focus {
- border-color: #d4d4d4;
- outline: none;
- }
- address {
- font-style: italic;
- margin-bottom: 27px;
- }
- pre {
- background: transparent;
- color: #666;
- font-family: "Roboto Slab", Georgia, Times, serif;
- font-size: 15px;
- font-weight: 300;
- line-height: 27px;
- overflow: auto;
- max-width: 100%;
- margin-bottom: 27px;
- padding: 0;
- }
- code,
- kbd,
- tt,
- var {
- font: 14px Monaco, Consolas, 'Andale Mono', 'DejaVu Sans Mono', monospace;
- font-size: 1em;
- line-height: 2.09231em;
- }
- abbr,
- acronym {
- margin-bottom: 26px;
- cursor: help;
- border-bottom: 1px dotted #eee;
- }
- mark,
- ins {
- text-decoration: none;
- background: fff9c0;
- }
- sup,
- sub {
- font-size: .8125em;
- line-height: 2.09231em;
- line-height: 0;
- position: relative;
- height: 0;
- vertical-align: baseline;
- }
- sup {
- bottom: 1ex;
- }
- sub {
- top: .5ex;
- }
- small {
- font-size: .8125em;
- line-height: 2.09231em;
- }
- big {
- font-size: 1.2em;
- line-height: 1.36em;
- }
- figure {
- margin: 0;
- }
- table {
- width: 100%;
- margin-bottom: 27px;
- }
- td,
- th {
- padding: 7px 3px 6px;
- border-collapse: collapse;
- border-bottom: 1px solid #eee;
- }
- th {
- font-weight: bold;
- padding-bottom: 4px;
- letter-spacing: 1px;
- text-transform: uppercase;
- border-bottom-width: 3px;
- }
- img {
- max-width: 100%;
- height: auto;
- }
- /* Links */
- a {
- -webkit-transition: all .2s ease-in-out;
- -moz-transition: all .2s ease-in-out;
- -o-transition: all .2s ease-in-out;
- transition: all .2s ease-in-out;
- text-decoration: none;
- color: #1c7c7c;
- }
- a:visited {
- color: #1c7c7c;
- }
- a:hover,
- a:focus,
- a:active {
- -webkit-transition: all .2s ease-in-out;
- -moz-transition: all .2s ease-in-out;
- -o-transition: all .2s ease-in-out;
- transition: all .2s ease-in-out;
- color: #999;
- }
- /* =Layout */
- .site {
- margin: 14px;
- padding: 27px;
- background: white;
- }
- .site-footer {
- width: 100%;
- }
- .site-info-wrapper {
- clear: both;
- border-top: 3px solid #eee;
- margin: 24px 0 0;
- padding: 14px 0 0;
- }
- .site-info {
- text-align: center;
- letter-spacing: 1px;
- text-transform: uppercase;
- color: #999;
- font-size: .8125em;
- line-height: 2.09231em;
- }
- .site-info a {
- text-decoration: none;
- color: #999;
- }
- .site-info a:hover {
- color: #1c7c7c;
- }
- .site-info .sep {
- display: block;
- visibility: hidden;
- clear: both;
- height: 0;
- margin: 0;
- }
- .site-content {
- word-wrap: break-word;
- }
- .site-content .widget-area {
- margin-top: 27px;
- padding-top: 24px;
- border-top: 3px solid #eee;
- }
- /* =Header */
- .site-header {
- margin: 0 0 27px;
- padding: 0 0 24px;
- border-bottom: 3px solid #eee;
- }
- .custom-logo {
- display: block;
- width: auto;
- max-height: 200px;
- margin: 0 auto 14px;
- }
- .custom-header {
- display: block;
- margin: 0 auto;
- margin-bottom: 27px;
- border-radius: 5px;
- }
- .site-branding {
- clear: both;
- margin-bottom: 14px;
- text-align: center;
- }
- .site-title {
- font-size: 27px;
- font-weight: normal;
- line-height: 1;
- position: relative;
- z-index: 2;
- display: inline-block;
- clear: none;
- margin: 0;
- }
- .site-title a {
- text-decoration: none;
- color: #666;
- }
- .site-description {
- color: #999;
- font-size: 16px;
- font-weight: 300;
- letter-spacing: 0;
- margin: 7px auto;
- text-align: center;
- }
- /* =Menu */
- .main-navigation {
- border-top: 3px solid #eee;
- font-weight: normal;
- position: relative;
- display: block;
- letter-spacing: 1px;
- margin-top: 27px;
- padding-top: 24px;
- text-transform: uppercase;
- z-index: 1;
- }
- .main-navigation ul {
- clear: both;
- margin: 0;
- padding-left: 0;
- list-style: none;
- }
- .main-navigation li {
- position: relative;
- display: block;
- }
- .main-navigation li:hover > a {
- color: #1c7c7c;
- }
- .main-navigation a,
- .main-navigation a:visited {
- display: block;
- padding: 14px 0 14px;
- text-decoration: none;
- color: #999;
- border-bottom: 1px solid #eee;
- }
- .main-navigation ul:first-child > li:last-of-type a {
- border-bottom: 0;
- }
- .current_page_item a,
- .current-menu-item a,
- .current_page_item a:visited,
- .current-menu-item a:visited {
- color: #1c7c7c;
- }
- /* Small menu */
- .menu-toggle,
- .main-navigation.toggled .nav-menu {
- display: block;
- }
- .menu-toggle {
- margin: 0 auto;
- position: relative;
- padding: 5px 7px;
- border: 1px solid #eee;
- }
- .menu-toggle svg {
- width: 16px;
- margin-right: 4px;
- height: auto;
- vertical-align: middle;
- position: relative;
- top: -2px;
- }
- #menu-icon {
- fill: #999;
- -webkit-transition: all .3s ease-in-out;
- transition: all .3s ease-in-out;
- }
- .menu-toggle:hover #menu-icon {
- fill: #1c7c7c;
- }
- .toggled .menu-toggle {
- color: #1c7c7c;
- border-color: #1c7c7c;
- }
- .toggled #menu-icon {
- fill: #1c7c7c;
- }
- .main-navigation ul:first-child {
- display: none;
- }
- .main-navigation ul ul li a {
- padding-left: 14px;
- }
- .main-navigation ul ul ul li a {
- padding-left: 28px;
- }
- .main-navigation ul ul ul ul li a {
- padding-left: 42px;
- }
- /* =Content */
- .hentry {
- position: relative;
- margin: 0 0 53px;
- padding: 0 0 27px;
- border-bottom: 1px solid #eee;
- }
- .site-main .hentry:last-of-type {
- border-bottom: 0;
- margin-bottom: 0;
- }
- .byline,
- .updated {
- display: none;
- }
- .single .byline,
- .group-blog .byline {
- display: inline;
- }
- .attachment-penscratch-2-featured {
- margin: 14px 0 0;
- -webkit-transition: all .3s ease-in-out;
- transition: all .3s ease-in-out;
- opacity: 1;
- border-radius: 3px;
- }
- .hentry:hover .attachment-penscratch-2-featured {
- -webkit-transition: all .3s ease-in-out;
- transition: all .3s ease-in-out;
- opacity: .7;
- }
- .entry-footer,
- .entry-meta {
- font-size: .8125em;
- font-weight: normal;
- line-height: 2.09231em;
- margin: 0 0 27px;
- letter-spacing: 1px;
- text-transform: uppercase;
- color: #999;
- }
- .entry-footer a,
- .entry-meta a,
- .entry-footer a:visited,
- .entry-meta a:visited {
- color: #999;
- }
- .entry-footer a:hover,
- .entry-meta a:hover {
- color: #1c7c7c;
- }
- .entry-title {
- font-size: 1.75em;
- line-height: 1.10em;
- line-height: 1.21429em;
- margin: 0 0 7px;
- }
- .entry-title a,
- .entry-title a:visited {
- text-decoration: none;
- color: #666;
- }
- .entry-title a:hover {
- color: #1c7c7c;
- }
- .page .entry-title {
- margin: 0 0 27px;
- }
- .sep {
- margin: 0 3px;
- }
- .entry-author {
- border: 1px solid #eee;
- padding: 27px;
- margin: 27px 0 0;
- }
- .entry-author p:last-of-type {
- margin-bottom: 0;
- }
- .author-title {
- font-size: 1.2em;
- margin: 0 0 7px;
- }
- .author-link {
- clear: both;
- display: inline-block;
- font-style: italic;
- }
- .author-avatar {
- float: left;
- margin-right: 1.75em;
- width: 60px;
- }
- .author-title {
- clear: none;
- }
- .author-heading,
- .author-bio {
- margin-left: 86px;
- }
- .page-links {
- clear: both;
- margin: 27px 0;
- word-spacing: 7px;
- }
- .page-title {
- font-size: 18px;
- line-height: 1.36em;
- margin: 0;
- padding-bottom: 14px;
- letter-spacing: 1px;
- color: #999;
- border-bottom: 1px solid #eee;
- }
- .page-header {
- margin-bottom: 27px;
- }
- .taxonomy-description {
- font-style: italic;
- margin-top: 27px;
- }
- /* =Media */
- .entry-content img.wp-smiley,
- .comment-content img.wp-smiley {
- margin-top: 0;
- margin-bottom: 0;
- padding: 0;
- border: none;
- }
- .wp-caption {
- max-width: 100%;
- margin-bottom: 27px;
- }
- .wp-caption img[class*='wp-image-'] {
- display: block;
- max-width: 100%;
- margin: 0 auto;
- }
- .wp-caption-text {
- font-size: .8125em;
- line-height: 1.5675em;
- margin: 14px 0;
- padding: 0 1%;
- }
- .site-content .gallery {
- margin-bottom: 27px;
- }
- .site-content .gallery a img {
- max-width: 90%;
- height: auto;
- }
- .site-content .gallery dd {
- margin: 0;
- }
- /* Gallery column widths */
- .gallery-columns-1 .gallery-item {
- width: 100%;
- }
- .gallery-columns-2 .gallery-item {
- width: 50%;
- }
- .gallery-columns-3 .gallery-item {
- width: 33.33%;
- }
- .gallery-columns-4 .gallery-item {
- width: 25%;
- }
- .gallery-columns-5 .gallery-item {
- width: 20%;
- }
- .gallery-columns-6 .gallery-item {
- width: 16.667%;
- }
- .gallery-columns-7 .gallery-item {
- width: 14%;
- }
- .gallery-columns-8 .gallery-item {
- width: 12.5%;
- }
- .gallery-columns-9 .gallery-item {
- width: 11.11%;
- }
- .site-content .gallery-columns-1.gallery a img {
- max-width: 100%;
- }
- .gallery-item {
- display: inline-block;
- margin-bottom: 14px;
- text-align: center;
- vertical-align: top;
- }
- .gallery-item img {
- padding: 3px;
- border: 1px solid #eee;
- border-radius: 3px;
- }
- .gallery-caption {
- font-size: .8125em;
- line-height: 2.09231em;
- line-height: 2.09231em;
- max-width: 90%;
- margin: 0 auto;
- }
- /* Make sure embeds and iframes fit their containers */
- embed,
- iframe,
- object {
- max-width: 100%;
- }
- /* =Navigation */
- .site-main .post-navigation,
- .site-main .paging-navigation {
- font-size: .8125em;
- font-style: italic;
- line-height: 2.09231em;
- line-height: 1.5;
- overflow: hidden;
- width: 100%;
- margin: 0;
- padding: 12px 0;
- border-top: 1px solid #eee;
- border-bottom: 1px solid #eee;
- }
- .site-main .post-navigation .meta-nav,
- .site-main .paging-navigation .meta-nav {
- clear: both;
- color: #1c7c7c;
- display: block;
- font-style: normal;
- letter-spacing: 1px;
- text-transform: uppercase;
- }
- .site-main .post-navigation .nav-previous a,
- .site-main .paging-navigation .nav-previous a {
- color: #aaa;
- position: relative;
- float: left;
- width: 50%;
- text-decoration: none;
- }
- .site-main .post-navigation .nav-next a,
- .site-main .paging-navigation .nav-next a {
- color: #aaa;
- position: relative;
- float: right;
- width: 50%;
- text-align: right;
- text-decoration: none;
- }
- .site-main .post-navigation a,
- .site-main .paging-navigation a {
- color: #aaa;
- }
- .site-main .post-navigation a:hover,
- .site-main .paging-navigation a:hover {
- color: #666;
- }
- .comment-navigation:before,
- .comment-navigation:after {
- display: table;
- content: '';
- }
- .comment-navigation:after {
- clear: both;
- }
- .site-main .comment-navigation {
- font-size: .8125em;
- line-height: 2.09231em;
- line-height: 1.5;
- clear: both;
- width: 100%;
- margin: 27px 0;
- padding: 12px 0;
- letter-spacing: 1px;
- text-transform: uppercase;
- border-top: 1px solid #eee;
- border-bottom: 1px solid #eee;
- }
- .site-main .comment-navigation .nav-previous {
- position: relative;
- float: left;
- width: 50%;
- text-align: left;
- }
- .site-main .comment-navigation .nav-next {
- position: relative;
- float: right;
- width: 50%;
- text-align: right;
- }
- /* =Comments */
- .comments-area {
- margin: 24px auto 0;
- border-top: 3px solid #eee;
- }
- .comments-title,
- #respond h3 {
- font-size: 1.2em;
- line-height: 1.36em;
- color: #999;
- }
- .comments-title small,
- .comment-reply-title small {
- float: right;
- }
- .comment-list,
- .comment-list .children {
- list-style: none;
- }
- .comment-list {
- margin: 0;
- }
- .comment-list > .comment:first-of-type {
- padding-top: 0;
- border-top: 0;
- }
- .comment {
- margin-top: 26px;
- padding-top: 27px;
- border-top: 1px solid #eee;
- }
- .comment-meta {
- text-transform: uppercase;
- }
- .comment-meta a {
- color: #666;
- }
- .comment-meta .comment-author img {
- float: left;
- border-radius: 50%;
- }
- .comment-meta .comment-author .fn {
- display: block;
- font-weight: normal;
- margin-left: 74px;
- text-transform: none;
- }
- .bypostauthor {}
- .comment-meta .comment-metadata {
- font-size: .8125em;
- font-weight: normal;
- line-height: 2.09231em;
- margin-bottom: 27px;
- margin-left: 74px;
- letter-spacing: 1px;
- color: #999;
- }
- .comment-meta .comment-metadata a {
- color: #999;
- }
- .comment-meta .comment-metadata a:hover {
- color: #1c7c7c;
- }
- .comments-area .edit-link:before {
- display: inline;
- margin: 0 7px;
- content: ' ~ ';
- }
- .comment-form label {
- display: inline-block;
- width: 109px;
- }
- .required {
- color: #1c7c7c;
- }
- .comment-form-author,
- .comment-form-email,
- .comment-form-url,
- .comment-form-comment {
- position: relative;
- margin: 0 0 27px;
- }
- .comment-form-author label,
- .comment-form-email label,
- .comment-form-url label,
- .comment-form-comment label {
- font-size: .8125em;
- font-weight: normal;
- line-height: 2.09231em;
- position: absolute;
- top: 7px;
- left: 0;
- padding: 7px 14px;
- letter-spacing: 1px;
- text-transform: uppercase;
- }
- .comment-form-author input,
- .comment-form-email input,
- .comment-form-url input,
- .comment-form-comment input {
- display: block;
- width: 100%;
- margin: 0 0 27px;
- padding-left: 100px;
- }
- .comment-form-author textarea,
- .comment-form-email textarea,
- .comment-form-url textarea,
- .comment-form-comment textarea {
- clear: both;
- width: 100%;
- margin: 0 0 27px;
- padding: 54px 14px 7px;
- }
- .says {
- display: none;
- }
- .form-allowed-tags {
- color: #999;
- }
- .no-comments {
- font-style: italic;
- margin: 27px 0;
- text-align: center;
- color: #999;
- }
- /* =Widgets */
- .widget {
- line-height: 2.09231em;
- position: relative;
- overflow: hidden;
- width: 100%;
- margin: 0 0 27px;
- padding: 0 0 27px;
- border-bottom: 1px solid #eee;
- word-wrap: break-word;
- }
- .widget-area .widget:last-of-type {
- border-bottom: 0;
- margin-bottom: 0;
- }
- .widget select {
- max-width: -webkit-calc(100% - 48px);
- max-width: calc(100% - 48px);
- margin-left: 1px;
- }
- .widget a {
- text-decoration: none;
- color: #1c7c7c;
- }
- .widget a:hover,
- .widget a:active,
- .widget a:focus {
- color: #666;
- }
- .widget:not(.widget_text) ul,
- .widget:not(.widget_text) ol {
- margin: 0;
- list-style: none;
- }
- .widget:not(.widget_text) li {
- margin: 6px 0 0;
- padding-top: 6px;
- list-style: none;
- border-top: 1px solid #eee;
- }
- .widget:not(.widget_text) li li a {
- padding-left: 14px;
- }
- .widget:not(.widget_text) li li li a {
- padding-left: 28px;
- }
- .widget:not(.widget_text) li li li li a {
- padding-left: 32px;
- }
- .widget-title {
- font-size: 18px;
- font-weight: normal;
- line-height: 1.36em;
- margin: 14px 0;
- }
- .widget-title a {
- color: #666;
- }
- /* Calendar widget */
- #wp-calendar td,
- #wp-calendar th,
- #wp-calendar th {
- text-align: center;
- }
- #wp-calendar caption {
- font-weight: 700;
- margin: 14px 0;
- text-align: center;
- }
- #wp-calendar a {
- text-decoration: none;
- color: #1c7c7c;
- }
- /* Recent Comments */
- .widget_recent_comments td,
- .widget_recent_comments th {
- border: 0;
- }
- /* Tags */
- .tags-links {
- display: block;
- margin-top: 7px;
- }
- .tags-links:before,
- .tags-links:after {
- display: table;
- content: '';
- }
- .tags-links:after {
- clear: both;
- }
- .wp_widget_tag_cloud a,
- .tags-links a {
- font-size: .8125em !important;
- display: inline-block;
- margin: 0 7px 7px 0 !important;
- padding: 7px;
- line-height: 1.3;
- letter-spacing: 1px;
- text-transform: uppercase;
- color: #999;
- border: 1px solid #eee;
- }
- .wp_widget_tag_cloud a:hover,
- .tags-links a:hover {
- color: #1c7c7c;
- border-color: #1c7c7c;
- }
- /* =Footer Widgets */
- .footer-widgets {
- border-top: 1px solid #eee;
- padding: 27px 0 0;
- margin: 27px 0 0;
- }
- .footer-widgets .widget-area {
- width: 100%;
- margin: 0 auto;
- }
- /* =Jetpack */
- .jetpack_widget_social_icons ul .jetpack-social-widget-item {
- border-top: none;
- }
- .jetpack-video-wrapper {
- margin-bottom: 27px;
- }
- .jetpack-slideshow.slideshow-black {
- background-color: #eee;
- border-color: #eee;
- }
- /* Globally hidden elements when Infinite Scroll is supported and in use. */
- .infinite-scroll .posts-navigation,
- .infinite-scroll.neverending .site-footer {
- 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-wrap {
- border-top: 1px solid #eee;
- padding-top: 53px;
- }
- #infinite-footer {
- z-index: 999;
- }
- #infinite-footer .container {
- font-style: italic;
- position: relative;
- color: #999;
- border-top: 0;
- background: white;
- }
- #infinite-footer .container a {
- color: #999;
- }
- #infinite-footer .container a:hover {
- color: #1c7c7c;
- }
- #infinite-footer .blog-info a,
- #infinite-footer .blog-credits {
- font-size: .8125em;
- font-weight: normal;
- font-style: normal;
- line-height: 2.09231em;
- letter-spacing: 1px;
- text-transform: uppercase;
- }
- .infinite-loader {
- clear: both;
- width: 28px;
- height: 43px;
- margin: 0 auto 14px;
- padding-top: 27px;
- }
- #infinite-handle {
- clear: both;
- width: 100%;
- margin: 0;
- }
- #infinite-handle span {
- border-radius: 3px;
- display: block;
- font-size: 1em;
- font-weight: normal;
- padding: 10px 14px;
- -webkit-transition: all .3s ease-in-out;
- transition: all .3s ease-in-out;
- letter-spacing: 1px;
- margin-left: auto;
- margin-right: auto;
- text-transform: uppercase;
- color: #999;
- border: 3px solid #eee;
- background: white;
- text-align: center;
- width: 160px;
- }
- #infinite-handle span:hover {
- border-color: #1c7c7c;
- color: #1c7c7c;
- -webkit-transition: all .3s ease-in-out;
- -moz-transition: all .3s ease-in-out;
- -o-transition: all .3s ease-in-out;
- transition: all .3s ease-in-out;
- }
- /* 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: 4px;
- float: none;
- }
- .site-content .contact-form label.checkbox,
- .site-content .contact-form > div {
- margin-bottom: 14px;
- }
- .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: 7px;
- max-width: 100%;
- }
- .site-content .contact-form .grunion-field-label {
- margin-bottom: 4px;
- width: 100%;
- }
- div.sharedaddy div.sd-block {
- padding: 14px 0 14px !important;
- }
- /* =Social Links */
- .jetpack-social-navigation {
- clear: both;
- margin: 14px auto;
- text-align: center;
- }
- .jetpack-social-navigation ul {
- margin: 0;
- padding: 0;
- list-style: none;
- }
- .jetpack-social-navigation li {
- display: inline-block;
- margin: 0;
- list-style: none;
- }
- .jetpack-social-navigation a {
- display: inline-block;
- text-decoration: none;
- font-size: 24px;
- margin-left: 4px;
- margin-top: 2px;
- margin-bottom: 4px;
- text-align: center;
- color: white;
- border-radius: 50%;
- background: #ccc;
- width: 1.5em !important;
- height: 1.5em !important;
- }
- .jetpack-social-navigation .icon {
- top: 3px;
- position: relative;
- }
- .jetpack-social-navigation ul a:hover {
- -webkit-transition: all .1s ease-in-out;
- transition: all .1s ease-in-out;
- text-decoration: none;
- background: #1c7c7c;
- color: white;
- }
- /* Media Queries */
- @media screen and (min-width: 75em) {
- .site {
- max-width: 1153px;
- margin: 54px auto;
- padding: 54px 108px;
- }
- .no-sidebar.page-template-full-width-page .site {
- max-width: 1153px;
- }
- }
- @media screen and (min-width: 55em) {
- .no-sidebar .site {
- margin-right: auto;
- margin-left: auto;
- max-width: 872px;
- padding: 54px 108px;
- }
- }
- @media screen and (min-width: 50em) {
- h1 {
- font-size: 32px;
- }
- h2 {
- font-size: 28px;
- }
- h3,
- #respond h3,
- .author-title {
- font-size: 24px;
- }
- h4 {
- font-size: 20px;
- }
- .entry-title {
- font-size: 32px;
- }
- .content-area {
- float: left;
- width: 100%;
- margin: 0 -30% 0 0;
- }
- .site-main {
- margin: 0 30% 0 0;
- }
- .site-content .widget-area {
- float: right;
- overflow: hidden;
- width: 25%;
- margin-top: 0;
- padding-top: 0;
- border-top: 0;
- }
- .no-sidebar .content-area,
- .no-sidebar .site-main,
- .page-template-full-width-page .site-main {
- float: none;
- margin: 0;
- }
- .site-info {
- line-height: 1.7;
- float: left;
- max-width: 60%;
- text-align: left;
- }
- .jetpack-social-navigation {
- float: right;
- clear: none;
- max-width: 40%;
- margin: 0;
- text-align: right;
- }
- .entry-content {
- font-size: 1.2em;
- line-height: 1.7em;
- }
- pre {
- font-size: 1em;
- }
- /* Search */
- .widget_search .search-submit {
- display: none;
- }
- blockquote {
- font-size: 1.2em;
- line-height: 1.4em;
- padding-left: 64px;
- }
- blockquote cite {
- font-size: .8125em;
- }
- blockquote:before {
- font-size: 72px;
- }
- blockquote.alignleft,
- blockquote.alignright {
- max-width: 280px;
- padding-left: 48px;
- }
- blockquote.alignleft:before,
- blockquote.alignright:before {
- font-size: 64px;
- top: 14px;
- }
- .menu-toggle {
- display: none;
- }
- .main-navigation {
- font-size: .8125em;
- line-height: 2.09231em;
- text-align: center;
- }
- .main-navigation ul:first-child {
- display: block;
- }
- .main-navigation ul li {
- display: inline-block;
- }
- .main-navigation ul li:hover > ul,
- .main-navigation ul li.focus > ul {
- display: block;
- visibility: visible;
- -webkit-transition: all .3s ease-in-out;
- transition: all .3s ease-in-out;
- opacity: 1;
- }
- .main-navigation ul a {
- padding: 7px 9px;
- border-bottom: 0;
- }
- .main-navigation ul ul {
- position: absolute;
- z-index: 99999;
- top: 2.5em;
- left: -11px;
- display: none;
- visibility: hidden;
- float: left;
- padding: 0 9px;
- -webkit-transition: all .3s ease-in-out;
- transition: all .3s ease-in-out;
- text-align: left;
- opacity: 0;
- border: 1px solid #eee;
- background: white;
- }
- .main-navigation li.menu-item-has-children > a,
- .main-navigation li.page_item_has_children > a {
- position: relative;
- padding-right: 1.6em;
- }
- .main-navigation li.menu-item-has-children > a:after,
- .main-navigation li.page_item_has_children > a:after {
- content: "\203A";
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
- font-size: 18px;
- font-weight: 900;
- line-height: 1;
- display: inline-block;
- margin-left: 7px;
- position: relative;
- top: 2px;
- -webkit-transform: rotate(90deg);
- transform: rotate(90deg);
- vertical-align: baseline;
- -webkit-font-smoothing: antialiased;
- }
- .main-navigation ul ul li.menu-item-has-children > a:after,
- .main-navigation ul ul li.page_item_has_children > a:after {
- -webkit-transform: rotate(0deg);
- transform: rotate(0deg);
- margin-left: 4px;
- top: 0;
- }
- .main-navigation ul ul li {
- padding: 5px 5px 4px;
- border-bottom: 1px solid #eee;
- }
- .main-navigation ul ul li:last-of-type {
- border-bottom: 0;
- }
- .main-navigation ul ul li a {
- line-height: 1.5;
- width: 180px;
- padding: 5px;
- }
- .main-navigation ul ul ul {
- top: 0;
- left: 100%;
- }
- .main-navigation ul ul li a,
- .main-navigation ul ul ul li a,
- .main-navigation ul ul ul ul li a {
- padding-left: 5px;
- }
- .footer-widgets .widget-area {
- float: left;
- }
- .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;
- }
- }
|