style.css 43 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346
  1. /*
  2. Theme Name: Karuna
  3. Theme URI: http://wordpress.com/themes/karuna/
  4. Author: Automattic
  5. Author URI: http://wordpress.com/themes/
  6. 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.
  7. Version: 1.2.10-wpcom
  8. License: GNU General Public License v2 or later
  9. License URI: http://www.gnu.org/licenses/gpl-2.0.html
  10. Text Domain: karuna
  11. 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
  12. This theme, like WordPress, is licensed under the GPL.
  13. Use it to make something cool, have fun, and share what you've learned with others.
  14. Karuna is based on Components http://components.underscores.me/, (C) 2015-2017 Automattic, Inc.
  15. Underscores is distributed under the terms of the GNU GPL v2 or later.
  16. Normalizing styles have been helped along thanks to the fine work of
  17. Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
  18. */
  19. /*--------------------------------------------------------------
  20. >>> TABLE OF CONTENTS:
  21. ----------------------------------------------------------------
  22. # Normalize
  23. # Accessibility
  24. # Alignments
  25. # Clearings
  26. # Typography
  27. # Forms
  28. # Buttons
  29. # Formatting
  30. # Lists
  31. # Tables
  32. # Navigation
  33. # Links
  34. # Layout
  35. ## Posts
  36. ## Pages
  37. # Comments
  38. # Widgets
  39. # Infinite scroll
  40. # Media
  41. ## Galleries
  42. # Media Queries
  43. --------------------------------------------------------------*/
  44. /*--------------------------------------------------------------
  45. # Normalize
  46. --------------------------------------------------------------*/
  47. html {
  48. font-family: sans-serif;
  49. -webkit-text-size-adjust: 100%;
  50. -ms-text-size-adjust: 100%;
  51. }
  52. body {
  53. margin: 0;
  54. }
  55. article,
  56. aside,
  57. details,
  58. figcaption,
  59. figure,
  60. footer,
  61. header,
  62. main,
  63. menu,
  64. nav,
  65. section,
  66. summary {
  67. display: block;
  68. }
  69. audio,
  70. canvas,
  71. progress,
  72. video {
  73. display: inline-block;
  74. vertical-align: baseline;
  75. }
  76. audio:not([controls]) {
  77. display: none;
  78. height: 0;
  79. }
  80. [hidden],
  81. template {
  82. display: none;
  83. }
  84. a {
  85. background-color: transparent;
  86. }
  87. a:active,
  88. a:hover {
  89. outline: 0;
  90. }
  91. abbr[title] {
  92. border-bottom: 1px dotted;
  93. }
  94. b,
  95. strong {
  96. font-weight: bold;
  97. }
  98. dfn {
  99. font-style: italic;
  100. }
  101. h1 {
  102. font-size: 2em;
  103. margin: 0.67em 0;
  104. }
  105. mark {
  106. background: #ff0;
  107. color: #000;
  108. }
  109. small {
  110. font-size: 80%;
  111. }
  112. sub,
  113. sup {
  114. font-size: 75%;
  115. line-height: 0;
  116. position: relative;
  117. vertical-align: baseline;
  118. }
  119. sup {
  120. top: -0.5em;
  121. }
  122. sub {
  123. bottom: -0.25em;
  124. }
  125. img {
  126. border: 0;
  127. }
  128. svg:not(:root) {
  129. overflow: hidden;
  130. }
  131. figure {
  132. margin: 1em 40px;
  133. }
  134. hr {
  135. box-sizing: content-box;
  136. height: 0;
  137. }
  138. pre {
  139. overflow: auto;
  140. }
  141. code,
  142. kbd,
  143. pre,
  144. samp {
  145. font-family: monospace, monospace;
  146. font-size: 1em;
  147. }
  148. button,
  149. input,
  150. optgroup,
  151. select,
  152. textarea {
  153. color: inherit;
  154. font: inherit;
  155. margin: 0;
  156. }
  157. button {
  158. overflow: visible;
  159. }
  160. button,
  161. select {
  162. text-transform: none;
  163. }
  164. button,
  165. html input[type="button"],
  166. input[type="reset"],
  167. input[type="submit"] {
  168. -webkit-appearance: button;
  169. cursor: pointer;
  170. }
  171. button[disabled],
  172. html input[disabled] {
  173. cursor: default;
  174. }
  175. button::-moz-focus-inner,
  176. input::-moz-focus-inner {
  177. border: 0;
  178. padding: 0;
  179. }
  180. input {
  181. line-height: normal;
  182. }
  183. input[type="checkbox"],
  184. input[type="radio"] {
  185. box-sizing: border-box;
  186. padding: 0;
  187. }
  188. input[type="number"]::-webkit-inner-spin-button,
  189. input[type="number"]::-webkit-outer-spin-button {
  190. height: auto;
  191. }
  192. input[type="search"] {
  193. -webkit-appearance: textfield;
  194. }
  195. input[type="search"]::-webkit-search-cancel-button,
  196. input[type="search"]::-webkit-search-decoration {
  197. -webkit-appearance: none;
  198. }
  199. fieldset {
  200. border: 1px solid silver;
  201. margin: 0 2px;
  202. padding: 0.35em 0.625em 0.75em;
  203. }
  204. legend {
  205. border: 0;
  206. padding: 0;
  207. }
  208. textarea {
  209. overflow: auto;
  210. }
  211. optgroup {
  212. font-weight: bold;
  213. }
  214. table {
  215. border-collapse: collapse;
  216. border-spacing: 0;
  217. }
  218. td,
  219. th {
  220. padding: 0;
  221. }
  222. /*--------------------------------------------------------------
  223. # Accessibility
  224. --------------------------------------------------------------*/
  225. .screen-reader-text {
  226. clip: rect(1px, 1px, 1px, 1px);
  227. position: absolute !important;
  228. height: 1px;
  229. width: 1px;
  230. overflow: hidden;
  231. }
  232. .screen-reader-text:focus {
  233. background-color: rgba(0, 0, 0, 0.02);
  234. border-radius: 3px;
  235. box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  236. clip: auto !important;
  237. color: #333333;
  238. display: block;
  239. font-size: 14px;
  240. font-size: 0.875rem;
  241. font-weight: bold;
  242. height: auto;
  243. left: 5px;
  244. line-height: normal;
  245. padding: 15px 23px 14px;
  246. text-decoration: none;
  247. top: 5px;
  248. width: auto;
  249. z-index: 100000; /* Above WP toolbar. */
  250. }
  251. /* Do not show the outline on the skip link target. */
  252. #content[tabindex="-1"]:focus {
  253. outline: 0;
  254. }
  255. /*--------------------------------------------------------------
  256. # Alignments
  257. --------------------------------------------------------------*/
  258. .alignleft {
  259. display: inline;
  260. float: left;
  261. margin: 0.8em 1.6em 0.8em 0;
  262. }
  263. .alignright {
  264. display: inline;
  265. float: right;
  266. margin: 0.8em 0 0.8em 1.6em;
  267. }
  268. .aligncenter {
  269. clear: both;
  270. margin: 0.8em auto;
  271. display: block;
  272. margin-left: auto;
  273. margin-right: auto;
  274. }
  275. /*--------------------------------------------------------------
  276. # Clearings
  277. --------------------------------------------------------------*/
  278. .clear:before,
  279. .clear:after,
  280. .entry-content:before,
  281. .entry-content:after,
  282. .comment-content:before,
  283. .comment-content:after,
  284. .site-header:before,
  285. .site-header:after,
  286. .site-content:before,
  287. .site-content:after,
  288. .site-footer:before,
  289. .site-footer:after {
  290. content: "";
  291. display: table;
  292. table-layout: fixed;
  293. }
  294. .clear:after,
  295. .entry-content:after,
  296. .comment-content:after,
  297. .site-header:after,
  298. .site-content:after,
  299. .site-footer:after {
  300. clear: both;
  301. }
  302. /*--------------------------------------------------------------
  303. # Typography
  304. --------------------------------------------------------------*/
  305. body,
  306. button,
  307. input,
  308. select,
  309. textarea {
  310. color: #333333;
  311. font-family: Karla, sans-serif;
  312. font-size: 16px;
  313. font-size: 1rem;
  314. line-height: 1.6;
  315. }
  316. h1, h2, h3, h4, h5, h6 {
  317. clear: both;
  318. font-weight: bold;
  319. font-family: Karla, sans-serif;
  320. text-transform: uppercase;
  321. }
  322. h1 {
  323. font-size: 32px;
  324. font-size: 2rem;
  325. }
  326. h2 {
  327. font-size: 30px;
  328. font-size: 1.875rem;
  329. }
  330. h3 {
  331. font-size: 26px;
  332. font-size: 1.625rem;
  333. }
  334. h4 {
  335. font-size: 18px;
  336. font-size: 1.125rem;
  337. }
  338. h5 {
  339. font-size: 16px;
  340. font-size: 1rem;
  341. }
  342. h6 {
  343. font-size: 14px;
  344. font-size: 0.875rem;
  345. }
  346. p {
  347. margin: 0.8em 0;
  348. }
  349. dfn, cite, em, i {
  350. font-style: italic;
  351. }
  352. blockquote {
  353. font-size: 26px;
  354. font-size: 1.625rem;
  355. font-weight: bold;
  356. margin: 0 1.6em;
  357. }
  358. address {
  359. margin: 0 0 1.6em;
  360. }
  361. pre {
  362. background: rgba(0, 0, 0, 0.02);
  363. font-family: "Courier 10 Pitch", Courier, monospace;
  364. font-size: 15px;
  365. font-size: 0.9375rem;
  366. line-height: 1.6;
  367. margin-bottom: 1.6em;
  368. max-width: 100%;
  369. overflow: auto;
  370. padding: 1.6em;
  371. }
  372. code, kbd, tt, var {
  373. font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  374. font-size: 15px;
  375. font-size: 0.9375rem;
  376. }
  377. abbr, acronym {
  378. border-bottom: 1px dotted #999999;
  379. cursor: help;
  380. }
  381. mark, ins {
  382. background: #fff9c0;
  383. text-decoration: none;
  384. }
  385. big {
  386. font-size: 125%;
  387. }
  388. blockquote, q {
  389. quotes: "" "";
  390. }
  391. blockquote:before, blockquote:after, q:before, q:after {
  392. content: "";
  393. }
  394. /*--------------------------------------------------------------
  395. # Forms
  396. --------------------------------------------------------------*/
  397. input[type="text"],
  398. input[type="email"],
  399. input[type="url"],
  400. input[type="password"],
  401. input[type="search"],
  402. input[type="number"],
  403. input[type="tel"],
  404. input[type="range"],
  405. input[type="date"],
  406. input[type="month"],
  407. input[type="week"],
  408. input[type="time"],
  409. input[type="datetime"],
  410. input[type="datetime-local"],
  411. input[type="color"],
  412. textarea {
  413. color: #999999;
  414. border: 1px solid #dddddd;
  415. border-radius: 5px;
  416. padding: .5em;
  417. }
  418. input[type="text"]:focus,
  419. input[type="email"]:focus,
  420. input[type="url"]:focus,
  421. input[type="password"]:focus,
  422. input[type="search"]:focus,
  423. input[type="number"]:focus,
  424. input[type="tel"]:focus,
  425. input[type="range"]:focus,
  426. input[type="date"]:focus,
  427. input[type="month"]:focus,
  428. input[type="week"]:focus,
  429. input[type="time"]:focus,
  430. input[type="datetime"]:focus,
  431. input[type="datetime-local"]:focus,
  432. input[type="color"]:focus,
  433. textarea:focus {
  434. color: #333333;
  435. border-color: #6636cc;
  436. outline: none;
  437. }
  438. select {
  439. border: 1px solid #dddddd;
  440. }
  441. textarea {
  442. width: 100%;
  443. }
  444. /*--------------------------------------------------------------
  445. # Forms
  446. --------------------------------------------------------------*/
  447. button,
  448. input[type="button"],
  449. input[type="reset"],
  450. input[type="submit"],
  451. .button {
  452. border: 2px solid;
  453. border-color: #6636cc;
  454. border-radius: 10px;
  455. background: transparent;
  456. box-shadow: none;
  457. color: #6636cc;
  458. font-weight: bold;
  459. font-size: 16px;
  460. font-size: 1rem;
  461. letter-spacing: 1px;
  462. line-height: 1;
  463. padding: 0.8em 1.6em 0.8em;
  464. text-shadow: none;
  465. text-decoration: none;
  466. text-transform: uppercase;
  467. transition: 0.3s;
  468. }
  469. button:hover,
  470. input[type="button"]:hover,
  471. input[type="reset"]:hover,
  472. input[type="submit"]:hover,
  473. .button:hover {
  474. border-color: #85cc36;
  475. box-shadow: none;
  476. color: #85cc36;
  477. }
  478. button:active, button:focus,
  479. input[type="button"]:active,
  480. input[type="button"]:focus,
  481. input[type="reset"]:active,
  482. input[type="reset"]:focus,
  483. input[type="submit"]:active,
  484. input[type="submit"]:focus,
  485. .button:active,
  486. .button:focus {
  487. border-color: #85cc36;
  488. box-shadow: none;
  489. color: #85cc36;
  490. }
  491. .button {
  492. display: inline-block;
  493. }
  494. /*--------------------------------------------------------------
  495. # Formattings
  496. --------------------------------------------------------------*/
  497. hr {
  498. background-color: #dddddd;
  499. border: 0;
  500. height: 1px;
  501. margin-bottom: 1.6em;
  502. }
  503. /*--------------------------------------------------------------
  504. # Lists
  505. --------------------------------------------------------------*/
  506. ul, ol {
  507. margin: 0 0 0.8em 1.6em;
  508. padding: 0;
  509. }
  510. ul {
  511. list-style: disc;
  512. }
  513. ol {
  514. list-style: decimal;
  515. }
  516. li > ul,
  517. li > ol {
  518. margin-bottom: 0;
  519. margin-left: .8em;
  520. }
  521. dt {
  522. font-weight: bold;
  523. }
  524. dd {
  525. margin: 0 1.6em 1.6em;
  526. }
  527. /*--------------------------------------------------------------
  528. # Tables
  529. --------------------------------------------------------------*/
  530. table {
  531. background-color: rgba(0, 0, 0, 0.02);
  532. margin: 0 0 1.6em;
  533. width: 100%;
  534. }
  535. caption {
  536. background-color: rgba(0, 0, 0, 0.02);
  537. padding: 8px 5px;
  538. }
  539. th,
  540. td {
  541. padding: 8px 5px;
  542. }
  543. /*--------------------------------------------------------------
  544. # Navigation
  545. --------------------------------------------------------------*/
  546. .main-navigation {
  547. clear: both;
  548. display: block;
  549. font-size: 14px;
  550. font-size: 0.875rem;
  551. font-weight: bold;
  552. padding: 0.8em 0 1.6em;
  553. text-align: left;
  554. text-transform: uppercase;
  555. width: 100%;
  556. content: "";
  557. display: table;
  558. table-layout: fixed;
  559. }
  560. .main-navigation ul {
  561. display: none;
  562. list-style: none;
  563. margin: 0;
  564. padding: 0;
  565. }
  566. .main-navigation li {
  567. border-top: 1px solid #dddddd;
  568. position: relative;
  569. list-style: none;
  570. }
  571. .main-navigation li li a {
  572. padding-left: 1.6em;
  573. }
  574. .main-navigation li li li a {
  575. padding-left: 3.2em;
  576. }
  577. .main-navigation li li li li a {
  578. padding-left: 4.8em;
  579. }
  580. .main-navigation li li li li li a {
  581. padding-left: 5.4em;
  582. }
  583. .main-navigation a,
  584. .main-navigation a:visited {
  585. color: #333333;
  586. display: block;
  587. padding: 0.8em 0.4em;
  588. text-decoration: none;
  589. }
  590. .main-navigation a:hover, .main-navigation a:focus,
  591. .main-navigation a:visited:hover,
  592. .main-navigation a:visited:focus {
  593. color: #333333;
  594. opacity: 0.5;
  595. }
  596. .main-navigation .current_page_item > a,
  597. .main-navigation .current-menu-item > a,
  598. .main-navigation .current_page_ancestor > a,
  599. .main-navigation .current-menu-ancestor > a {
  600. color: #333333;
  601. opacity: 0.5;
  602. }
  603. /* Small menu. */
  604. .main-navigation.toggled ul {
  605. display: block;
  606. }
  607. .menu-toggle {
  608. display: inline-block;
  609. margin: 0.8em auto;
  610. position: relative;
  611. left: 50%;
  612. -webkit-transform: translateX(-50%);
  613. -moz-transform: translateX(-50%);
  614. -ms-transform: translateX(-50%);
  615. -o-transform: translateX(-50%);
  616. transform: translateX(-50%);
  617. text-align: center;
  618. }
  619. .main-navigation .genericon-menu {
  620. display: inline-block;
  621. margin-right: 5px;
  622. }
  623. .comment-navigation,
  624. .posts-navigation,
  625. .post-navigation {
  626. border-top: 3px solid #dddddd;
  627. border-bottom: 1px solid #dddddd;
  628. padding: 0.8em 0;
  629. font-size: 18px;
  630. font-size: 1.125rem;
  631. }
  632. .site-main .comment-navigation, .site-main
  633. .posts-navigation, .site-main
  634. .post-navigation {
  635. margin: 0 0 1.6em;
  636. overflow: hidden;
  637. }
  638. .comment-navigation .nav-previous,
  639. .posts-navigation .nav-previous,
  640. .post-navigation .nav-previous {
  641. border-bottom: 1px solid #dddddd;
  642. margin-bottom: .8em;
  643. padding-bottom: .8em;
  644. width: 100%;
  645. }
  646. .comment-navigation .nav-next,
  647. .posts-navigation .nav-next,
  648. .post-navigation .nav-next {
  649. text-align: right;
  650. width: 100%;
  651. }
  652. .comment-navigation a,
  653. .comment-navigation a:visited,
  654. .posts-navigation a,
  655. .posts-navigation a:visited,
  656. .post-navigation a,
  657. .post-navigation a:visited {
  658. color: #6636cc;
  659. text-decoration: none;
  660. }
  661. .comment-navigation a:hover,
  662. .comment-navigation a:visited:hover,
  663. .posts-navigation a:hover,
  664. .posts-navigation a:visited:hover,
  665. .post-navigation a:hover,
  666. .post-navigation a:visited:hover {
  667. color: #85cc36;
  668. }
  669. .post-navigation .title {
  670. display: block;
  671. clear: both;
  672. color: #999999;
  673. font-style: normal;
  674. text-transform: uppercase;
  675. font-weight: bold;
  676. font-size: 13.2px;
  677. font-size: 0.825rem;
  678. }
  679. /*--------------------------------------------------------------
  680. # Links
  681. --------------------------------------------------------------*/
  682. a {
  683. color: #6636cc;
  684. font-weight: bold;
  685. text-decoration: none;
  686. transition: 0.3s;
  687. }
  688. a:visited {
  689. color: #6636cc;
  690. }
  691. a:hover, a:focus, a:active {
  692. color: #85cc36;
  693. }
  694. a:focus {
  695. outline: thin dotted;
  696. }
  697. a:hover, a:active {
  698. outline: 0;
  699. }
  700. .entry-content a,
  701. .entry-summary a {
  702. word-wrap: break-word;
  703. word-break: break-word;
  704. }
  705. /*--------------------------------------------------------------
  706. # Links
  707. --------------------------------------------------------------*/
  708. a {
  709. color: #6636cc;
  710. font-weight: bold;
  711. text-decoration: none;
  712. transition: 0.3s;
  713. }
  714. a:visited {
  715. color: #6636cc;
  716. }
  717. a:hover, a:focus, a:active {
  718. color: #85cc36;
  719. }
  720. a:focus {
  721. outline: thin dotted;
  722. }
  723. a:hover, a:active {
  724. outline: 0;
  725. }
  726. .entry-content a,
  727. .entry-summary a {
  728. word-wrap: break-word;
  729. word-break: break-word;
  730. }
  731. /*--------------------------------------------------------------
  732. # Layout
  733. --------------------------------------------------------------*/
  734. html {
  735. box-sizing: border-box;
  736. }
  737. *,
  738. *:before,
  739. *:after {
  740. box-sizing: inherit;
  741. }
  742. body {
  743. background: white; /* Fallback for when there is no custom background color defined. */
  744. }
  745. .site-content {
  746. padding: 1.6em 5%;
  747. }
  748. .no-sidebar .site-main {
  749. margin: 0;
  750. }
  751. .no-sidebar:not(.page-template-full-width-page):not(.page-template-front-page) .content-area {
  752. float: none;
  753. margin: 0 auto;
  754. max-width: 685px;
  755. }
  756. .post-type-archive-jetpack-testimonial .site-main {
  757. margin: 0;
  758. }
  759. /*--------------------------------------------------------------
  760. ## Posts
  761. --------------------------------------------------------------*/
  762. .sticky {
  763. display: block;
  764. }
  765. .hentry {
  766. margin: 0 0 3.2em;
  767. }
  768. .byline,
  769. .updated:not(.published) {
  770. display: none;
  771. }
  772. .single .byline,
  773. .group-blog .byline {
  774. display: inline;
  775. }
  776. .page-content,
  777. .entry-content,
  778. .entry-summary {
  779. margin: 0 0 1.6em;
  780. }
  781. .post-thumbnail {
  782. margin: 0 0 0.8em;
  783. }
  784. .entry-title {
  785. letter-spacing: 0;
  786. line-height: 1;
  787. margin: 0 0 0.2em;
  788. text-transform: none;
  789. word-wrap: break-word;
  790. font-size: 32px;
  791. font-size: 2rem;
  792. }
  793. .entry-title a {
  794. color: #333333;
  795. text-decoration: none;
  796. }
  797. .entry-title a:hover, .entry-title a:focus {
  798. color: #85cc36;
  799. }
  800. .entry-meta,
  801. .entry-footer {
  802. content: "";
  803. display: table;
  804. table-layout: fixed;
  805. color: #999999;
  806. text-transform: lowercase;
  807. margin: 0 0 1.6em;
  808. width: 100%;
  809. font-size: 14px;
  810. font-size: 0.875rem;
  811. }
  812. .entry-meta a,
  813. .entry-footer a {
  814. color: #999999;
  815. font-weight: normal;
  816. }
  817. .entry-meta a:hover, .entry-meta a:focus,
  818. .entry-footer a:hover,
  819. .entry-footer a:focus {
  820. text-decoration: underline;
  821. }
  822. .entry-footer span {
  823. margin-right: 1.6em;
  824. }
  825. .entry-content,
  826. .entry-summary {
  827. font-size: 16px;
  828. font-size: 1rem;
  829. }
  830. .edit-link {
  831. float: right;
  832. display: inline-block;
  833. clear: right;
  834. }
  835. .more-link {
  836. font-weight: bold;
  837. text-decoration: none;
  838. }
  839. .jetpack-recipe {
  840. padding: 0.8em 1.6em !important;
  841. }
  842. /* Author Bio */
  843. .entry-author {
  844. background-color: rgba(0, 0, 0, 0.02);
  845. padding: 1.6em;
  846. position: relative;
  847. }
  848. .entry-author .author-avatar {
  849. position: absolute;
  850. left: 1.6em;
  851. top: 1.6em;
  852. }
  853. .entry-author .author-title,
  854. .entry-author .author-name {
  855. line-height: 1.2;
  856. margin: 0;
  857. }
  858. .entry-author .author-avatar + .author-heading,
  859. .entry-author .author-avatar + .author-heading + .author-bio {
  860. margin-left: 84px;
  861. }
  862. .entry-author .author-bio {
  863. margin-top: 1.6em;
  864. margin-bottom: 0;
  865. }
  866. .entry-author .author-title {
  867. color: #999999;
  868. font-size: 16px;
  869. font-size: 1rem;
  870. }
  871. /*--------------------------------------------------------------
  872. ## Pages
  873. --------------------------------------------------------------*/
  874. .page-links {
  875. clear: both;
  876. margin: 0 0 1.6em;
  877. }
  878. .page-title {
  879. color: #999999;
  880. line-height: 1.2;
  881. }
  882. /*--------------------------------------------------------------
  883. ## Full-Width Page
  884. --------------------------------------------------------------*/
  885. .page-template-full-width-page .site-main {
  886. margin: 0;
  887. }
  888. .page-template-full-width-page .site-content {
  889. padding: 1.6em 5%;
  890. max-width: 100%;
  891. }
  892. .page-template-full-width-page .content-area {
  893. float: none;
  894. margin: 0;
  895. }
  896. /*--------------------------------------------------------------
  897. ## Static Front Page
  898. --------------------------------------------------------------*/
  899. .page-template-front-page .site-main {
  900. margin: 0;
  901. }
  902. .page-template-front-page .site-content {
  903. max-width: 100%;
  904. padding-left: 0;
  905. padding-right: 0;
  906. }
  907. .page-template-front-page .content-area {
  908. float: none;
  909. margin: 0 auto;
  910. max-width: 100%;
  911. }
  912. .page-template-front-page .site-main > .hentry:first-of-type {
  913. padding: 0 5%;
  914. margin-bottom: 0;
  915. }
  916. .page-template-front-page .site-main > .hentry:first-of-type .entry-title {
  917. text-align: center;
  918. }
  919. .page-template-front-page .site-main > .hentry:first-of-type .entry-content {
  920. font-size: 20px;
  921. font-size: 1.25rem;
  922. margin-bottom: 0;
  923. }
  924. .page-template-front-page .site-main > .hentry:first-of-type .entry-footer {
  925. margin: 0;
  926. }
  927. .post-type-archive-jetpack-testimonial .testimonials-hentry {
  928. margin-bottom: 0;
  929. }
  930. .front-testimonials {
  931. padding: 1.6em 5%;
  932. width: 100%;
  933. }
  934. .front-testimonials .hentry {
  935. background: rgba(0, 0, 0, 0.02);
  936. margin-bottom: 3.2em;
  937. padding: 1.6em 1.6em 3em;
  938. position: relative;
  939. font-size: 16px;
  940. font-size: 1rem;
  941. }
  942. .front-testimonials .hentry p {
  943. margin-top: 0;
  944. }
  945. .front-testimonials .hentry .entry-content {
  946. margin: 0;
  947. }
  948. .front-testimonials .entry-meta {
  949. display: block;
  950. margin: 0;
  951. width: auto;
  952. }
  953. .front-testimonials .hentry footer {
  954. float: right;
  955. }
  956. .front-testimonials .hentry .entry-header {
  957. float: left;
  958. margin: 0 0 1em;
  959. }
  960. .front-testimonials .hentry .entry-title {
  961. letter-spacing: 0;
  962. text-transform: none;
  963. font-size: 16px;
  964. font-size: 1rem;
  965. }
  966. .front-testimonials .hentry .entry-title:before {
  967. content: "\2014";
  968. margin-right: 5px;
  969. }
  970. .front-testimonials .hentry .post-thumbnail {
  971. position: absolute;
  972. left: 50%;
  973. bottom: 0;
  974. margin: 0;
  975. -webkit-transform: translateX(-50%) translateY(50%);
  976. -moz-transform: translateX(-50%) translateY(50%);
  977. -ms-transform: translateX(-50%) translateY(50%);
  978. -o-transform: translateX(-50%) translateY(50%);
  979. transform: translateX(-50%) translateY(50%);
  980. }
  981. .front-testimonials .hentry .post-thumbnail img {
  982. border-radius: 50%;
  983. width: 100px;
  984. height: 100px;
  985. }
  986. .jetpack-testimonial.hentry:before,
  987. .jetpack-testimonial.hentry:after {
  988. content: "";
  989. display: table;
  990. table-layout: fixed;
  991. }
  992. .jetpack-testimonial.hentry:after {
  993. clear: both;
  994. }
  995. .recent-posts {
  996. background-color: rgba(0, 0, 0, 0.02);
  997. padding: 1.6em 5%;
  998. width: 100%;
  999. content: "";
  1000. display: table;
  1001. table-layout: fixed;
  1002. }
  1003. .recent-posts .recent-posts-title {
  1004. font-weight: normal;
  1005. text-transform: none;
  1006. letter-spacing: 0;
  1007. margin: 0 0 1.6em;
  1008. text-align: center;
  1009. font-size: 24px;
  1010. font-size: 1.5rem;
  1011. }
  1012. .recent-posts .grid-row {
  1013. content: "";
  1014. display: table;
  1015. table-layout: fixed;
  1016. width: 100%;
  1017. }
  1018. .recent-posts .hentry {
  1019. margin: 0 0 1.6em;
  1020. }
  1021. .recent-posts .more-recent-posts {
  1022. display: inline-block;
  1023. position: relative;
  1024. left: 50%;
  1025. -webkit-transform: translateX(-50%);
  1026. -moz-transform: translateX(-50%);
  1027. -ms-transform: translateX(-50%);
  1028. -o-transform: translateX(-50%);
  1029. transform: translateX(-50%);
  1030. }
  1031. .recent-posts .entry-title {
  1032. font-size: 16px;
  1033. font-size: 1rem;
  1034. text-transform: uppercase;
  1035. letter-spacing: 1px;
  1036. }
  1037. /*--------------------------------------------------------------
  1038. ## Header
  1039. --------------------------------------------------------------*/
  1040. .site-header {
  1041. text-align: center;
  1042. }
  1043. .top-bar-wrapper {
  1044. padding: 0 5%;
  1045. width: 100%;
  1046. }
  1047. .top-bar {
  1048. color: white;
  1049. background-color: #6636cc;
  1050. font-weight: bold;
  1051. padding: 0.8em 0;
  1052. text-transform: uppercase;
  1053. width: 100%;
  1054. font-size: 14px;
  1055. font-size: 0.875rem;
  1056. content: "";
  1057. display: table;
  1058. table-layout: fixed;
  1059. }
  1060. .top-bar .site-description {
  1061. width: 100%;
  1062. }
  1063. .top-bar a {
  1064. color: white;
  1065. }
  1066. .top-bar .jetpack-social-navigation ul {
  1067. margin-bottom: .75em;
  1068. }
  1069. .top-bar .jetpack-social-navigation li {
  1070. padding: 0 0.4em;
  1071. }
  1072. .top-bar .jetpack-social-navigation a:hover, .top-bar .jetpack-social-navigation a:focus {
  1073. opacity: 0.5;
  1074. }
  1075. .top-bar .jetpack-social-navigation .icon {
  1076. height: 24px;
  1077. width: 24px;
  1078. }
  1079. .no-top-bar .top-bar {
  1080. padding: 0.4em 0;
  1081. }
  1082. .site-branding-wrapper {
  1083. padding: 0 5%;
  1084. width: 100%;
  1085. }
  1086. .site-branding {
  1087. padding: 1.6em 0 0;
  1088. }
  1089. .custom-logo {
  1090. -webkit-transform: translateZ(0);
  1091. -moz-transform: translateZ(0);
  1092. -ms-transform: translateZ(0);
  1093. -o-transform: translateZ(0);
  1094. transform: translateZ(0);
  1095. -webkit-backface-visibility: hidden;
  1096. -moz-backface-visibility: hidden;
  1097. -ms-backface-visibility: hidden;
  1098. backface-visibility: hidden;
  1099. -webkit-perspective: 1000;
  1100. -moz-perspective: 1000;
  1101. -ms-perspective: 1000;
  1102. perspective: 1000;
  1103. max-width: 100%;
  1104. max-height: 100px;
  1105. width: auto;
  1106. height: auto;
  1107. transition: 0.2s;
  1108. }
  1109. .site-title {
  1110. font-size: 32px;
  1111. font-size: 2rem;
  1112. font-weight: bold;
  1113. letter-spacing: 0;
  1114. line-height: 1;
  1115. margin: 0;
  1116. text-transform: uppercase;
  1117. color: #333333;
  1118. -webkit-font-smoothing: antialiased;
  1119. }
  1120. .site-title a {
  1121. color: #333333;
  1122. text-decoration: none;
  1123. }
  1124. .site-header .size-karuna-hero,
  1125. .custom-header {
  1126. display: block;
  1127. margin: 0 auto;
  1128. width: 100%;
  1129. height: auto;
  1130. }
  1131. /*--------------------------------------------------------------
  1132. ## Footer
  1133. --------------------------------------------------------------*/
  1134. .site-footer {
  1135. clear: both;
  1136. background-color: #6636cc;
  1137. width: 100%;
  1138. }
  1139. .site-info {
  1140. background-color: white;
  1141. font-size: 14px;
  1142. font-size: 0.875rem;
  1143. padding: 1.6em 5%;
  1144. text-align: center;
  1145. }
  1146. .site-info .sep {
  1147. display: inline-block;
  1148. margin: 0 0.4em;
  1149. }
  1150. /*--------------------------------------------------------------
  1151. # Comments
  1152. --------------------------------------------------------------*/
  1153. .comment-content a {
  1154. word-wrap: break-word;
  1155. }
  1156. .bypostauthor {
  1157. display: block;
  1158. }
  1159. .comments-area {
  1160. background-color: rgba(0, 0, 0, 0.02);
  1161. padding: 1.6em;
  1162. margin: 0 0 1.6em;
  1163. }
  1164. .comments-title,
  1165. .comment-reply-title {
  1166. line-height: 1.2;
  1167. margin: 0 0 0.4em;
  1168. font-size: 20px;
  1169. font-size: 1.25rem;
  1170. }
  1171. .comment-content a {
  1172. word-wrap: break-word;
  1173. }
  1174. .bypostauthor {
  1175. display: block;
  1176. }
  1177. .comment-list {
  1178. list-style: none;
  1179. margin: 0 0 3.2em;
  1180. padding: 0;
  1181. }
  1182. .comment-list .children {
  1183. list-style: none;
  1184. }
  1185. .comment-list .edit-link {
  1186. display: inline;
  1187. text-align: left;
  1188. width: auto;
  1189. }
  1190. .comment-body {
  1191. content: "";
  1192. display: table;
  1193. table-layout: fixed;
  1194. margin-top: 1.6em;
  1195. padding-top: 1.6em;
  1196. width: 100%;
  1197. }
  1198. .comment-author .fn {
  1199. display: inline-block;
  1200. margin-bottom: .4em;
  1201. font-weight: bold;
  1202. text-transform: none;
  1203. letter-spacing: 0;
  1204. font-size: 16px;
  1205. font-size: 1rem;
  1206. }
  1207. .comment-author .avatar {
  1208. float: left;
  1209. margin-right: 1.6em;
  1210. }
  1211. .comment-meta a {
  1212. text-decoration: none;
  1213. }
  1214. .comment-metadata {
  1215. color: #999999;
  1216. font-size: 13.2px;
  1217. font-size: 0.825rem;
  1218. margin-bottom: 1.6em;
  1219. text-transform: lowercase;
  1220. }
  1221. .comment-metadata a,
  1222. .comment-metadata a:visited {
  1223. color: #999999;
  1224. display: inline-block;
  1225. font-weight: normal;
  1226. text-decoration: none;
  1227. }
  1228. .comment-metadata a:hover, .comment-metadata a:focus,
  1229. .comment-metadata a:visited:hover,
  1230. .comment-metadata a:visited:focus {
  1231. text-decoration: underline;
  1232. }
  1233. .comment-metadata .edit-link {
  1234. float: none;
  1235. }
  1236. .comment-metadata .edit-link:before {
  1237. content: "|";
  1238. margin-left: .4em;
  1239. margin-right: .8em;
  1240. }
  1241. .comment-metadata a:first-of-type {
  1242. display: inline-block;
  1243. margin-bottom: .8em;
  1244. }
  1245. .pingback .edit-link,
  1246. .trackback .edit-link {
  1247. float: right;
  1248. }
  1249. .no-comments {
  1250. font-style: italic;
  1251. display: block;
  1252. text-align: center;
  1253. width: 100%;
  1254. }
  1255. .says {
  1256. display: none;
  1257. }
  1258. .comment-content {
  1259. clear: both;
  1260. }
  1261. .comment-form label {
  1262. display: inline-block;
  1263. width: 109px;
  1264. }
  1265. .comment-form-author,
  1266. .comment-form-email,
  1267. .comment-form-url,
  1268. .comment-form-comment {
  1269. margin: 0 0 1.6em;
  1270. position: relative;
  1271. }
  1272. .comment-form-author label,
  1273. .comment-form-email label,
  1274. .comment-form-url label,
  1275. .comment-form-comment label {
  1276. font-size: 14px;
  1277. font-size: 0.875rem;
  1278. font-weight: bold;
  1279. padding: 0.65em 0.8em;
  1280. position: absolute;
  1281. left: 0;
  1282. top: 2px;
  1283. text-transform: uppercase;
  1284. }
  1285. .comment-form-author input,
  1286. .comment-form-author textarea,
  1287. .comment-form-email input,
  1288. .comment-form-email textarea,
  1289. .comment-form-url input,
  1290. .comment-form-url textarea,
  1291. .comment-form-comment input,
  1292. .comment-form-comment textarea {
  1293. clear: both;
  1294. padding-left: 6.4em;
  1295. width: 100%;
  1296. }
  1297. .comment-form-author textarea,
  1298. .comment-form-email textarea,
  1299. .comment-form-url textarea,
  1300. .comment-form-comment textarea {
  1301. padding: 2em 0.8em 0.375em;
  1302. }
  1303. /*--------------------------------------------------------------
  1304. # Widgets
  1305. --------------------------------------------------------------*/
  1306. .widget {
  1307. margin: 0 0 2.4em;
  1308. }
  1309. .widget select {
  1310. max-width: 100%;
  1311. }
  1312. .widget img {
  1313. max-width: 100%;
  1314. }
  1315. .widget div > ul, .widget > ul {
  1316. margin: 0;
  1317. padding: 0;
  1318. }
  1319. .widget div > ul li, .widget > ul li {
  1320. list-style: none;
  1321. border-top: 1px solid rgba(153, 153, 153, 0.2);
  1322. margin: 0.8em 0 0;
  1323. padding: 0.8em 0 0;
  1324. }
  1325. .widget div > ul > li:first-of-type, .widget > ul > li:first-of-type {
  1326. border-top: 0;
  1327. margin-top: 0;
  1328. padding-top: 0;
  1329. }
  1330. .widget div > ol, .widget > ol {
  1331. list-style-position: inside;
  1332. margin: 0;
  1333. padding: 0;
  1334. }
  1335. .widget div > ol li, .widget > ol li {
  1336. border-top: 1px solid rgba(153, 153, 153, 0.2);
  1337. margin: 0.8em 0 0;
  1338. padding: 0.8em 0 0;
  1339. }
  1340. .widget div > ol > li:first-of-type, .widget > ol > li:first-of-type {
  1341. border-top: 0;
  1342. margin-top: 0;
  1343. padding-top: 0;
  1344. }
  1345. .widget_media_image .wp-caption {
  1346. margin: 0 auto;
  1347. }
  1348. .widget-title {
  1349. font-size: 16px;
  1350. font-size: 1rem;
  1351. margin: 0 0 0.8em;
  1352. }
  1353. .header-widget-area-wrapper {
  1354. padding-top: 1.6em;
  1355. padding-bottom: 1.6em;
  1356. }
  1357. .header-widget-area {
  1358. color: white;
  1359. background-color: #85cc36;
  1360. font-weight: bold;
  1361. padding: 0 10%;
  1362. text-align: left;
  1363. width: 100%;
  1364. font-size: 16px;
  1365. font-size: 1rem;
  1366. content: "";
  1367. display: table;
  1368. table-layout: fixed;
  1369. }
  1370. .header-widget-area a {
  1371. color: white;
  1372. }
  1373. .header-widget-area button,
  1374. .header-widget-area input[type="button"],
  1375. .header-widget-area input[type="reset"],
  1376. .header-widget-area input[type="submit"],
  1377. .header-widget-area .button {
  1378. color: white;
  1379. border-color: white;
  1380. padding: 0.4em 0.8em;
  1381. white-space: nowrap;
  1382. }
  1383. .header-widget-area button:hover, .header-widget-area button:focus,
  1384. .header-widget-area input[type="button"]:hover,
  1385. .header-widget-area input[type="button"]:focus,
  1386. .header-widget-area input[type="reset"]:hover,
  1387. .header-widget-area input[type="reset"]:focus,
  1388. .header-widget-area input[type="submit"]:hover,
  1389. .header-widget-area input[type="submit"]:focus,
  1390. .header-widget-area .button:hover,
  1391. .header-widget-area .button:focus{
  1392. opacity: 0.5;
  1393. }
  1394. .header-widget-area a:hover,
  1395. .header-widget-area a:focus {
  1396. opacity: 0.7;
  1397. }
  1398. .header-widget-area .textwidget {
  1399. text-align: center;
  1400. line-height: 2;
  1401. }
  1402. .header-widget-area .widget {
  1403. margin: 0 0 2.4em;
  1404. }
  1405. .header-widget-area .widget:first-of-type {
  1406. margin-top: 0;
  1407. }
  1408. .header-widget-area .widget:last-of-type {
  1409. margin-bottom: 0;
  1410. }
  1411. .site-content .widget-area .widget {
  1412. background-color: rgba(0, 0, 0, 0.02);
  1413. padding: 1.6em;
  1414. }
  1415. .site-content .full-width-widget-area {
  1416. padding: 0 5% 1.6em;
  1417. width: 100%;
  1418. }
  1419. .site-content .full-width-widget-area .widget {
  1420. background-color: transparent;
  1421. margin: 0.4em auto;
  1422. padding: 0;
  1423. width: 100%;
  1424. }
  1425. .site-content .full-width-widget-area .widget-title {
  1426. text-align: center;
  1427. text-transform: none;
  1428. letter-spacing: 0;
  1429. margin-bottom: .8em;
  1430. font-weight: normal;
  1431. font-size: 20px;
  1432. font-size: 1.25rem;
  1433. }
  1434. .footer-widgets-wrapper {
  1435. background-color: #6636cc;
  1436. color: white;
  1437. padding: 1.6em 5%;
  1438. width: 100%;
  1439. }
  1440. .footer-widgets-wrapper a {
  1441. color: white;
  1442. }
  1443. .footer-widgets-wrapper a:hover {
  1444. opacity: 0.7;
  1445. }
  1446. .footer-widgets-wrapper button,
  1447. .footer-widgets-wrapper input[type="button"],
  1448. .footer-widgets-wrapper input[type="reset"],
  1449. .footer-widgets-wrapper input[type="submit"],
  1450. .footer-widgets-wrapper .button {
  1451. color: white;
  1452. border-color: white;
  1453. }
  1454. .footer-widgets-wrapper .widget {
  1455. font-size: 16px;
  1456. font-size: 1rem;
  1457. }
  1458. /* Specific widgets */
  1459. .widget_rss a {
  1460. font-weight: bold;
  1461. }
  1462. .widget_rss .rss-date {
  1463. clear: both;
  1464. display: block;
  1465. font-style: italic;
  1466. margin: 0 0 0.4em;
  1467. }
  1468. .widget_calendar td,
  1469. .widget_calendar th {
  1470. text-align: center;
  1471. }
  1472. .widget_calendar td#next {
  1473. text-align: right;
  1474. }
  1475. .widget_calendar td#prev {
  1476. text-align: left;
  1477. }
  1478. .widget_search .search-field {
  1479. width: 100%;
  1480. max-width: 100%;
  1481. }
  1482. .widget_search .search-submit {
  1483. display: none;
  1484. }
  1485. .textwidget {
  1486. word-wrap: break-word;
  1487. }
  1488. /*--------------------------------------------------------------
  1489. # Infinite scroll
  1490. --------------------------------------------------------------*/
  1491. .infinite-scroll .posts-navigation,
  1492. .infinite-scroll.neverending .site-footer {
  1493. display: none;
  1494. }
  1495. .infinity-end.neverending .site-footer {
  1496. display: block;
  1497. }
  1498. #infinite-handle span {
  1499. border: 2px solid;
  1500. border-color: #6636cc;
  1501. border-radius: 10px;
  1502. background: transparent;
  1503. box-shadow: none;
  1504. color: #6636cc;
  1505. display: inline-block;
  1506. font-weight: bold;
  1507. margin-bottom: 1.6em;
  1508. font-size: 16px;
  1509. font-size: 1rem;
  1510. letter-spacing: 1px;
  1511. line-height: 1;
  1512. padding: 0.8em 1.6em 0.8em;
  1513. text-shadow: none;
  1514. text-decoration: none;
  1515. text-transform: uppercase;
  1516. transition: 0.3s;
  1517. position: relative;
  1518. left: 50%;
  1519. -webkit-transform: translateX(-50%);
  1520. -moz-transform: translateX(-50%);
  1521. -ms-transform: translateX(-50%);
  1522. -o-transform: translateX(-50%);
  1523. transform: translateX(-50%);
  1524. text-align: center;
  1525. }
  1526. #infinite-handle span button {
  1527. transition: none;
  1528. }
  1529. .infinite-loader {
  1530. width: 100%;
  1531. }
  1532. .infinite-loader .spinner {
  1533. position: relative;
  1534. left: 50%;
  1535. -webkit-transform: translateX(-50%);
  1536. -moz-transform: translateX(-50%);
  1537. -ms-transform: translateX(-50%);
  1538. -o-transform: translateX(-50%);
  1539. transform: translateX(-50%);
  1540. }
  1541. /*--------------------------------------------------------------
  1542. # Jetpack Contact Forms
  1543. --------------------------------------------------------------*/
  1544. .site-content .contact-form input[type="radio"],
  1545. .site-content .contact-form input[type="checkbox"] {
  1546. margin-bottom: 6px;
  1547. margin-right: .3em;
  1548. vertical-align: middle;
  1549. }
  1550. .site-content .contact-form label.checkbox,
  1551. .site-content .contact-form label.checkbox-multiple,
  1552. .site-content .contact-form label.radio {
  1553. font-weight: normal;
  1554. margin-bottom: .4em;
  1555. }
  1556. .site-content .contact-form label.checkbox,
  1557. .site-content .contact-form > div {
  1558. margin-bottom: .8em;
  1559. }
  1560. .site-content .contact-form textarea,
  1561. .site-content .contact-form input[type='text'],
  1562. .site-content .contact-form input[type='email'],
  1563. .site-content .contact-form input[type='url'],
  1564. .site-content .contact-form select {
  1565. margin-bottom: .4em;
  1566. }
  1567. .site-content .contact-form .grunion-field-label {
  1568. margin-bottom: .2em;
  1569. }
  1570. /*--------------------------------------------------------------
  1571. # Media
  1572. --------------------------------------------------------------*/
  1573. img {
  1574. height: auto; /* Make sure images are scaled correctly. */
  1575. max-width: 100%; /* Adhere to container width. */
  1576. }
  1577. .page-content .wp-smiley,
  1578. .entry-content .wp-smiley,
  1579. .comment-content .wp-smiley {
  1580. border: none;
  1581. margin-bottom: 0;
  1582. margin-top: 0;
  1583. padding: 0;
  1584. }
  1585. embed,
  1586. iframe,
  1587. object {
  1588. max-width: 100%; /* Make sure embeds and iframes fit their containers. */
  1589. }
  1590. figure {
  1591. margin-left: 0;
  1592. margin-right: 0;
  1593. }
  1594. .wp-caption {
  1595. margin-bottom: 1.6em;
  1596. max-width: 100%;
  1597. }
  1598. .wp-caption img[class*="wp-image-"] {
  1599. display: block;
  1600. margin-left: auto;
  1601. margin-right: auto;
  1602. }
  1603. .wp-caption .wp-caption-text {
  1604. font-style: italic;
  1605. margin: 0.8075em 0;
  1606. }
  1607. .wp-caption-text {
  1608. text-align: center;
  1609. }
  1610. /*--------------------------------------------------------------
  1611. ## Galleries
  1612. --------------------------------------------------------------*/
  1613. .gallery {
  1614. margin-bottom: 1.6em;
  1615. }
  1616. .gallery-item {
  1617. display: inline-block;
  1618. margin: 0;
  1619. padding: 0.8em;
  1620. text-align: center;
  1621. vertical-align: top;
  1622. width: 100%;
  1623. }
  1624. .gallery-columns-2 .gallery-item {
  1625. max-width: 50%;
  1626. }
  1627. .gallery-columns-3 .gallery-item {
  1628. max-width: 33.33%;
  1629. }
  1630. .gallery-columns-4 .gallery-item {
  1631. max-width: 25%;
  1632. }
  1633. .gallery-columns-5 .gallery-item {
  1634. max-width: 20%;
  1635. }
  1636. .gallery-columns-6 .gallery-item {
  1637. max-width: 16.66%;
  1638. }
  1639. .gallery-columns-7 .gallery-item {
  1640. max-width: 14.28%;
  1641. }
  1642. .gallery-columns-8 .gallery-item {
  1643. max-width: 12.5%;
  1644. }
  1645. .gallery-columns-9 .gallery-item {
  1646. max-width: 11.11%;
  1647. }
  1648. .gallery-caption {
  1649. display: block;
  1650. }
  1651. /*--------------------------------------------------------------
  1652. # Media Queries
  1653. --------------------------------------------------------------*/
  1654. @media screen and (min-width: 768px) {
  1655. /* Increase font sizes on larger screens */
  1656. .site-title {
  1657. font-size: 42px;
  1658. font-size: 2.625rem;
  1659. }
  1660. .site-info {
  1661. font-size: 16px;
  1662. font-size: 1rem;
  1663. }
  1664. .page-template-front-page .site-main > .hentry:first-of-type .entry-content {
  1665. font-size: 28px;
  1666. font-size: 1.75rem;
  1667. }
  1668. .front-testimonials .hentry {
  1669. font-size: 28px;
  1670. font-size: 1.75rem;
  1671. padding-bottom: 1.6em;
  1672. }
  1673. .front-testimonials .hentry .entry-title {
  1674. font-size: 18px;
  1675. font-size: 1.125rem;
  1676. }
  1677. .recent-posts .recent-posts-title {
  1678. font-size: 28px;
  1679. font-size: 1.75rem;
  1680. }
  1681. .recent-posts .entry-title {
  1682. font-size: 20px;
  1683. font-size: 1.25rem;
  1684. }
  1685. .entry-title {
  1686. font-size: 42px;
  1687. font-size: 2.625rem;
  1688. word-wrap: normal;
  1689. }
  1690. .entry-content,
  1691. .entry-summary {
  1692. font-size: 18px;
  1693. font-size: 1.125rem;
  1694. }
  1695. .widget-title {
  1696. font-size: 20px;
  1697. font-size: 1.25rem;
  1698. }
  1699. .header-widget-area {
  1700. font-size: 18px;
  1701. font-size: 1.125rem;
  1702. }
  1703. .site-content .full-width-widget-area {
  1704. padding-top: 3.2em;
  1705. }
  1706. .site-content .full-width-widget-area .widget-title {
  1707. font-size: 28px;
  1708. font-size: 1.75rem;
  1709. }
  1710. .footer-widgets-wrapper .widget {
  1711. font-size: 18px;
  1712. font-size: 1.125rem;
  1713. }
  1714. .comments-title,
  1715. .comment-reply-title {
  1716. font-size: 30px;
  1717. font-size: 1.875rem;
  1718. }
  1719. h1 {
  1720. font-size: 42px;
  1721. font-size: 2.625rem;
  1722. }
  1723. h2 {
  1724. font-size: 32px;
  1725. font-size: 2rem;
  1726. }
  1727. h3 {
  1728. font-size: 30px;
  1729. font-size: 1.875rem;
  1730. }
  1731. h4 {
  1732. font-size: 26px;
  1733. font-size: 1.625rem;
  1734. }
  1735. h5 {
  1736. font-size: 20px;
  1737. font-size: 1.25rem;
  1738. }
  1739. h6 {
  1740. font-size: 16px;
  1741. font-size: 1rem;
  1742. }
  1743. .site-header {
  1744. text-align: left;
  1745. }
  1746. .top-bar-wrapper {
  1747. padding: 0 10%;
  1748. }
  1749. .top-bar {
  1750. padding: 0.8em 0;
  1751. content: "";
  1752. display: table;
  1753. table-layout: fixed;
  1754. }
  1755. .top-bar .site-description {
  1756. float: left;
  1757. line-height: 26px;
  1758. margin: 0;
  1759. width: 50%;
  1760. }
  1761. .top-bar .jetpack-social-navigation {
  1762. text-align: right;
  1763. float: right;
  1764. width: 50%;
  1765. }
  1766. .top-bar .jetpack-social-navigation ul {
  1767. margin-bottom: 0;
  1768. }
  1769. .top-bar .jetpack-social-navigation li {
  1770. padding-left: .8em;
  1771. padding-right: 0;
  1772. }
  1773. .site-branding-wrapper {
  1774. position: relative;
  1775. padding: 0 10%;
  1776. display: flex;
  1777. justify-content: space-between;
  1778. align-items: center;
  1779. }
  1780. .sticky-wrapper {
  1781. background: white;
  1782. max-width: 100%;
  1783. width: 100%;
  1784. z-index: 2;
  1785. transition: 0.2s;
  1786. }
  1787. .site-branding {
  1788. float: left;
  1789. display: inline-block;
  1790. margin-right: 1.6em;
  1791. min-width: 33%;
  1792. padding: 1.6em 0;
  1793. }
  1794. .site-branding .site-title {
  1795. clear: none;
  1796. display: inline-block;
  1797. vertical-align: middle;
  1798. }
  1799. .custom-logo {
  1800. clear: none;
  1801. display: inline-block;
  1802. margin-right: .8em;
  1803. vertical-align: middle;
  1804. }
  1805. .menu-toggle {
  1806. display: none;
  1807. }
  1808. .genericon, .main-navigation .page_item_has_children > a:after,
  1809. .main-navigation .menu-item-has-children > a:after {
  1810. font-size: 16px;
  1811. vertical-align: middle;
  1812. text-align: center;
  1813. display: inline-block;
  1814. font-family: "Genericons";
  1815. font-style: normal;
  1816. font-weight: normal;
  1817. font-variant: normal;
  1818. line-height: 1;
  1819. text-decoration: inherit;
  1820. text-transform: none;
  1821. -moz-osx-font-smoothing: grayscale;
  1822. -webkit-font-smoothing: antialiased;
  1823. speak: none;
  1824. }
  1825. .genericon-expand, .main-navigation .page_item_has_children > a:after,
  1826. .main-navigation .menu-item-has-children > a:after {
  1827. content: "\f431";
  1828. }
  1829. .main-navigation {
  1830. clear: none;
  1831. display: block;
  1832. float: right;
  1833. text-align: right;
  1834. margin-left: 1.6em;
  1835. padding: 1.6em 0;
  1836. position: relative;
  1837. width: auto;
  1838. }
  1839. .main-navigation li {
  1840. border-top: 0;
  1841. display: inline-block;
  1842. float: none;
  1843. }
  1844. .main-navigation li li a,
  1845. .main-navigation li li li a,
  1846. .main-navigation li li li li a,
  1847. .main-navigation li li li li li a {
  1848. padding-left: 1.6em;
  1849. }
  1850. .main-navigation ul {
  1851. display: block;
  1852. list-style: none;
  1853. margin: 0;
  1854. padding-left: 0;
  1855. }
  1856. .main-navigation ul ul {
  1857. background-color: #6636cc;
  1858. box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  1859. float: left;
  1860. position: absolute;
  1861. top: 1.6em;
  1862. left: -999em;
  1863. z-index: 99999;
  1864. margin-left: .8em;
  1865. text-align: left;
  1866. }
  1867. .main-navigation ul ul ul {
  1868. left: -999em;
  1869. top: 0;
  1870. margin-left: 0;
  1871. }
  1872. .main-navigation ul ul li {
  1873. border-bottom: 1px solid rgba(153, 153, 153, 0.3);
  1874. }
  1875. .main-navigation ul ul li:hover > ul, .main-navigation ul ul li.focus > ul {
  1876. left: 100%;
  1877. }
  1878. .main-navigation ul ul .page_item_has_children > a:after,
  1879. .main-navigation ul ul .menu-item-has-children > a:after {
  1880. -webkit-transform: rotate(-90deg);
  1881. -moz-transform: rotate(-90deg);
  1882. -ms-transform: rotate(-90deg);
  1883. -o-transform: rotate(-90deg);
  1884. transform: rotate(-90deg);
  1885. top: -2px;
  1886. margin-left: 0;
  1887. }
  1888. .main-navigation ul ul a,
  1889. .main-navigation ul ul a:visited {
  1890. color: white;
  1891. padding: 0.6em 1.6em;
  1892. width: 200px;
  1893. transition: opacity 0.3s;
  1894. }
  1895. .main-navigation ul ul a:hover, .main-navigation ul ul a:focus,
  1896. .main-navigation ul ul a:visited:hover,
  1897. .main-navigation ul ul a:visited:focus {
  1898. color: white;
  1899. opacity: 0.5;
  1900. }
  1901. .main-navigation ul ul li:nth-of-type(1) a {
  1902. padding-top: .6em;
  1903. }
  1904. .main-navigation ul ul li:last-of-type {
  1905. border-bottom: 0;
  1906. }
  1907. .main-navigation ul ul li:last-of-type a {
  1908. padding-bottom: .6em;
  1909. }
  1910. .main-navigation ul li:hover > ul,
  1911. .main-navigation ul li.focus > ul {
  1912. left: auto;
  1913. }
  1914. .main-navigation a {
  1915. padding: 0.2em 0 0.2em 2.4em;
  1916. transition: opacity 0.3s;
  1917. }
  1918. .main-navigation .page_item_has_children > a:after,
  1919. .main-navigation .menu-item-has-children > a:after {
  1920. margin-left: 3px;
  1921. position: relative;
  1922. top: -2px;
  1923. }
  1924. .content-area {
  1925. float: left;
  1926. margin: 0 -40% 0 0;
  1927. width: 100%;
  1928. }
  1929. .site-content {
  1930. padding: 3.2em 10%;
  1931. }
  1932. .site-main {
  1933. margin: 0 40% 0 0;
  1934. }
  1935. .site-content .widget-area {
  1936. float: right;
  1937. overflow: hidden;
  1938. width: 30%;
  1939. }
  1940. .page-template-front-page .site-main > .hentry:first-of-type {
  1941. padding: 0 10%;
  1942. }
  1943. .front-testimonials {
  1944. padding: 3.2em 10%;
  1945. content: "";
  1946. display: table;
  1947. table-layout: fixed;
  1948. }
  1949. .front-testimonials .hentry {
  1950. float: left;
  1951. margin-right: 4%;
  1952. padding: 1.6em 2.4em;
  1953. width: 48%;
  1954. }
  1955. .front-testimonials .hentry:nth-of-type(2n) {
  1956. margin-right: 0;
  1957. }
  1958. .recent-posts {
  1959. padding: 3.2em 10%;
  1960. }
  1961. .recent-posts .grid-row {
  1962. display: flex;
  1963. flex-wrap: wrap;
  1964. justify-content: space-between;
  1965. }
  1966. .recent-posts .hentry {
  1967. float: left;
  1968. margin-right: 10%;
  1969. margin-bottom: 3.2em;
  1970. width: 45%;
  1971. }
  1972. .recent-posts .hentry:nth-of-type(2n) {
  1973. margin-right: 0;
  1974. }
  1975. .site-info {
  1976. padding: 1.6em 10%;
  1977. }
  1978. .page-template-full-width-page .site-content {
  1979. padding: 3.2em 10%;
  1980. }
  1981. .comments-area {
  1982. padding: 2.4em;
  1983. }
  1984. .front-testimonials,
  1985. .footer-widgets-wrapper,
  1986. .recent-posts-wrapper,
  1987. .site-branding-wrapper,
  1988. .top-bar-wrapper,
  1989. .site-content,
  1990. .page-template-front-page .site-main > .hentry:first-of-type,
  1991. .page-template-full-width-page-php .site-content,
  1992. .site-content .full-width-widget-area,
  1993. .header-widget-area .header-widget-area-wrapper {
  1994. margin-left: auto;
  1995. margin-right: auto;
  1996. max-width: 1040px;
  1997. }
  1998. .page-template-front-page .site-content {
  1999. padding-left: 0;
  2000. padding-right: 0;
  2001. }
  2002. .comment-navigation .nav-previous,
  2003. .posts-navigation .nav-previous,
  2004. .post-navigation .nav-previous {
  2005. float: left;
  2006. width: 50%;
  2007. padding: 0;
  2008. margin: 0;
  2009. border: 0;
  2010. }
  2011. .comment-navigation .nav-next,
  2012. .posts-navigation .nav-next,
  2013. .post-navigation .nav-next {
  2014. float: right;
  2015. text-align: right;
  2016. width: 50%;
  2017. }
  2018. .site-content .full-width-widget-area,
  2019. .header-widget-area-wrapper {
  2020. float: none;
  2021. display: flex;
  2022. flex-wrap: wrap;
  2023. justify-content: space-between;
  2024. padding: 1.6em 0;
  2025. width: 100%;
  2026. }
  2027. .site-content .full-width-widget-area .widget,
  2028. .header-widget-area-wrapper .widget {
  2029. flex-basis: 30%;
  2030. margin: 0 0 1.6em;
  2031. }
  2032. .site-content .full-width-widget-area .widget-gallery,
  2033. .site-content .full-width-widget-area .widget_text,
  2034. .site-content .full-width-widget-area .widget_wpcom_instagram_widget,
  2035. .header-widget-area-wrapper .widget-gallery,
  2036. .header-widget-area-wrapper .widget_text,
  2037. .header-widget-area-wrapper .widget_wpcom_instagram_widget {
  2038. flex-basis: 100%;
  2039. }
  2040. .site-content .full-width-widget-area {
  2041. padding: 3.2em 10% 0 10%;
  2042. }
  2043. .footer-widgets-wrapper {
  2044. display: flex;
  2045. flex-wrap: wrap;
  2046. justify-content: space-between;
  2047. padding: 3.2em 10%;
  2048. }
  2049. .footer-widgets-wrapper .widget-area {
  2050. width: 48%;
  2051. }
  2052. }
  2053. @media screen and (min-width: 1100px) {
  2054. .sticking.sticky-wrapper {
  2055. box-shadow: 0 0 3px 3px rgba(0, 0, 0, 0.02);
  2056. position: fixed;
  2057. top: 0;
  2058. left: 0;
  2059. z-index: 10;
  2060. }
  2061. .admin-bar .sticking.sticky-wrapper {
  2062. top: 32px;
  2063. }
  2064. .sticking .site-title {
  2065. font-size: 28.8px;
  2066. font-size: 1.8rem;
  2067. }
  2068. .sticking .custom-logo {
  2069. max-height: 50px;
  2070. }
  2071. .front-testimonials,
  2072. .footer-widgets-wrapper,
  2073. .recent-posts-wrapper,
  2074. .site-branding-wrapper,
  2075. .top-bar-wrapper,
  2076. .site-content,
  2077. .page-template-front-page .site-main > .hentry:first-of-type,
  2078. .page-template-full-width-page-php .site-content,
  2079. .site-content .full-width-widget-area {
  2080. padding-left: 0;
  2081. padding-right: 0;
  2082. }
  2083. .footer-widgets .widget-area:nth-child(1):nth-last-child(2),
  2084. .footer-widgets .widget-area:nth-child(2):nth-last-child(1) {
  2085. width: 48%;
  2086. margin-right: 4%;
  2087. }
  2088. .footer-widgets .widget-area:nth-child(1):nth-last-child(2):last-of-type,
  2089. .footer-widgets .widget-area:nth-child(2):nth-last-child(1):last-of-type {
  2090. margin-right: 0;
  2091. }
  2092. .footer-widgets .widget-area:nth-child(1):nth-last-child(3),
  2093. .footer-widgets .widget-area:nth-child(2):nth-last-child(2),
  2094. .footer-widgets .widget-area:nth-child(3):nth-last-child(1) {
  2095. width: 30%;
  2096. margin-right: 5%;
  2097. }
  2098. .footer-widgets .widget-area:nth-child(1):nth-last-child(3):last-of-type,
  2099. .footer-widgets .widget-area:nth-child(2):nth-last-child(2):last-of-type,
  2100. .footer-widgets .widget-area:nth-child(3):nth-last-child(1):last-of-type {
  2101. margin-right: 0;
  2102. }
  2103. .footer-widgets .widget-area:nth-child(1):nth-last-child(4),
  2104. .footer-widgets .widget-area:nth-child(2):nth-last-child(3),
  2105. .footer-widgets .widget-area:nth-child(3):nth-last-child(2),
  2106. .footer-widgets .widget-area:nth-child(4):nth-last-child(1) {
  2107. width: 20%;
  2108. margin-right: 6.6666%;
  2109. }
  2110. .footer-widgets .widget-area:nth-child(1):nth-last-child(4):last-of-type,
  2111. .footer-widgets .widget-area:nth-child(2):nth-last-child(3):last-of-type,
  2112. .footer-widgets .widget-area:nth-child(3):nth-last-child(2):last-of-type,
  2113. .footer-widgets .widget-area:nth-child(4):nth-last-child(1):last-of-type {
  2114. margin-right: 0;
  2115. }
  2116. }