style.css 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288
  1. @charset "UTF-8";
  2. /*
  3. Theme Name: Apostrophe 2
  4. Theme URI: https://wordpress.com/themes/apostrophe-2
  5. Author: Automattic
  6. Author URI: https://wordpress.com/themes/
  7. Description: A clean, no-nonsense magazine theme
  8. Version: 2.0.11-wpcom
  9. License: GNU General Public License v2 or later
  10. License URI: http://www.gnu.org/licenses/gpl-2.0.html
  11. Text Domain: apostrophe-2
  12. Tags: art, author-bio, black, blog, blue, bright, classic-menu, clean, contemporary, custom-background, custom-colors, custom-header, custom-menu, design, fashion, featured-images, food, gray, grid-layout, light, magazine, modern, one-column, professional, responsive-layout, right-sidebar, rtl-language-support, simple, site-logo, sticky-post, travel, two-columns, white
  13. Apostrophe 2 WordPress Theme, Copyright 2017 Automattic, Inc.
  14. Apostrophe 2 is distributed under the terms of the GNU GPL.
  15. This theme, like WordPress, is licensed under the GPL.
  16. Use it to make something cool, have fun, and share what you've learned with others.
  17. Apostrophe is based on Underscores http://underscores.me/, (C) 2012-2017 Automattic, Inc.
  18. Normalizing styles have been helped along thanks to the fine work of
  19. Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
  20. */
  21. /*--------------------------------------------------------------
  22. >>> TABLE OF CONTENTS:
  23. ----------------------------------------------------------------
  24. 0.0 Site-wide elements
  25. 1.0 Normalize
  26. 2.0 Typography
  27. 3.0 Elements
  28. 4.0 Forms
  29. 5.0 Navigation
  30. 5.1 Links
  31. 5.2 Menus
  32. 6.0 Accessibility
  33. 7.0 Alignments
  34. 8.0 Clearings
  35. 9.0 Widgets
  36. 10.0 Content
  37. 10.1 Posts and pages
  38. 10.2 Asides
  39. 10.3 Comments
  40. 11.0 Infinite scroll
  41. 12.0 Media
  42. 12.1 Captions
  43. 12.2 Galleries
  44. 13.0 Media Queries
  45. 13.1 Mobiles
  46. 13.2 Tablets
  47. 13.3 Desktops
  48. 13.4 Large Desktops
  49. 14.0 Print
  50. --------------------------------------------------------------*/
  51. /*--------------------------------------------------------------
  52. 0.0 Site-wide styles
  53. --------------------------------------------------------------*/
  54. .entry-meta .posted-on,
  55. .entry-meta .byline,
  56. .sticky .entry-meta,
  57. .edit-link,
  58. .comment-reply-link,
  59. .entry-footer a[rel="tag"],
  60. .entry-footer a[rel="category tag"],
  61. #infinite-handle span {
  62. background: #117bb8;
  63. color: #fff;
  64. display: inline-block;
  65. font-family: "Open Sans", Arial, sans-serif;
  66. font-size: 12px;
  67. font-size: 1.2rem;
  68. font-weight: 600;
  69. letter-spacing: 1px;
  70. line-height: 1.25;
  71. margin: 0 0 1rem 0;
  72. padding: 0.5rem 1rem;
  73. text-decoration: none;
  74. text-transform: uppercase;
  75. }
  76. .sticky .entry-meta,
  77. .blog .featured-content .entry-meta .posted-on {
  78. background: #362e77;
  79. }
  80. .entry-meta {
  81. display: inline-block;
  82. }
  83. .entry-meta a,
  84. .edit-link a,
  85. .comment-reply-link a,
  86. .entry-footer a[rel="tag"] a,
  87. .entry-footer a[rel="category tag"] a,
  88. #infinite-handle span a {
  89. color: #fff;
  90. text-decoration: none;
  91. }
  92. .entry-meta a:hover,
  93. .edit-link a:hover,
  94. .comment-reply-link a:hover,
  95. .entry-footer a[rel="tag"] a:hover,
  96. .entry-footer a[rel="category tag"] a:hover,
  97. #infinite-handle span a:hover {
  98. color: #fff;
  99. }
  100. .apostrophe-2-navigation .menu-item-has-children > a:after,
  101. .apostrophe-2-navigation .dropdown-toggle:before,
  102. .nav-previous .meta-nav:before,
  103. .nav-next .meta-nav:before,
  104. .sticky .entry-meta::before,
  105. .entry-format::before,
  106. .entry-footer a[rel="tag"]::before,
  107. .entry-footer a[rel="category tag"]::before,
  108. .archive .apostrophe-2-nothumb span:before,
  109. .blog .apostrophe-2-nothumb span:before,
  110. .search .apostrophe-2-nothumb span:before {
  111. display: inline-block;
  112. font-family: Genericons;
  113. font-size: 16px;
  114. font-size: 1.6rem;
  115. font-weight: normal;
  116. line-height: 1;
  117. -webkit-font-smoothing: antialiased;
  118. -moz-osx-font-smoothing: grayscale;
  119. }
  120. /*--------------------------------------------------------------
  121. 1.0 Normalize
  122. --------------------------------------------------------------*/
  123. html {
  124. font-family: sans-serif;
  125. -webkit-text-size-adjust: 100%;
  126. -ms-text-size-adjust: 100%;
  127. }
  128. body {
  129. margin: 0;
  130. }
  131. article,
  132. aside,
  133. details,
  134. figcaption,
  135. figure,
  136. footer,
  137. header,
  138. main,
  139. menu,
  140. nav,
  141. section,
  142. summary {
  143. display: block;
  144. }
  145. audio,
  146. canvas,
  147. progress,
  148. video {
  149. display: inline-block;
  150. vertical-align: baseline;
  151. }
  152. audio:not([controls]) {
  153. display: none;
  154. height: 0;
  155. }
  156. [hidden],
  157. template {
  158. display: none;
  159. }
  160. a {
  161. background-color: transparent;
  162. }
  163. a:active,
  164. a:hover {
  165. outline: 0;
  166. }
  167. abbr[title] {
  168. border-bottom: 1px dotted;
  169. }
  170. b,
  171. strong {
  172. font-weight: bold;
  173. }
  174. dfn {
  175. font-style: italic;
  176. }
  177. h1 {
  178. font-size: 2em;
  179. margin: 0.67em 0;
  180. }
  181. mark {
  182. background: #ff0;
  183. color: #000;
  184. }
  185. small {
  186. font-size: 80%;
  187. }
  188. sub,
  189. sup {
  190. font-size: 75%;
  191. line-height: 0;
  192. position: relative;
  193. vertical-align: baseline;
  194. }
  195. sup {
  196. top: -0.5em;
  197. }
  198. sub {
  199. bottom: -0.25em;
  200. }
  201. img {
  202. border: 0;
  203. }
  204. svg:not(:root) {
  205. overflow: hidden;
  206. }
  207. figure {
  208. margin: 1.5em 0;
  209. }
  210. hr {
  211. box-sizing: content-box;
  212. height: 0;
  213. }
  214. pre {
  215. overflow: auto;
  216. }
  217. code,
  218. kbd,
  219. pre,
  220. samp {
  221. font-family: monospace, monospace;
  222. font-size: 1em;
  223. }
  224. button,
  225. input,
  226. optgroup,
  227. select,
  228. textarea {
  229. color: inherit;
  230. font: inherit;
  231. margin: 0;
  232. }
  233. button {
  234. overflow: visible;
  235. }
  236. button,
  237. select {
  238. text-transform: none;
  239. }
  240. button,
  241. html input[type="button"],
  242. input[type="reset"],
  243. input[type="submit"] {
  244. cursor: pointer;
  245. -webkit-appearance: button;
  246. }
  247. button[disabled],
  248. html input[disabled] {
  249. cursor: default;
  250. }
  251. button::-moz-focus-inner,
  252. input::-moz-focus-inner {
  253. border: 0;
  254. padding: 0;
  255. }
  256. input {
  257. line-height: normal;
  258. }
  259. input[type="checkbox"],
  260. input[type="radio"] {
  261. box-sizing: border-box;
  262. padding: 0;
  263. }
  264. input[type="number"]::-webkit-inner-spin-button,
  265. input[type="number"]::-webkit-outer-spin-button {
  266. height: auto;
  267. }
  268. input[type="search"] {
  269. box-sizing: content-box;
  270. -webkit-appearance: textfield;
  271. }
  272. input[type="search"]::-webkit-search-cancel-button,
  273. input[type="search"]::-webkit-search-decoration {
  274. -webkit-appearance: none;
  275. }
  276. fieldset {
  277. border: 1px solid #c0c0c0;
  278. margin: 0 2px;
  279. padding: 0.35em 0.625em 0.75em;
  280. }
  281. legend {
  282. border: 0;
  283. padding: 0;
  284. }
  285. textarea {
  286. overflow: auto;
  287. }
  288. optgroup {
  289. font-weight: bold;
  290. }
  291. table {
  292. border-collapse: collapse;
  293. border-spacing: 0;
  294. }
  295. td,
  296. th {
  297. padding: 0;
  298. }
  299. /*--------------------------------------------------------------
  300. 2.0 Typography
  301. --------------------------------------------------------------*/
  302. html {
  303. font-size: 62.5%;
  304. /* Sets up base font size so rems are equal to pixels */
  305. }
  306. body,
  307. button,
  308. input,
  309. select,
  310. textarea {
  311. color: #404040;
  312. font-family: "PT Serif", Georgia, "Times New Roman", serif;
  313. font-size: 19px;
  314. font-size: 1.9rem;
  315. line-height: 1.75;
  316. }
  317. h1,
  318. h2,
  319. .widgettitle,
  320. .widget-title,
  321. .comments-title,
  322. #reply-title,
  323. h3,
  324. h4,
  325. h5,
  326. h6 {
  327. -ms-word-wrap: break-word;
  328. clear: both;
  329. font-family: "Open Sans", Arial, sans-serif;
  330. line-height: 1.5;
  331. margin: 1.13636% 0 0.50505%;
  332. word-wrap: break-word;
  333. }
  334. h1 a,
  335. h2 a,
  336. .widgettitle a,
  337. .widget-title a,
  338. .comments-title a,
  339. #reply-title a,
  340. h3 a,
  341. h4 a,
  342. h5 a,
  343. h6 a {
  344. text-decoration: none;
  345. }
  346. h1 {
  347. color: silver;
  348. font-size: 42px;
  349. font-size: 4.2rem;
  350. font-weight: 300;
  351. line-height: 1.25;
  352. }
  353. h2,
  354. .widgettitle,
  355. .widget-title,
  356. .widget-title label,
  357. .comments-title,
  358. #reply-title {
  359. color: #999;
  360. font-size: 32px;
  361. font-size: 3.2rem;
  362. font-weight: 700;
  363. line-height: 1.25;
  364. }
  365. h3 {
  366. color: gray;
  367. font-size: 28px;
  368. font-size: 2.8rem;
  369. font-weight: 300;
  370. }
  371. h4 {
  372. color: gray;
  373. font-size: 21px;
  374. font-size: 2.1rem;
  375. font-weight: 600;
  376. text-transform: uppercase;
  377. }
  378. h5 {
  379. color: #5a5a5a;
  380. font-size: 19px;
  381. font-size: 1.9rem;
  382. font-weight: 400;
  383. }
  384. h6 {
  385. color: #5a5a5a;
  386. font-size: 17px;
  387. font-size: 1.7rem;
  388. font-weight: 600;
  389. letter-spacing: 1px;
  390. text-transform: uppercase;
  391. }
  392. p {
  393. margin-bottom: 1.5em;
  394. }
  395. .emphasis {
  396. color: #666;
  397. font-size: 1.25em;
  398. font-style: italic;
  399. }
  400. b,
  401. strong {
  402. font-weight: bold;
  403. }
  404. dfn,
  405. cite,
  406. em,
  407. i {
  408. font-style: italic;
  409. }
  410. address {
  411. margin: 0 0 1.5em;
  412. }
  413. pre {
  414. background: #eee;
  415. font-family: "Courier 10 Pitch", Courier, monospace;
  416. font-size: 0.85em;
  417. line-height: 1.6;
  418. margin-bottom: 1.6em;
  419. max-width: 100%;
  420. overflow: auto;
  421. padding: 1.6em;
  422. white-space: pre-wrap;
  423. word-wrap: break-word;
  424. }
  425. code,
  426. kbd,
  427. tt,
  428. var {
  429. font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  430. font-size: 0.85em;
  431. }
  432. abbr,
  433. acronym {
  434. border-bottom: 1px dotted #666;
  435. cursor: help;
  436. }
  437. mark,
  438. ins {
  439. background: #fff9c0;
  440. text-decoration: none;
  441. }
  442. small {
  443. font-size: 75%;
  444. }
  445. big {
  446. font-size: 125%;
  447. }
  448. /*--------------------------------------------------------------
  449. 3.0 Elements
  450. --------------------------------------------------------------*/
  451. html {
  452. box-sizing: border-box;
  453. }
  454. *,
  455. *:before,
  456. *:after {
  457. /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  458. box-sizing: inherit;
  459. }
  460. body {
  461. background: #fff;
  462. /* Fallback for when there is no custom background color defined. */
  463. }
  464. blockquote,
  465. q {
  466. quotes: "“" "”" "‘" "’";
  467. }
  468. blockquote:before,
  469. blockquote:after {
  470. content: "";
  471. }
  472. blockquote {
  473. border-left: 4px solid #d9d9d9;
  474. font-style: italic;
  475. margin: 0 1.5em 1.5em 0;
  476. padding-left: 1.5em;
  477. }
  478. cite {
  479. color: gray;
  480. display: block;
  481. font-style: normal;
  482. margin-top: 0.25em;
  483. }
  484. cite:before {
  485. content: "—";
  486. }
  487. .pullquote {
  488. border-bottom: 2px solid #a6a6a6;
  489. border-left: 0;
  490. border-top: 4px solid #d9d9d9;
  491. color: #a6a6a6;
  492. font-size: 1.2em;
  493. margin: 4em auto;
  494. max-width: 600px;
  495. padding: 0;
  496. }
  497. .pullquote cite {
  498. font-size: 0.8em;
  499. }
  500. q:before {
  501. content: open-quote;
  502. }
  503. q:after {
  504. content: close-quote;
  505. }
  506. hr {
  507. background-color: #ccc;
  508. border: 0;
  509. height: 1px;
  510. margin-bottom: 1.5em;
  511. }
  512. ul,
  513. ol {
  514. margin: 0 0 1.5em 0;
  515. }
  516. ul {
  517. list-style: disc;
  518. }
  519. ol {
  520. list-style: decimal;
  521. }
  522. li {
  523. margin: 0.5em 0;
  524. }
  525. li > ul,
  526. li > ol {
  527. margin-bottom: 0;
  528. margin-left: 1.5em;
  529. }
  530. ul ul,
  531. ul ul ul ul {
  532. list-style-type: circle;
  533. }
  534. ul ul ul {
  535. list-style-type: disc;
  536. }
  537. ol ol,
  538. ol ol ol ol {
  539. list-style-type: lower-alpha;
  540. }
  541. ol ol ol {
  542. list-style-type: decimal;
  543. }
  544. dt {
  545. font-weight: bold;
  546. }
  547. dd {
  548. margin: 0 1.5em 1.5em;
  549. }
  550. img {
  551. height: auto;
  552. /* Make sure images are scaled correctly. */
  553. max-width: 100%;
  554. /* Adhere to container width. */
  555. }
  556. table {
  557. font-size: 0.85em;
  558. /* A smidge smaller than body text */
  559. margin: 0 0 1.5em;
  560. width: 100%;
  561. }
  562. table caption {
  563. font-style: italic;
  564. margin-bottom: 0.25em;
  565. }
  566. table td,
  567. table th {
  568. padding: 8px 8px;
  569. }
  570. table thead th {
  571. border-bottom: solid 3px;
  572. }
  573. table tbody th,
  574. table td {
  575. border-bottom: solid 1px;
  576. }
  577. table a {
  578. text-decoration: none;
  579. }
  580. /*--------------------------------------------------------------
  581. 4.0 Forms
  582. --------------------------------------------------------------*/
  583. button,
  584. input[type="button"],
  585. input[type="reset"],
  586. input[type="submit"],
  587. .button-primary,
  588. .button,
  589. .button-secondary {
  590. background: rgba(255, 255, 255, 0.25);
  591. border: 2px solid #117bb8;
  592. color: #159ae7;
  593. cursor: pointer;
  594. display: inline-block;
  595. font-family: "Open Sans", Arial, sans-serif;
  596. font-size: 18px;
  597. font-size: 1.8rem;
  598. font-weight: 300;
  599. line-height: 1;
  600. margin: 5px 0;
  601. padding: 12px 24px;
  602. text-align: center;
  603. text-decoration: none;
  604. }
  605. button:hover,
  606. input[type="button"]:hover,
  607. input[type="reset"]:hover,
  608. input[type="submit"]:hover,
  609. .button:hover {
  610. background-color: #e5f4fd;
  611. border-color: #159ae7;
  612. }
  613. button:focus,
  614. input[type="button"]:focus,
  615. input[type="reset"]:focus,
  616. input[type="submit"]:focus,
  617. .button:focus,
  618. button:active,
  619. input[type="button"]:active,
  620. input[type="reset"]:active,
  621. input[type="submit"]:active,
  622. .button:active {
  623. background-color: #ceeafa;
  624. border-color: #0d5c89;
  625. margin-top: 6px;
  626. outline: none;
  627. }
  628. label {
  629. color: silver;
  630. font-family: "Open Sans", Arial, sans-serif;
  631. font-size: 14px;
  632. font-size: 1.4rem;
  633. font-weight: 600;
  634. letter-spacing: 1px;
  635. margin: 0;
  636. text-transform: uppercase;
  637. }
  638. input[type="text"],
  639. input[type="email"],
  640. input[type="url"],
  641. input[type="password"],
  642. input[type="search"],
  643. textarea {
  644. border: 2px solid #ccc;
  645. box-sizing: border-box;
  646. color: #666;
  647. display: block;
  648. font-size: 18px;
  649. font-size: 1.8rem;
  650. font-weight: normal;
  651. line-height: 1;
  652. padding: 12px 10px;
  653. width: 100%;
  654. }
  655. input[type="text"]:focus,
  656. input[type="email"]:focus,
  657. input[type="url"]:focus,
  658. input[type="password"]:focus,
  659. input[type="search"]:focus,
  660. textarea:focus {
  661. border-color: #159ae7;
  662. color: #159ae7;
  663. outline: none;
  664. }
  665. textarea {
  666. width: 100%;
  667. }
  668. /*--------------------------------------------------------------
  669. 5.0 Navigation
  670. --------------------------------------------------------------*/
  671. /*--------------------------------------------------------------
  672. 5.1 Links
  673. --------------------------------------------------------------*/
  674. a {
  675. color: #117bb8;
  676. transition: 100ms all ease-in;
  677. }
  678. a:hover,
  679. a:focus,
  680. a:active {
  681. color: #362e77;
  682. }
  683. a:focus {
  684. outline: thin dotted;
  685. }
  686. a:hover,
  687. a:active {
  688. outline: 0;
  689. }
  690. /*--------------------------------------------------------------
  691. 5.2 Menus
  692. --------------------------------------------------------------*/
  693. /* Main site navigation */
  694. .main-navigation {
  695. border-top: solid #d9d9d9 1px;
  696. clear: both;
  697. display: block;
  698. font-family: "Open Sans", Arial, sans-serif;
  699. width: 100%;
  700. }
  701. .main-navigation a {
  702. border-top: solid 4px transparent;
  703. color: #404040;
  704. display: block;
  705. font-size: 17px;
  706. font-size: 1.7rem;
  707. font-weight: 600;
  708. line-height: 1.5;
  709. position: relative;
  710. text-decoration: none;
  711. }
  712. .main-navigation a:hover {
  713. color: #117bb8;
  714. }
  715. .main-navigation ul {
  716. list-style: none;
  717. margin: 0;
  718. padding-left: 0;
  719. }
  720. .main-navigation ul li {
  721. margin: 0;
  722. }
  723. /* Main navigation */
  724. .apostrophe-2-navigation .dropdown-toggle {
  725. background: transparent;
  726. border: 0;
  727. display: none;
  728. margin: 0;
  729. padding: 10px 10px 15px;
  730. position: absolute;
  731. right: 0;
  732. top: 0;
  733. }
  734. .apostrophe-2-navigation .menu-item-has-children > a:after {
  735. content: "\f431";
  736. padding-left: 0.5rem;
  737. vertical-align: -0.1rem;
  738. }
  739. .apostrophe-2-navigation .dropdown-toggle:before {
  740. content: "\f431";
  741. line-height: 1.5;
  742. }
  743. .apostrophe-2-navigation .dropdown-toggle.toggled-on:before {
  744. content: "\f432";
  745. }
  746. .apostrophe-2-navigation .current_page_item a,
  747. .apostrophe-2-navigation .current-menu-item a,
  748. .apostrophe-2-navigation .current-post-ancestor a,
  749. .apostrophe-2-navigation .current-menu-ancestor a,
  750. .apostrophe-2-navigation .current-menu-parent a,
  751. .apostrophe-2-navigation .current-post-parent a {
  752. border-top-color: #117bb8;
  753. }
  754. /* Social menu */
  755. .jetpack-social-navigation ul {
  756. color: transparent;
  757. float: right;
  758. list-style: none;
  759. padding: 3px 0;
  760. }
  761. .jetpack-social-navigation ul .dropdown-toggle {
  762. display: none;
  763. }
  764. .jetpack-social-navigation ul li a {
  765. line-height: 1;
  766. }
  767. .jetpack-social-navigation ul li a span {
  768. left: -999em;
  769. position: absolute;
  770. }
  771. .jetpack-social-navigation-svg ul .icon {
  772. fill: silver;
  773. width: 24px;
  774. height: 32px;
  775. transition: 200ms color ease-in;
  776. }
  777. .jetpack-social-navigation ul li:hover {
  778. background: none;
  779. }
  780. .jetpack-social-navigation ul li:hover a .icon {
  781. fill: #117bb8;
  782. }
  783. .jetpack-social-navigation ul li:hover a[href*="codepen.io"] .icon {
  784. fill: #252527;
  785. }
  786. .jetpack-social-navigation ul li:hover a[href*="digg.com"] .icon {
  787. fill: #356aa0;
  788. }
  789. .jetpack-social-navigation ul li:hover a[href*="dribbble.com"] .icon {
  790. fill: #ea4c89;
  791. }
  792. .jetpack-social-navigation ul li:hover a[href*="facebook.com"] .icon {
  793. fill: #3b5998;
  794. }
  795. .jetpack-social-navigation ul li:hover a[href*="flickr.com"] .icon {
  796. fill: #ff0084;
  797. }
  798. .jetpack-social-navigation ul li:hover a[href*="plus.google.com"] .icon {
  799. fill: #dd4b39;
  800. }
  801. .jetpack-social-navigation ul li:hover a[href*="github.com"] .icon {
  802. fill: #f5f5f5;
  803. }
  804. .jetpack-social-navigation ul li:hover a[href*="instagram.com"] .icon {
  805. fill: #517fa4;
  806. }
  807. .jetpack-social-navigation ul li:hover a[href*="linkedin.com"] .icon {
  808. fill: #007bb6;
  809. }
  810. .jetpack-social-navigation ul li:hover a[href*="pinterest."] .icon {
  811. fill: #cb2027;
  812. }
  813. .jetpack-social-navigation ul li:hover a[href*="polldaddy.com"] .icon {
  814. fill: #bc0b0b;
  815. }
  816. .jetpack-social-navigation ul li:hover a[href*="getpocket.com"] .icon {
  817. fill: #ef4056;
  818. }
  819. .jetpack-social-navigation ul li:hover a[href*="reddit.com"] .icon {
  820. fill: #ff5700;
  821. }
  822. .jetpack-social-navigation ul li:hover a[href*="skype.com"] .icon,
  823. .jetpack-social-navigation ul li:hover a[href*="skype:"] .icon {
  824. fill: #12a5f4;
  825. }
  826. .jetpack-social-navigation ul li:hover a[href*="stumbleupon.com"] .icon {
  827. fill: #eb4924;
  828. }
  829. .jetpack-social-navigation ul li:hover a[href*="tumblr.com"] .icon {
  830. fill: #32506d;
  831. }
  832. .jetpack-social-navigation ul li:hover a[href*="twitter.com"] .icon {
  833. fill: #00aced;
  834. }
  835. .jetpack-social-navigation ul li:hover a[href*="vimeo.com"] .icon {
  836. fill: #aad450;
  837. }
  838. .jetpack-social-navigation ul li:hover a[href*="wordpress.org"] .icon,
  839. .jetpack-social-navigation ul li:hover a[href*="wordpress.com"] .icon {
  840. fill: #21759b;
  841. }
  842. .jetpack-social-navigation ul li:hover a[href*="youtube.com"] .icon {
  843. fill: #b00;
  844. }
  845. .jetpack-social-navigation ul li:hover a[href$="/feed/"] .icon,
  846. .jetpack-social-navigation ul li:hover a[href$="/feed"] .icon,
  847. .jetpack-social-navigation ul li:hover a[href$="?feed=rss2"] .icon {
  848. fill: #f60;
  849. }
  850. /* General navigation */
  851. .navigation {
  852. margin: 3.0303% 0;
  853. }
  854. .navigation:before,
  855. .navigation:after {
  856. content: "";
  857. display: table;
  858. }
  859. .navigation:after {
  860. clear: both;
  861. }
  862. /* In-page navigation */
  863. .nav-previous,
  864. .nav-next {
  865. font-size: 17px;
  866. font-size: 1.7rem;
  867. line-height: 1.2;
  868. width: 50%;
  869. }
  870. .nav-previous a,
  871. .nav-next a {
  872. display: block;
  873. text-decoration: none;
  874. }
  875. .nav-previous .meta-nav,
  876. .nav-next .meta-nav {
  877. color: silver;
  878. display: block;
  879. font-family: "Open Sans", Arial, sans-serif;
  880. font-size: 28px;
  881. font-size: 2.8rem;
  882. font-weight: 100;
  883. overflow: hidden;
  884. padding-bottom: 6px;
  885. position: relative;
  886. }
  887. .nav-previous .meta-nav:before,
  888. .nav-next .meta-nav:before {
  889. color: silver;
  890. content: "\f432";
  891. display: block;
  892. font-size: 36px;
  893. font-size: 3.6rem;
  894. position: absolute;
  895. }
  896. .nav-previous {
  897. float: left;
  898. }
  899. .nav-previous .meta-nav {
  900. padding-left: 25px;
  901. }
  902. .nav-previous .meta-nav:before {
  903. -moz-transform: rotate(-90deg);
  904. -ms-transform: rotate(-90deg);
  905. -o-transform: rotate(-90deg);
  906. -webkit-transform: rotate(-90deg);
  907. left: -10px;
  908. top: -2px;
  909. }
  910. .nav-next {
  911. float: right;
  912. text-align: right;
  913. }
  914. .nav-next .meta-nav {
  915. padding-right: 25px;
  916. }
  917. .nav-next .meta-nav:before {
  918. -moz-transform: rotate(90deg);
  919. -ms-transform: rotate(90deg);
  920. -o-transform: rotate(90deg);
  921. -webkit-transform: rotate(90deg);
  922. right: -10px;
  923. top: 2px;
  924. }
  925. /* Pagination */
  926. .posts-navigation {
  927. border-top: solid 1px;
  928. clear: both;
  929. display: block;
  930. float: left;
  931. text-align: center;
  932. width: 100%;
  933. }
  934. .posts-navigation .nav-previous {
  935. width: auto;
  936. }
  937. .posts-navigation a {
  938. border-top: solid 4px transparent;
  939. display: inline-block;
  940. font-size: 20px;
  941. font-weight: 400;
  942. height: 48px;
  943. line-height: 40px;
  944. text-decoration: none;
  945. }
  946. /* Image navigation */
  947. .image-navigation {
  948. margin-bottom: 0;
  949. }
  950. .attachment .post-navigation .nav-previous {
  951. border-top: 2px solid #ccc;
  952. margin-top: 1.51515%;
  953. padding-top: 3.0303%;
  954. text-align: center;
  955. width: 100%;
  956. }
  957. .attachment .post-navigation .nav-previous .meta-nav {
  958. display: inline-block;
  959. position: relative;
  960. }
  961. .attachment .post-navigation .nav-previous .post-title {
  962. display: block;
  963. }
  964. /*--------------------------------------------------------------
  965. 6.0 Accessibility
  966. --------------------------------------------------------------*/
  967. /* Text meant only for screen readers. */
  968. .screen-reader-text {
  969. clip: rect(1px, 1px, 1px, 1px);
  970. height: 1px;
  971. overflow: hidden;
  972. position: absolute !important;
  973. width: 1px;
  974. }
  975. .screen-reader-text:focus {
  976. background-color: #f1f1f1;
  977. border-radius: 3px;
  978. box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  979. clip: auto !important;
  980. color: #21759b;
  981. display: block;
  982. font-size: 0.875px;
  983. font-size: 0.0875rem;
  984. font-weight: bold;
  985. height: auto;
  986. left: 5px;
  987. line-height: normal;
  988. padding: 15px 23px 14px;
  989. text-decoration: none;
  990. top: 5px;
  991. width: auto;
  992. z-index: 100000;
  993. /* Above WP toolbar. */
  994. }
  995. /*--------------------------------------------------------------
  996. 7.0 Alignments
  997. --------------------------------------------------------------*/
  998. .alignleft {
  999. display: inline;
  1000. float: left;
  1001. margin-right: 1.5em;
  1002. }
  1003. .alignright {
  1004. display: inline;
  1005. float: right;
  1006. margin-left: 1.5em;
  1007. }
  1008. .aligncenter {
  1009. display: block;
  1010. margin-left: auto;
  1011. margin-right: auto;
  1012. }
  1013. /*--------------------------------------------------------------
  1014. 8.0 Clearings
  1015. --------------------------------------------------------------*/
  1016. .clear:before:before,
  1017. .clear:before:after,
  1018. .clear:after:before,
  1019. .clear:after:after,
  1020. .entry-content:before:before,
  1021. .entry-content:before:after,
  1022. .entry-content:after:before,
  1023. .entry-content:after:after,
  1024. .comment-content:before:before,
  1025. .comment-content:before:after,
  1026. .comment-content:after:before,
  1027. .comment-content:after:after,
  1028. .site-header:before:before,
  1029. .site-header:before:after,
  1030. .site-header:after:before,
  1031. .site-header:after:after,
  1032. .site-content:before:before,
  1033. .site-content:before:after,
  1034. .site-content:after:before,
  1035. .site-content:after:after,
  1036. .site-footer:before:before,
  1037. .site-footer:before:after,
  1038. .site-footer:after:before,
  1039. .site-footer:after:after {
  1040. content: "";
  1041. display: table;
  1042. }
  1043. .clear:before:after,
  1044. .clear:after:after,
  1045. .entry-content:before:after,
  1046. .entry-content:after:after,
  1047. .comment-content:before:after,
  1048. .comment-content:after:after,
  1049. .site-header:before:after,
  1050. .site-header:after:after,
  1051. .site-content:before:after,
  1052. .site-content:after:after,
  1053. .site-footer:before:after,
  1054. .site-footer:after:after {
  1055. clear: both;
  1056. }
  1057. .clear:after,
  1058. .entry-content:after,
  1059. .comment-content:after,
  1060. .site-header:after,
  1061. .site-content:after,
  1062. .site-footer:after {
  1063. clear: both;
  1064. }
  1065. /*--------------------------------------------------------------
  1066. 9.0 Widgets
  1067. --------------------------------------------------------------*/
  1068. /* Make sure select elements fit in widgets. */
  1069. .widget select {
  1070. font-size: 16px;
  1071. font-size: 1.6rem;
  1072. max-width: 100%;
  1073. }
  1074. /* Form elements should span the full width. */
  1075. .widget input {
  1076. width: 100%;
  1077. }
  1078. /* Calendar widget */
  1079. .widget_calendar {
  1080. max-width: 500px;
  1081. }
  1082. .widget_calendar #next {
  1083. text-align: right;
  1084. }
  1085. /* Search widget */
  1086. .widget_search .search-form label {
  1087. float: none;
  1088. width: 100%;
  1089. }
  1090. .widget_search .search-submit {
  1091. display: none;
  1092. }
  1093. /* Facebook widget */
  1094. .widget_facebook_likebox iframe {
  1095. margin: 0;
  1096. }
  1097. /* Video widget */
  1098. .widget_media_video iframe {
  1099. margin: 0;
  1100. }
  1101. /* Follow Blog widget */
  1102. .sidebar-primary #subscribe-blog input[type="submit"] {
  1103. color: #fff;
  1104. }
  1105. #subscribe-blog input[type="submit"]:focus,
  1106. #subscribe-blog input[type="submit"]:hover {
  1107. color: #159ae7;
  1108. }
  1109. /* Remove exatra spacing below lists and other elements. */
  1110. .widget > ol,
  1111. .widget > ul,
  1112. .widget :last-child {
  1113. margin-bottom: 0;
  1114. }
  1115. /*--------------------------------------------------------------
  1116. 10.0 Content
  1117. --------------------------------------------------------------*/
  1118. /*--------------------------------------------------------------
  1119. 10.0 Basic structure
  1120. --------------------------------------------------------------*/
  1121. #page {
  1122. background: #fff;
  1123. margin-left: auto;
  1124. margin-right: auto;
  1125. max-width: 1140px;
  1126. }
  1127. #page:after {
  1128. clear: both;
  1129. content: " ";
  1130. display: block;
  1131. }
  1132. #main:before,
  1133. #main:after {
  1134. content: "";
  1135. display: table;
  1136. }
  1137. #main:after {
  1138. clear: both;
  1139. }
  1140. .custom-logo {
  1141. max-height: 125px;
  1142. width: auto;
  1143. }
  1144. .site-title,
  1145. .site-description {
  1146. font-family: "PT Serif", Georgia, "Times New Roman", serif;
  1147. font-size: 36px;
  1148. font-size: 3.6rem;
  1149. font-weight: 400;
  1150. line-height: 1;
  1151. margin: 0 0 1.51515%;
  1152. padding: 0;
  1153. }
  1154. .site-title a,
  1155. .site-description a {
  1156. color: #362e77;
  1157. text-decoration: none;
  1158. }
  1159. .site-title a:hover,
  1160. .site-description a:hover {
  1161. color: #117bb8;
  1162. }
  1163. .site-description {
  1164. font-size: 21px;
  1165. font-size: 2.1rem;
  1166. font-style: italic;
  1167. }
  1168. .site-footer {
  1169. clear: both;
  1170. margin: 48px 0 0;
  1171. text-align: center;
  1172. }
  1173. .site-footer .widget-area {
  1174. border-top: 4px solid #ccc;
  1175. text-align: center;
  1176. width: 100%;
  1177. }
  1178. .site-footer .widget-area #footer-sidebar {
  1179. clear: both;
  1180. line-height: 1.5;
  1181. margin: 0 auto;
  1182. max-width: 800px;
  1183. }
  1184. .site-footer .widget-area #footer-sidebar:before,
  1185. .site-footer .widget-area #footer-sidebar:after {
  1186. content: "";
  1187. display: table;
  1188. }
  1189. .site-footer .widget-area #footer-sidebar:after {
  1190. clear: both;
  1191. }
  1192. .site-footer .widget-area li {
  1193. display: inline-block;
  1194. padding-right: 5px;
  1195. /* Hierarchical lists look pretty funky in a sidebar footer with center alignment.
  1196. * Let's just display them inline for the time being.
  1197. */
  1198. }
  1199. .site-footer .widget-area .widget_text li {
  1200. display: list-item;
  1201. }
  1202. .site-footer .widget-area li:after {
  1203. content: "|";
  1204. display: inline;
  1205. padding-left: 10px;
  1206. }
  1207. .site-footer .widget-area .widget_text li:after,
  1208. .site-footer .widget-area .jetpack_widget_social_icons li:after,
  1209. .site-footer .widget-area .widget_wpcom_social_media_icons_widget li:after {
  1210. content: '';
  1211. display: none;
  1212. }
  1213. .site-footer .widget-area li:last-child:after {
  1214. display: none;
  1215. }
  1216. .site-footer .widget-area li ul,
  1217. .site-footer .widget-area li ol {
  1218. display: inline;
  1219. }
  1220. .site-footer .widget-area .widget_text li ul,
  1221. .site-footer .widget-area .widget_text li ol {
  1222. display: block;
  1223. }
  1224. .site-footer .widget-area .widget {
  1225. border-top: none;
  1226. clear: left;
  1227. margin: 0;
  1228. padding: 0.75758% 0;
  1229. }
  1230. .site-footer .widget-area input {
  1231. width: auto;
  1232. }
  1233. .site-footer .widget-area input.search-field {
  1234. margin: 0 auto;
  1235. }
  1236. .site-footer .site-info {
  1237. border-top: 2px solid #ccc;
  1238. font-size: 16px;
  1239. font-size: 1.6rem;
  1240. padding: 0.75758% 0 0;
  1241. }
  1242. /*--------------------------------------------------------------
  1243. 10.1 Posts and pages
  1244. --------------------------------------------------------------*/
  1245. /* Sticky posts */
  1246. .sticky .entry-meta::before {
  1247. content: "\f408";
  1248. display: inline;
  1249. margin: 0;
  1250. vertical-align: bottom;
  1251. }
  1252. /* Entry thumbnail */
  1253. figure.entry-thumbnail {
  1254. margin: 0 0 1.5em;
  1255. }
  1256. /* Hide duplicate image thumbnail with Jetpack Lazy Loading */
  1257. .entry-thumbnail > img.jetpack-lazy-image ~ img.attachment-post-thumbnail {
  1258. display: none;
  1259. }
  1260. /* Entry/post headers */
  1261. .entry-format::before {
  1262. background: #e6e6e6;
  1263. border: 2px solid #fff;
  1264. border-radius: 50%;
  1265. color: #fff;
  1266. display: inline-block;
  1267. font-size: 24px;
  1268. height: 38px;
  1269. padding: 5px;
  1270. position: absolute;
  1271. right: 0;
  1272. top: 19%;
  1273. width: 38px;
  1274. }
  1275. .entry-format:hover::before {
  1276. background: #ccc;
  1277. }
  1278. .page-header {
  1279. margin: 0 0 3.0303% 0;
  1280. }
  1281. body:not(.single) .byline,
  1282. .updated:not(.published) {
  1283. display: none;
  1284. }
  1285. .page-title,
  1286. .entry-title {
  1287. margin-top: 0;
  1288. position: relative;
  1289. }
  1290. .edit-link,
  1291. .comment-reply-link {
  1292. background: #ccc;
  1293. }
  1294. .edit-link:hover,
  1295. .comment-reply-link:hover {
  1296. background: silver;
  1297. }
  1298. /* Entry/page content */
  1299. .page-content,
  1300. .entry-content,
  1301. .entry-summary {
  1302. margin: 1.5em 0 0;
  1303. }
  1304. .page-links {
  1305. clear: both;
  1306. font-family: "Open Sans", Arial, sans-serif;
  1307. font-size: 14px;
  1308. font-size: 1.4rem;
  1309. font-weight: 600;
  1310. margin: 0 0 1.5em;
  1311. }
  1312. .page-links a {
  1313. font-weight: 400;
  1314. padding: 0 2px;
  1315. text-decoration: none;
  1316. }
  1317. .page-description {
  1318. margin: 0 0 48px 0;
  1319. padding: 12px 24px;
  1320. }
  1321. .page-description p {
  1322. margin-bottom: 0;
  1323. margin-top: 24px;
  1324. }
  1325. /* Entry/page footers */
  1326. .entry-footer:before,
  1327. .entry-footer:after {
  1328. content: "";
  1329. display: table;
  1330. }
  1331. .entry-footer:after {
  1332. clear: both;
  1333. }
  1334. .entry-footer .post-categories,
  1335. .entry-footer .post-tags {
  1336. float: left;
  1337. font-size: 0;
  1338. list-style: none;
  1339. margin: 0.2rem 0 0;
  1340. padding: 0;
  1341. }
  1342. .entry-meta .posted-on,
  1343. .entry-meta .byline,
  1344. .entry-footer .post-categories li,
  1345. .entry-footer .post-tags li {
  1346. display: inline-block;
  1347. margin: 0 0.4rem 0.4rem 0;
  1348. }
  1349. .archive article .entry-meta .posted-on,
  1350. .blog article .entry-meta .posted-on,
  1351. .search article .entry-meta .posted-on{
  1352. display: inherit;
  1353. }
  1354. .entry-footer a[rel="tag"],
  1355. .entry-footer a[rel="category tag"] {
  1356. margin-bottom: 0;
  1357. }
  1358. .entry-footer a[rel="tag"]::before,
  1359. .entry-footer a[rel="category tag"]::before {
  1360. margin: 0 0.2rem 0 -0.2rem;
  1361. vertical-align: -0.2rem;
  1362. }
  1363. .entry-footer a[rel="tag"]:hover,
  1364. .entry-footer a[rel="category tag"]:hover {
  1365. background-color: #5a5a5a;
  1366. }
  1367. .entry-footer a[rel="category tag"] {
  1368. background: #362e77;
  1369. }
  1370. .entry-footer a[rel="category tag"]::before {
  1371. content: "\f301";
  1372. }
  1373. .entry-footer a[rel="tag"]::before {
  1374. content: "\f302";
  1375. }
  1376. .entry-footer .apostrophe-2-tags::after {
  1377. clear: both;
  1378. content: "";
  1379. display: block;
  1380. }
  1381. /* Author panel */
  1382. .single .entry-author {
  1383. border-bottom: 4px solid #ddd;
  1384. clear: left;
  1385. margin: 125px 0 3.0303%;
  1386. padding: 3.0303% 0;
  1387. text-align: center;
  1388. }
  1389. .single .entry-author:before {
  1390. clear: both;
  1391. display: block;
  1392. width: 100%;
  1393. }
  1394. .single .entry-author .author-title {
  1395. font-size: 28px;
  1396. font-size: 2.8rem;
  1397. font-weight: 300;
  1398. }
  1399. .single .entry-author .author-avatar {
  1400. border-top: 1px solid #ddd;
  1401. }
  1402. .single .entry-author .avatar {
  1403. border-radius: 50%;
  1404. height: 125px;
  1405. margin-top: -62.5px;
  1406. width: 125px;
  1407. }
  1408. .single .entry-author .author-bio {
  1409. clear: left;
  1410. font-size: 17px;
  1411. font-size: 1.7rem;
  1412. font-style: italic;
  1413. text-align: left;
  1414. }
  1415. .single .entry-author h3 a {
  1416. color: #a6a6a6;
  1417. }
  1418. .single .entry-author h3 a:hover {
  1419. color: #737373;
  1420. }
  1421. /* Archive pages */
  1422. /* Posts without featured images will show as a grey box in the panel.
  1423. * This hack sets the box's height to be equal to its width.
  1424. * http://www.mademyday.de/css-height-equals-width-with-pure-css.html
  1425. */
  1426. .archive .entry-thumbnail,
  1427. .blog .entry-thumbnail,
  1428. .search .entry-thumbnail {
  1429. display: block;
  1430. line-height: 0;
  1431. /* This eradicates any unwanted bottom padding. */
  1432. }
  1433. .archive .entry-thumbnail img,
  1434. .blog .entry-thumbnail img,
  1435. .search .entry-thumbnail img {
  1436. transition: all 0.125s linear;
  1437. /* Fade out quickly */
  1438. }
  1439. .archive .entry-meta,
  1440. .blog .entry-meta,
  1441. .search .entry-meta {
  1442. display: table;
  1443. position: relative;
  1444. }
  1445. .single.date-hidden .entry-meta {
  1446. padding: 0;
  1447. }
  1448. .archive .entry-title,
  1449. .blog .entry-title,
  1450. .search .entry-title {
  1451. font-family: "PT Serif", Georgia, "Times New Roman", serif;
  1452. font-size: 21px;
  1453. font-size: 2.1rem;
  1454. font-weight: normal;
  1455. line-height: 1.2;
  1456. margin: 0;
  1457. padding: 0;
  1458. }
  1459. .archive .entry-title a,
  1460. .blog .entry-title a,
  1461. .search .entry-title a {
  1462. color: #117bb8;
  1463. }
  1464. .blog .featured-content .entry-title a,
  1465. .blog .sticky .entry-title a {
  1466. color: #362e77;
  1467. }
  1468. .archive article:hover .entry-thumbnail img,
  1469. .blog article:hover .entry-thumbnail img,
  1470. .search article:hover .entry-thumbnail img {
  1471. /* IE6-9 */
  1472. -webkit-filter: grayscale(100%);
  1473. filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  1474. /* Firefox 10+, Firefox on Android */
  1475. filter: gray;
  1476. /* Chrome 19+, Safari 6+, Safari 6+ iOS */
  1477. filter: grayscale(100%);
  1478. transition: all 0.5s linear;
  1479. /* Fade in slowly */
  1480. }
  1481. .archive article:hover .entry-title a,
  1482. .blog article:hover .entry-title a,
  1483. .search article:hover .entry-title a {
  1484. color: #a6a6a6;
  1485. }
  1486. /* Articles without featured images */
  1487. .archive .apostrophe-2-nothumb,
  1488. .blog .apostrophe-2-nothumb,
  1489. .search .apostrophe-2-nothumb {
  1490. background: #ccc;
  1491. position: relative;
  1492. }
  1493. .archive .apostrophe-2-nothumb:before,
  1494. .blog .apostrophe-2-nothumb:before,
  1495. .search .apostrophe-2-nothumb:before {
  1496. content: "";
  1497. display: block;
  1498. padding-top: 100%;
  1499. }
  1500. .archive .apostrophe-2-nothumb span,
  1501. .blog .apostrophe-2-nothumb span,
  1502. .search .apostrophe-2-nothumb span {
  1503. bottom: 0;
  1504. left: 0;
  1505. position: absolute;
  1506. right: 0;
  1507. text-align: center;
  1508. top: 0;
  1509. }
  1510. .archive .apostrophe-2-nothumb span:before,
  1511. .blog .apostrophe-2-nothumb span:before,
  1512. .search .apostrophe-2-nothumb span:before {
  1513. color: #fff;
  1514. content: "\f100";
  1515. }
  1516. /* Featured content */
  1517. .archive .apostrophe-2-featured .entry-title,
  1518. .blog .apostrophe-2-featured .entry-title,
  1519. .search .apostrophe-2-featured .entry-title {
  1520. font-size: 3.6rem;
  1521. }
  1522. .archive .apostrophe-2-featured .apostrophe-2-nothumb:before,
  1523. .blog .apostrophe-2-featured .apostrophe-2-nothumb:before,
  1524. .search .apostrophe-2-featured .apostrophe-2-nothumb:before {
  1525. padding-top: 48.45%;
  1526. }
  1527. /* Inline controls for logged-in users on archive pages */
  1528. article {
  1529. position: relative;
  1530. }
  1531. .apostrophe-2-inline-controls {
  1532. background: #eee;
  1533. display: none;
  1534. line-height: 1;
  1535. position: absolute;
  1536. right: 10px;
  1537. top: 4px;
  1538. }
  1539. .apostrophe-2-inline-controls a {
  1540. color: #333;
  1541. display: inline-block;
  1542. font-size: 16px;
  1543. font-size: 1.6rem;
  1544. height: auto;
  1545. padding: 6px;
  1546. text-decoration: none;
  1547. width: auto;
  1548. }
  1549. article:hover .apostrophe-2-inline-controls {
  1550. display: block;
  1551. }
  1552. .apostrophe-2-featured .apostrophe-2-featured-toggle {
  1553. color: #eac31c;
  1554. }
  1555. .apostrophe-2-featured .apostrophe-2-featured-toggle:hover {
  1556. color: white !important;
  1557. }
  1558. .apostrophe-2-featured-toggle:hover {
  1559. color: #eac31c !important;
  1560. }
  1561. /* Password-protected posts */
  1562. .post-password-form input[type="submit"] {
  1563. margin-top: 12px;
  1564. }
  1565. /* Search form */
  1566. .search-form {
  1567. margin-bottom: 3.0303%;
  1568. }
  1569. .search-form:before,
  1570. .search-form:after {
  1571. content: "";
  1572. display: table;
  1573. }
  1574. .search-form:after {
  1575. clear: both;
  1576. }
  1577. .search-form input[type="submit"] {
  1578. width: 100%;
  1579. }
  1580. /*--------------------------------------------------------------
  1581. 10.2 Asides
  1582. --------------------------------------------------------------*/
  1583. /* General widget styles */
  1584. .widgettitle,
  1585. .widget-title,
  1586. .widget-title label {
  1587. color: #a6a6a6;
  1588. font-size: 18px;
  1589. font-size: 1.8rem;
  1590. line-height: 24px;
  1591. margin-bottom: 24px;
  1592. margin-top: 0;
  1593. padding-top: 0;
  1594. }
  1595. .widget-title label {
  1596. text-transform: none;
  1597. }
  1598. .widget {
  1599. border-top: 4px solid #d9d9d9;
  1600. margin-bottom: 7.57576%;
  1601. padding: 8.33333% 8.33333%;
  1602. word-wrap: break-word;
  1603. }
  1604. .widget li > ul,
  1605. .widget li > ol {
  1606. margin-left: 0.5em;
  1607. padding-left: 1em;
  1608. }
  1609. /* Specific widget areas */
  1610. .widget-area .sidebar-primary aside {
  1611. background: #117bb8;
  1612. border-top-color: #362e77;
  1613. color: #fff;
  1614. }
  1615. .widget-area .sidebar-primary aside .widgettitle,
  1616. .widget-area .sidebar-primary aside .widget-title,
  1617. .widget-area .sidebar-primary aside .widget-title label {
  1618. color: #fff;
  1619. }
  1620. .widget-area .sidebar-primary aside a,
  1621. .widget-area .sidebar-primary aside cite {
  1622. color: #ceeafa;
  1623. }
  1624. .widget-area .sidebar-primary aside ul {
  1625. font-size: 16px;
  1626. font-size: 1.6rem;
  1627. line-height: 1.2;
  1628. padding-left: 20px;
  1629. }
  1630. .widget-area .sidebar-primary aside.widget_text ul {
  1631. line-height: inherit;
  1632. }
  1633. .widget-area .sidebar-primary aside.jetpack_widget_social_icons ul {
  1634. padding-left: 0;
  1635. }
  1636. .widget-area .sidebar-primary aside.jetpack_widget_social_icons ul a:hover {
  1637. color: #fff;
  1638. }
  1639. .widget-area .sidebar-primary aside:last-child p:last-child {
  1640. margin-bottom: 0;
  1641. }
  1642. .widget-area .sidebar-secondary aside {
  1643. background: #f8f8f8;
  1644. }
  1645. .widget-area .sidebar-secondary,
  1646. .widget-area .sidebar-tertiary {
  1647. font-size: 16px;
  1648. font-size: 1.6rem;
  1649. line-height: 1.5;
  1650. }
  1651. .widget-area .sidebar-tertiary .widget {
  1652. padding-left: 0;
  1653. padding-right: 0;
  1654. }
  1655. /* Adjust 404 page widgets a bit */
  1656. .error404 .page-content .widget {
  1657. font-size: 16px;
  1658. font-size: 1.6rem;
  1659. line-height: 1.2;
  1660. padding-left: 0;
  1661. padding-right: 0;
  1662. }
  1663. /*--------------------------------------------------------------
  1664. 10.3 Comments
  1665. --------------------------------------------------------------*/
  1666. .comments-title,
  1667. #reply-title {
  1668. margin: 3.0303% 0 0;
  1669. }
  1670. .comment-list {
  1671. clear: both;
  1672. list-style: none;
  1673. padding-top: 2em;
  1674. }
  1675. .comment-list ul.children {
  1676. list-style: none;
  1677. margin-left: 20px;
  1678. }
  1679. .comment-meta {
  1680. font-family: "Open Sans", Arial, sans-serif;
  1681. padding: 0.25em;
  1682. }
  1683. .comment-meta .comment-author .avatar {
  1684. border-radius: 50%;
  1685. float: left;
  1686. height: 100px;
  1687. margin: 0 0.5em 0 0;
  1688. width: 100px;
  1689. }
  1690. .comment-meta .comment-author b {
  1691. color: #999;
  1692. display: inline-block;
  1693. font-size: 28px;
  1694. font-size: 2.8rem;
  1695. font-weight: 300;
  1696. line-height: 1.2;
  1697. max-width: calc(100% - 100px - 0.5em);
  1698. padding-top: 0.25em;
  1699. }
  1700. .comment-meta .comment-author b a {
  1701. color: #999;
  1702. text-decoration: none;
  1703. }
  1704. .comment-meta .comment-author .says {
  1705. display: none;
  1706. }
  1707. .comment-meta .comment-metadata {
  1708. font-size: 14px;
  1709. font-size: 1.4rem;
  1710. font-weight: 600;
  1711. letter-spacing: 1px;
  1712. margin-top: 0;
  1713. text-transform: uppercase;
  1714. }
  1715. .comment-meta .comment-metadata > a {
  1716. color: #737373;
  1717. text-decoration: none;
  1718. }
  1719. .comment-content {
  1720. border-bottom: 1px solid #ccc;
  1721. }
  1722. .comment-content a {
  1723. word-wrap: break-word;
  1724. }
  1725. .reply {
  1726. margin-top: -1em;
  1727. text-align: center;
  1728. }
  1729. .comment-reply-link:hover {
  1730. color: #fff;
  1731. }
  1732. .bypostauthor .comment-meta {
  1733. background: rgba(58, 58, 58, 0.03);
  1734. }
  1735. #reply-title {
  1736. margin-top: 2em;
  1737. }
  1738. .form-allowed-tags {
  1739. background: #efefef;
  1740. border-radius: 1rem;
  1741. font-size: 16px;
  1742. font-size: 1.6rem;
  1743. padding: 1.5rem;
  1744. }
  1745. #comment-nav-above {
  1746. margin: 1.51515% 0 0;
  1747. }
  1748. #comment-nav-below {
  1749. margin: 0 0 1.51515%;
  1750. }
  1751. #respond label {
  1752. letter-spacing: 0;
  1753. }
  1754. /*--------------------------------------------------------------
  1755. 11.0 Infinite scroll
  1756. --------------------------------------------------------------*/
  1757. /* Globally hidden elements when Infinite Scroll is supported and in use. */
  1758. .infinite-scroll .posts-navigation,
  1759. .infinite-scroll.neverending .site-footer {
  1760. display: none;
  1761. }
  1762. /* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
  1763. .infinity-end.neverending .site-footer {
  1764. display: block;
  1765. }
  1766. /* Click-to-scroll button */
  1767. #infinite-handle {
  1768. clear: both;
  1769. text-align: center;
  1770. }
  1771. #infinite-handle span {
  1772. background: #333;
  1773. padding: 10px 20px;
  1774. }
  1775. #infinite-handle span:hover {
  1776. background: silver;
  1777. }
  1778. /* Loading icon */
  1779. .infinite-loader {
  1780. clear: both;
  1781. text-align: center;
  1782. margin: 10px 0 18px;
  1783. }
  1784. .infinite-loader .spinner {
  1785. left: 50% !important; /* ..because the Jetpack CSS is inline */
  1786. }
  1787. /*--------------------------------------------------------------
  1788. # Jetpack Contact Forms
  1789. --------------------------------------------------------------*/
  1790. body .contact-form input[type="radio"],
  1791. body .contact-form input[type="checkbox"] {
  1792. margin-bottom: 6px;
  1793. margin-right: .3em;
  1794. vertical-align: middle;
  1795. }
  1796. body .contact-form label.checkbox,
  1797. body .contact-form label.checkbox-multiple,
  1798. body .contact-form label.radio {
  1799. font-weight: normal;
  1800. margin-bottom: 4px;
  1801. letter-spacing: 0px;
  1802. text-transform: none;
  1803. color: inherit;
  1804. }
  1805. body .contact-form label.checkbox,
  1806. body .contact-form > div {
  1807. margin-bottom: 16px;
  1808. }
  1809. body .contact-form textarea,
  1810. body .contact-form input[type='text'],
  1811. body .contact-form input[type='email'],
  1812. body .contact-form input[type='url'],
  1813. body .contact-form select {
  1814. margin-bottom: 8px;
  1815. }
  1816. /*--------------------------------------------------------------
  1817. 12.0 Media
  1818. --------------------------------------------------------------*/
  1819. .page-content .wp-smiley,
  1820. .entry-content .wp-smiley,
  1821. .comment-content .wp-smiley {
  1822. border: none;
  1823. margin-bottom: 0;
  1824. margin-top: 0;
  1825. padding: 0;
  1826. }
  1827. img.size-full,
  1828. img.size-large {
  1829. display: block;
  1830. margin-bottom: 36px;
  1831. margin-top: 36px;
  1832. }
  1833. img.alignnone,
  1834. .wp-caption.alignnone img:not(.wp-smiley) {
  1835. display: block;
  1836. }
  1837. img.alignright,
  1838. img.alignleft,
  1839. .wp-caption.alignleft img,
  1840. .wp-caption.alignright img {
  1841. margin-top: 0;
  1842. }
  1843. /* Make sure embeds and iframes fit their containers. */
  1844. embed,
  1845. iframe,
  1846. object {
  1847. margin-bottom: 24px;
  1848. margin-top: 24px;
  1849. max-width: 100%;
  1850. }
  1851. /* Remove margins from sharing buttons using iframes. */
  1852. .sd-sharing-enabled iframe {
  1853. margin: 0;
  1854. }
  1855. /*--------------------------------------------------------------
  1856. 12.1 Captions
  1857. --------------------------------------------------------------*/
  1858. .wp-caption {
  1859. max-width: 100%;
  1860. }
  1861. .wp-caption img[class*="wp-image-"] {
  1862. display: block;
  1863. margin-left: auto;
  1864. margin-right: auto;
  1865. }
  1866. .wp-caption img.size-full,
  1867. .wp-caption img.size-large {
  1868. clear: both;
  1869. margin-bottom: 0;
  1870. }
  1871. .wp-caption-text {
  1872. display: block;
  1873. font-style: italic;
  1874. line-height: 1.2;
  1875. margin-bottom: 0.5em;
  1876. margin-top: 0.5em;
  1877. text-align: center;
  1878. }
  1879. /*--------------------------------------------------------------
  1880. 12.2 Galleries
  1881. --------------------------------------------------------------*/
  1882. .gallery {
  1883. margin-bottom: 1.5em;
  1884. margin-left: auto;
  1885. margin-right: auto;
  1886. max-width: 1140px;
  1887. }
  1888. .gallery:after {
  1889. clear: both;
  1890. content: " ";
  1891. display: block;
  1892. }
  1893. .gallery-item {
  1894. margin: 0;
  1895. padding-bottom: 0.5em;
  1896. text-align: center;
  1897. }
  1898. .gallery-item a {
  1899. display: block;
  1900. line-height: 0;
  1901. }
  1902. .gallery-item a::before,
  1903. .gallery-item a::after {
  1904. display: block;
  1905. }
  1906. .gallery-item .wp-caption-text a {
  1907. line-height: 1.2;
  1908. }
  1909. .gallery-columns-2 {
  1910. margin-left: -0.25em;
  1911. margin-right: -0.25em;
  1912. }
  1913. .gallery-columns-2 .gallery-item {
  1914. -moz-box-sizing: border-box;
  1915. -webkit-box-sizing: border-box;
  1916. box-sizing: border-box;
  1917. float: left;
  1918. padding-left: 0.25em;
  1919. padding-right: 0.25em;
  1920. width: 50%;
  1921. }
  1922. .gallery-columns-2 .gallery-item:nth-child(2n + 1) {
  1923. clear: both;
  1924. margin-left: 0;
  1925. margin-right: -100%;
  1926. }
  1927. .gallery-columns-2 .gallery-item:nth-child(2n + 2) {
  1928. clear: none;
  1929. margin-left: 50%;
  1930. margin-right: -100%;
  1931. }
  1932. .gallery-columns-3 {
  1933. margin-left: -0.25em;
  1934. margin-right: -0.25em;
  1935. }
  1936. .gallery-columns-3 .gallery-item {
  1937. -moz-box-sizing: border-box;
  1938. -webkit-box-sizing: border-box;
  1939. box-sizing: border-box;
  1940. float: left;
  1941. padding-left: 0.25em;
  1942. padding-right: 0.25em;
  1943. width: 33.33333%;
  1944. }
  1945. .gallery-columns-3 .gallery-item:nth-child(3n + 1) {
  1946. clear: both;
  1947. margin-left: 0;
  1948. margin-right: -100%;
  1949. }
  1950. .gallery-columns-3 .gallery-item:nth-child(3n + 2) {
  1951. clear: none;
  1952. margin-left: 33.33333%;
  1953. margin-right: -100%;
  1954. }
  1955. .gallery-columns-3 .gallery-item:nth-child(3n + 3) {
  1956. clear: none;
  1957. margin-left: 66.66667%;
  1958. margin-right: -100%;
  1959. }
  1960. .gallery-columns-4 {
  1961. margin-left: -0.25em;
  1962. margin-right: -0.25em;
  1963. }
  1964. .gallery-columns-4 .gallery-item {
  1965. -moz-box-sizing: border-box;
  1966. -webkit-box-sizing: border-box;
  1967. box-sizing: border-box;
  1968. float: left;
  1969. padding-left: 0.25em;
  1970. padding-right: 0.25em;
  1971. width: 25%;
  1972. }
  1973. .gallery-columns-4 .gallery-item:nth-child(4n + 1) {
  1974. clear: both;
  1975. margin-left: 0;
  1976. margin-right: -100%;
  1977. }
  1978. .gallery-columns-4 .gallery-item:nth-child(4n + 2) {
  1979. clear: none;
  1980. margin-left: 25%;
  1981. margin-right: -100%;
  1982. }
  1983. .gallery-columns-4 .gallery-item:nth-child(4n + 3) {
  1984. clear: none;
  1985. margin-left: 50%;
  1986. margin-right: -100%;
  1987. }
  1988. .gallery-columns-4 .gallery-item:nth-child(4n + 4) {
  1989. clear: none;
  1990. margin-left: 75%;
  1991. margin-right: -100%;
  1992. }
  1993. .gallery-columns-5 {
  1994. margin-left: -0.25em;
  1995. margin-right: -0.25em;
  1996. }
  1997. .gallery-columns-5 .gallery-item {
  1998. -moz-box-sizing: border-box;
  1999. -webkit-box-sizing: border-box;
  2000. box-sizing: border-box;
  2001. float: left;
  2002. padding-left: 0.25em;
  2003. padding-right: 0.25em;
  2004. width: 20%;
  2005. }
  2006. .gallery-columns-5 .gallery-item:nth-child(5n + 1) {
  2007. clear: both;
  2008. margin-left: 0;
  2009. margin-right: -100%;
  2010. }
  2011. .gallery-columns-5 .gallery-item:nth-child(5n + 2) {
  2012. clear: none;
  2013. margin-left: 20%;
  2014. margin-right: -100%;
  2015. }
  2016. .gallery-columns-5 .gallery-item:nth-child(5n + 3) {
  2017. clear: none;
  2018. margin-left: 40%;
  2019. margin-right: -100%;
  2020. }
  2021. .gallery-columns-5 .gallery-item:nth-child(5n + 4) {
  2022. clear: none;
  2023. margin-left: 60%;
  2024. margin-right: -100%;
  2025. }
  2026. .gallery-columns-5 .gallery-item:nth-child(5n + 5) {
  2027. clear: none;
  2028. margin-left: 80%;
  2029. margin-right: -100%;
  2030. }
  2031. .gallery-columns-6 {
  2032. margin-left: -0.25em;
  2033. margin-right: -0.25em;
  2034. }
  2035. .gallery-columns-6 .gallery-item {
  2036. -moz-box-sizing: border-box;
  2037. -webkit-box-sizing: border-box;
  2038. box-sizing: border-box;
  2039. float: left;
  2040. padding-left: 0.25em;
  2041. padding-right: 0.25em;
  2042. width: 16.66667%;
  2043. }
  2044. .gallery-columns-6 .gallery-item:nth-child(6n + 1) {
  2045. clear: both;
  2046. margin-left: 0;
  2047. margin-right: -100%;
  2048. }
  2049. .gallery-columns-6 .gallery-item:nth-child(6n + 2) {
  2050. clear: none;
  2051. margin-left: 16.66667%;
  2052. margin-right: -100%;
  2053. }
  2054. .gallery-columns-6 .gallery-item:nth-child(6n + 3) {
  2055. clear: none;
  2056. margin-left: 33.33333%;
  2057. margin-right: -100%;
  2058. }
  2059. .gallery-columns-6 .gallery-item:nth-child(6n + 4) {
  2060. clear: none;
  2061. margin-left: 50%;
  2062. margin-right: -100%;
  2063. }
  2064. .gallery-columns-6 .gallery-item:nth-child(6n + 5) {
  2065. clear: none;
  2066. margin-left: 66.66667%;
  2067. margin-right: -100%;
  2068. }
  2069. .gallery-columns-6 .gallery-item:nth-child(6n + 6) {
  2070. clear: none;
  2071. margin-left: 83.33333%;
  2072. margin-right: -100%;
  2073. }
  2074. .gallery-columns-7 {
  2075. margin-left: -0.25em;
  2076. margin-right: -0.25em;
  2077. }
  2078. .gallery-columns-7 .gallery-item {
  2079. -moz-box-sizing: border-box;
  2080. -webkit-box-sizing: border-box;
  2081. box-sizing: border-box;
  2082. float: left;
  2083. padding-left: 0.25em;
  2084. padding-right: 0.25em;
  2085. width: 14.28571%;
  2086. }
  2087. .gallery-columns-7 .gallery-item:nth-child(7n + 1) {
  2088. clear: both;
  2089. margin-left: 0;
  2090. margin-right: -100%;
  2091. }
  2092. .gallery-columns-7 .gallery-item:nth-child(7n + 2) {
  2093. clear: none;
  2094. margin-left: 14.28571%;
  2095. margin-right: -100%;
  2096. }
  2097. .gallery-columns-7 .gallery-item:nth-child(7n + 3) {
  2098. clear: none;
  2099. margin-left: 28.57143%;
  2100. margin-right: -100%;
  2101. }
  2102. .gallery-columns-7 .gallery-item:nth-child(7n + 4) {
  2103. clear: none;
  2104. margin-left: 42.85714%;
  2105. margin-right: -100%;
  2106. }
  2107. .gallery-columns-7 .gallery-item:nth-child(7n + 5) {
  2108. clear: none;
  2109. margin-left: 57.14286%;
  2110. margin-right: -100%;
  2111. }
  2112. .gallery-columns-7 .gallery-item:nth-child(7n + 6) {
  2113. clear: none;
  2114. margin-left: 71.42857%;
  2115. margin-right: -100%;
  2116. }
  2117. .gallery-columns-7 .gallery-item:nth-child(7n + 7) {
  2118. clear: none;
  2119. margin-left: 85.71429%;
  2120. margin-right: -100%;
  2121. }
  2122. .gallery-columns-8 {
  2123. margin-left: -0.25em;
  2124. margin-right: -0.25em;
  2125. }
  2126. .gallery-columns-8 .gallery-item {
  2127. -moz-box-sizing: border-box;
  2128. -webkit-box-sizing: border-box;
  2129. box-sizing: border-box;
  2130. float: left;
  2131. padding-left: 0.25em;
  2132. padding-right: 0.25em;
  2133. width: 12.5%;
  2134. }
  2135. .gallery-columns-8 .gallery-item:nth-child(8n + 1) {
  2136. clear: both;
  2137. margin-left: 0;
  2138. margin-right: -100%;
  2139. }
  2140. .gallery-columns-8 .gallery-item:nth-child(8n + 2) {
  2141. clear: none;
  2142. margin-left: 12.5%;
  2143. margin-right: -100%;
  2144. }
  2145. .gallery-columns-8 .gallery-item:nth-child(8n + 3) {
  2146. clear: none;
  2147. margin-left: 25%;
  2148. margin-right: -100%;
  2149. }
  2150. .gallery-columns-8 .gallery-item:nth-child(8n + 4) {
  2151. clear: none;
  2152. margin-left: 37.5%;
  2153. margin-right: -100%;
  2154. }
  2155. .gallery-columns-8 .gallery-item:nth-child(8n + 5) {
  2156. clear: none;
  2157. margin-left: 50%;
  2158. margin-right: -100%;
  2159. }
  2160. .gallery-columns-8 .gallery-item:nth-child(8n + 6) {
  2161. clear: none;
  2162. margin-left: 62.5%;
  2163. margin-right: -100%;
  2164. }
  2165. .gallery-columns-8 .gallery-item:nth-child(8n + 7) {
  2166. clear: none;
  2167. margin-left: 75%;
  2168. margin-right: -100%;
  2169. }
  2170. .gallery-columns-8 .gallery-item:nth-child(8n + 8) {
  2171. clear: none;
  2172. margin-left: 87.5%;
  2173. margin-right: -100%;
  2174. }
  2175. .gallery-columns-9 {
  2176. margin-left: -0.25em;
  2177. margin-right: -0.25em;
  2178. }
  2179. .gallery-columns-9 .gallery-item {
  2180. -moz-box-sizing: border-box;
  2181. -webkit-box-sizing: border-box;
  2182. box-sizing: border-box;
  2183. float: left;
  2184. padding-left: 0.25em;
  2185. padding-right: 0.25em;
  2186. width: 11.11111%;
  2187. }
  2188. .gallery-columns-9 .gallery-item:nth-child(9n + 1) {
  2189. clear: both;
  2190. margin-left: 0;
  2191. margin-right: -100%;
  2192. }
  2193. .gallery-columns-9 .gallery-item:nth-child(9n + 2) {
  2194. clear: none;
  2195. margin-left: 11.11111%;
  2196. margin-right: -100%;
  2197. }
  2198. .gallery-columns-9 .gallery-item:nth-child(9n + 3) {
  2199. clear: none;
  2200. margin-left: 22.22222%;
  2201. margin-right: -100%;
  2202. }
  2203. .gallery-columns-9 .gallery-item:nth-child(9n + 4) {
  2204. clear: none;
  2205. margin-left: 33.33333%;
  2206. margin-right: -100%;
  2207. }
  2208. .gallery-columns-9 .gallery-item:nth-child(9n + 5) {
  2209. clear: none;
  2210. margin-left: 44.44444%;
  2211. margin-right: -100%;
  2212. }
  2213. .gallery-columns-9 .gallery-item:nth-child(9n + 6) {
  2214. clear: none;
  2215. margin-left: 55.55556%;
  2216. margin-right: -100%;
  2217. }
  2218. .gallery-columns-9 .gallery-item:nth-child(9n + 7) {
  2219. clear: none;
  2220. margin-left: 66.66667%;
  2221. margin-right: -100%;
  2222. }
  2223. .gallery-columns-9 .gallery-item:nth-child(9n + 8) {
  2224. clear: none;
  2225. margin-left: 77.77778%;
  2226. margin-right: -100%;
  2227. }
  2228. .gallery-columns-9 .gallery-item:nth-child(9n + 9) {
  2229. clear: none;
  2230. margin-left: 88.88889%;
  2231. margin-right: -100%;
  2232. }
  2233. .gallery-caption {
  2234. font-size: 16px;
  2235. font-size: 1.6rem;
  2236. }
  2237. .gallery-columns-7 .gallery-caption,
  2238. .gallery-columns-8 .gallery-caption,
  2239. .gallery-columns-9 .gallery-caption {
  2240. display: none;
  2241. }
  2242. /*--------------------------------------------------------------
  2243. 13.0 Media Queries
  2244. --------------------------------------------------------------*/
  2245. /*--------------------------------------------------------------
  2246. 13.1 Small screens, under 768px wide.
  2247. Primarily mobile devices and super-small tablets.
  2248. --------------------------------------------------------------*/
  2249. @media (max-width: 767px) {
  2250. /* Page structure */
  2251. #page {
  2252. min-width: 280px;
  2253. padding: 3.0303%;
  2254. }
  2255. /* Center-align site branding and logo */
  2256. .site-branding {
  2257. text-align: center;
  2258. }
  2259. .site-logo {
  2260. margin: 30px auto 10px;
  2261. }
  2262. }
  2263. /* Small screen + portrait orientation = more space between title & description */
  2264. @media (max-width: 767px) and (orientation: portrait) {
  2265. .site-title,
  2266. .site-description {
  2267. margin-bottom: 6.06061%;
  2268. }
  2269. }
  2270. @media (max-width: 767px) {
  2271. /* Show menu toggle and hide menu by default */
  2272. .menu-toggle,
  2273. .main-navigation.toggled-on .nav-menu,
  2274. .main-navigation.toggled-on ul.toggled-on {
  2275. display: block;
  2276. }
  2277. .main-navigation ul,
  2278. .jetpack-social-navigation {
  2279. display: none;
  2280. }
  2281. /* Condensed mobile menu */
  2282. div.apostrophe-2-navigation ul,
  2283. ul.apostrophe-2-navigation {
  2284. display: none;
  2285. }
  2286. .main-navigation {
  2287. margin: 10px 0 20px;
  2288. position: relative;
  2289. }
  2290. .main-navigation .menu-toggle {
  2291. border-bottom: solid 1px;
  2292. border-top: solid 4px transparent;
  2293. cursor: pointer;
  2294. display: block;
  2295. height: 60px;
  2296. line-height: 52px;
  2297. margin: 0;
  2298. padding: 0;
  2299. }
  2300. .main-navigation .menu-toggle:before {
  2301. content: "\f419";
  2302. display: inline-block;
  2303. font-family: Genericons;
  2304. font-size: 16px;
  2305. font-weight: normal;
  2306. line-height: 52px;
  2307. padding-right: 10px;
  2308. vertical-align: top;
  2309. -webkit-font-smoothing: antialiased;
  2310. }
  2311. .main-navigation.toggled-on .current_page_item a,
  2312. .main-navigation.toggled-on .current-menu-item a,
  2313. .main-navigation.toggled-on .current-post-ancestor a,
  2314. .main-navigation.toggled-on .current-menu-ancestor a,
  2315. .main-navigation.toggled-on .current-menu-parent a,
  2316. .main-navigation.toggled-on .current-post-parent a {
  2317. border-top-color: transparent;
  2318. }
  2319. .main-navigation.toggled-on .apostrophe-2-navigation,
  2320. .main-navigation.toggled-on .apostrophe-2-navigation > ul {
  2321. border-bottom: solid 1px;
  2322. display: block;
  2323. }
  2324. .main-navigation.toggled-on .apostrophe-2-navigation li {
  2325. clear: left;
  2326. display: block;
  2327. float: none;
  2328. position: relative;
  2329. }
  2330. .main-navigation.toggled-on .apostrophe-2-navigation li a {
  2331. margin-top: 0;
  2332. padding: 10px 25px 15px;
  2333. }
  2334. .main-navigation.toggled-on .apostrophe-2-navigation .toggled-on:not(.dropdown-toggle) {
  2335. border-bottom: 1px solid;
  2336. border-top: 2px solid;
  2337. }
  2338. .main-navigation.toggled-on .apostrophe-2-navigation .toggled-on > .sub-menu {
  2339. display: block;
  2340. }
  2341. .main-navigation ul li.menu-item-has-children > a:after {
  2342. display: none;
  2343. }
  2344. .main-navigation.toggled-on .apostrophe-2-navigation li.menu-item-has-children a {
  2345. padding-right: 60px;
  2346. }
  2347. .jetpack-social-navigation ul {
  2348. position: absolute;
  2349. right: 0;
  2350. top: 0;
  2351. }
  2352. .jetpack-social-navigation ul li a {
  2353. line-height: 60px;
  2354. }
  2355. .apostrophe-2-navigation .dropdown-toggle {
  2356. display: block;
  2357. }
  2358. /* Display the social menu if the user requests it */
  2359. .show-mobile-social-menu .jetpack-social-navigation {
  2360. display: block;
  2361. position: absolute;
  2362. top: 0;
  2363. right: 0;
  2364. height: 50px;
  2365. width: 80%;
  2366. }
  2367. .show-mobile-social-menu .jetpack-social-navigation ul li a {
  2368. margin-right: 10px;
  2369. padding: 0.75rem 0 1.5rem;
  2370. line-height: 45px;
  2371. }
  2372. /* Use a slightly smaller font size for titles */
  2373. h1 {
  2374. font-size: 36px;
  2375. font-size: 3.6rem;
  2376. }
  2377. /* Arrange posts into grid structure on archive pages */
  2378. .archive .apostrophe-2-nothumb span:before,
  2379. .blog .apostrophe-2-nothumb span:before,
  2380. .search .apostrophe-2-nothumb span:before {
  2381. font-size: 64px;
  2382. font-size: 6.4rem;
  2383. margin-top: calc(50% - 32px);
  2384. }
  2385. .archive article,
  2386. .blog article,
  2387. .search article {
  2388. margin-bottom: 5.55556%;
  2389. }
  2390. .archive article:not(.apostrophe-2-featured):before,
  2391. .archive article:not(.apostrophe-2-featured):after,
  2392. .blog article:not(.apostrophe-2-featured):before,
  2393. .blog article:not(.apostrophe-2-featured):after,
  2394. .search article:not(.apostrophe-2-featured):before,
  2395. .search article:not(.apostrophe-2-featured):after {
  2396. content: "";
  2397. display: table;
  2398. }
  2399. .archive article:not(.apostrophe-2-featured):after,
  2400. .blog article:not(.apostrophe-2-featured):after,
  2401. .search article:not(.apostrophe-2-featured):after {
  2402. clear: both;
  2403. }
  2404. .archive article:not(.apostrophe-2-featured) .entry-thumbnail,
  2405. .blog article:not(.apostrophe-2-featured) .entry-thumbnail,
  2406. .search article:not(.apostrophe-2-featured) .entry-thumbnail {
  2407. -moz-box-sizing: border-box;
  2408. -webkit-box-sizing: border-box;
  2409. box-sizing: border-box;
  2410. float: left;
  2411. padding-left: 5.55556%;
  2412. padding-left: 0;
  2413. padding-right: 5.55556%;
  2414. padding-right: 0;
  2415. width: 33.33333%;
  2416. }
  2417. .archive article:not(.apostrophe-2-featured) .entry-header,
  2418. .blog article:not(.apostrophe-2-featured) .entry-header,
  2419. .search article:not(.apostrophe-2-featured) .entry-header {
  2420. -moz-box-sizing: border-box;
  2421. -webkit-box-sizing: border-box;
  2422. box-sizing: border-box;
  2423. float: right;
  2424. padding-left: 5.55556%;
  2425. padding-right: 5.55556%;
  2426. padding-right: 0;
  2427. width: 66.66667%;
  2428. }
  2429. .archive article:not(.apostrophe-2-featured) .entry-meta,
  2430. .blog article:not(.apostrophe-2-featured) .entry-meta,
  2431. .search article:not(.apostrophe-2-featured) .entry-meta {
  2432. margin-bottom: 5px;
  2433. }
  2434. .blog .apostrophe-2-featured .entry-meta {
  2435. margin-left: -5px;
  2436. margin-top: -33px;
  2437. margin-bottom: 10px;
  2438. }
  2439. .blog .apostrophe-2-featured .apostrophe-2-nothumb span:before {
  2440. margin-top: calc(25% - 32px);
  2441. }
  2442. /* Hide post status icons */
  2443. .entry-format::before {
  2444. display: none;
  2445. }
  2446. /* Hide extra navigation text on smaller screens */
  2447. .nav-previous .apostrophe-2-post-title,
  2448. .nav-next .apostrophe-2-post-title {
  2449. display: none;
  2450. }
  2451. /* Make sure sidebar clears properly */
  2452. #secondary {
  2453. clear: both;
  2454. }
  2455. }
  2456. /*--------------------------------------------------------------
  2457. 13.2 Slightly larger screens, between 768px and 1024px wide.
  2458. Primarily tablets and teensy desktops.
  2459. --------------------------------------------------------------*/
  2460. @media (min-width: 768px) {
  2461. #page {
  2462. padding: 3.0303%;
  2463. }
  2464. #masthead,
  2465. #colophon {
  2466. -moz-box-sizing: border-box;
  2467. -webkit-box-sizing: border-box;
  2468. box-sizing: border-box;
  2469. padding-left: 0.75758%;
  2470. padding-right: 0.75758%;
  2471. width: 100%;
  2472. }
  2473. #masthead:before,
  2474. #masthead:after,
  2475. #colophon:before,
  2476. #colophon:after {
  2477. content: "";
  2478. display: table;
  2479. }
  2480. #masthead:after,
  2481. #colophon:after {
  2482. clear: both;
  2483. }
  2484. /* Site logo */
  2485. .site-branding {
  2486. margin-bottom: 0;
  2487. }
  2488. .site-branding:before,
  2489. .site-branding:after {
  2490. content: "";
  2491. display: table;
  2492. }
  2493. .site-branding:after {
  2494. clear: both;
  2495. }
  2496. .custom-logo {
  2497. float: left;
  2498. margin-bottom: 1.51515%;
  2499. margin-right: 2.27273%;
  2500. }
  2501. .site-title,
  2502. .site-description,
  2503. .site-description {
  2504. clear: none;
  2505. }
  2506. .site-description {
  2507. padding-bottom: 1.51515%;
  2508. }
  2509. .custom-logo-link + .site-title,
  2510. .custom-logo-link + .site-description {
  2511. margin-top: 2.27273%;
  2512. }
  2513. /* Hide menu toggle */
  2514. .main-navigation .menu-toggle {
  2515. display: none;
  2516. }
  2517. /* Full-sized navigation bar; no need to be trendy */
  2518. .main-navigation {
  2519. margin: 0 0 3.0303%;
  2520. position: relative;
  2521. z-index: 100;
  2522. /* Sub-menus */
  2523. }
  2524. .main-navigation:before,
  2525. .main-navigation:after {
  2526. content: "";
  2527. display: table;
  2528. }
  2529. .main-navigation:after {
  2530. clear: both;
  2531. }
  2532. .main-navigation li {
  2533. float: left;
  2534. position: relative;
  2535. }
  2536. .main-navigation li :hover > a {
  2537. border-color: silver;
  2538. }
  2539. .main-navigation li a {
  2540. margin: -2px 3rem 0 0;
  2541. padding: 0.75rem 0 1.5rem;
  2542. }
  2543. .main-navigation ul ul {
  2544. background-color: #fff;
  2545. border-bottom: 4px solid #aaa;
  2546. border-top: 1px solid #eee;
  2547. box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  2548. float: left;
  2549. left: -999em;
  2550. min-width: 100%;
  2551. position: absolute;
  2552. top: 2em;
  2553. z-index: 99999;
  2554. }
  2555. .main-navigation ul ul ul {
  2556. left: -999em;
  2557. top: 0;
  2558. }
  2559. .main-navigation ul ul li {
  2560. float: none;
  2561. white-space: nowrap;
  2562. /* Show sub-sub menus */
  2563. }
  2564. .main-navigation ul ul li.menu-item-has-children > a:after {
  2565. -moz-transform: rotate(-90deg);
  2566. -ms-transform: rotate(-90deg);
  2567. -o-transform: rotate(-90deg);
  2568. -webkit-transform: rotate(-90deg);
  2569. transform: rotate(-90deg);
  2570. vertical-align: -4px;
  2571. }
  2572. .main-navigation ul ul li a {
  2573. border-top-width: 0;
  2574. margin: 0;
  2575. padding: 0.5em 1em;
  2576. }
  2577. .main-navigation ul ul li:hover > ul,
  2578. .main-navigation ul ul li.focus > ul {
  2579. left: 100%;
  2580. }
  2581. .main-navigation ul ul :hover > a {
  2582. background-color: #eee;
  2583. border-color: transparent;
  2584. }
  2585. .main-navigation li:hover > ul,
  2586. .main-navigation li.focus > ul {
  2587. left: auto;
  2588. }
  2589. .jetpack-social-navigation ul li a {
  2590. margin-left: 20px;
  2591. margin-right: 0;
  2592. }
  2593. /* Arrange posts into grid structure on archive pages */
  2594. .archive #posts-wrapper article,
  2595. .blog #posts-wrapper article,
  2596. .search #posts-wrapper article,
  2597. .blog article.apostrophe-2-featured:nth-child(4n+2),
  2598. .blog article.apostrophe-2-featured:nth-child(4n+3) {
  2599. -moz-box-sizing: border-box;
  2600. -webkit-box-sizing: border-box;
  2601. box-sizing: border-box;
  2602. float: left;
  2603. margin-bottom: 3.33333%;
  2604. padding-left: 1.11111%;
  2605. padding-right: 1.11111%;
  2606. width: 33.33333%;
  2607. }
  2608. .featured-content,
  2609. .featured-content article:nth-child(2n+3) {
  2610. clear: both;
  2611. overflow: hidden;
  2612. }
  2613. .archive article .entry-meta,
  2614. .blog article .entry-meta,
  2615. .search article .entry-meta {
  2616. margin: -33px 0 15px -5px;
  2617. }
  2618. .archive article.clear,
  2619. .blog article.clear,
  2620. .search article.clear {
  2621. clear: both;
  2622. }
  2623. .archive article .apostrophe-2-nothumb span:before,
  2624. .blog article .apostrophe-2-nothumb span:before,
  2625. .blog article.apostrophe-2-featured:nth-child(4n+3) .apostrophe-2-nothumb span:before,
  2626. .blog article.apostrophe-2-featured:nth-child(4n+2) .apostrophe-2-nothumb span:before,
  2627. .blog article .apostrophe-2-nothumb span:before,
  2628. .search article .apostrophe-2-nothumb span:before {
  2629. font-size: 128px;
  2630. font-size: 12.8rem;
  2631. margin-top: calc(50% - 64px);
  2632. }
  2633. .archive article.apostrophe-2-featured,
  2634. .blog article.apostrophe-2-featured,
  2635. .search article.apostrophe-2-featured {
  2636. -moz-box-sizing: border-box;
  2637. -webkit-box-sizing: border-box;
  2638. box-sizing: border-box;
  2639. float: left;
  2640. padding-left: 1.11111%;
  2641. padding-right: 1.11111%;
  2642. width: 66.66667%;
  2643. }
  2644. .archive article.apostrophe-2-featured .entry-header,
  2645. .blog article.apostrophe-2-featured .entry-header,
  2646. .search article.apostrophe-2-featured .entry-header {
  2647. display: inline-block;
  2648. margin-top: -1px;
  2649. /* Solves the 1px offset bug */
  2650. }
  2651. .archive article.apostrophe-2-featured .apostrophe-2-nothumb span:before,
  2652. .blog article.apostrophe-2-featured .apostrophe-2-nothumb span:before,
  2653. .search article.apostrophe-2-featured .apostrophe-2-nothumb span:before {
  2654. margin-top: calc(25% - 64px);
  2655. }
  2656. .blog .apostrophe-2-featured:nth-child(4n+2) .apostrophe-2-nothumb:before,
  2657. .blog .apostrophe-2-featured:nth-child(4n+3) .apostrophe-2-nothumb:before {
  2658. padding-top: 100%;
  2659. }
  2660. /* Use a two-column layout for the 404 page's widgets */
  2661. .error404 .page-content .apostrophe-2-widget-column:nth-of-type(odd) {
  2662. -moz-box-sizing: border-box;
  2663. -webkit-box-sizing: border-box;
  2664. box-sizing: border-box;
  2665. float: left;
  2666. padding-left: 1.11111%;
  2667. padding-left: 0;
  2668. padding-right: 1.11111%;
  2669. width: 46.66667%;
  2670. }
  2671. .error404 .page-content .apostrophe-2-widget-column:nth-of-type(even) {
  2672. -moz-box-sizing: border-box;
  2673. -webkit-box-sizing: border-box;
  2674. box-sizing: border-box;
  2675. float: right;
  2676. padding-left: 1.11111%;
  2677. padding-right: 1.11111%;
  2678. padding-right: 0;
  2679. width: 46.66667%;
  2680. }
  2681. /* Show search input and button on a single line */
  2682. .search-form label {
  2683. float: left;
  2684. width: 75%;
  2685. }
  2686. .search-form input[type="submit"] {
  2687. float: left;
  2688. margin: 0 0 0 1%;
  2689. width: 24%;
  2690. }
  2691. /* Make sure sidebar clears properly */
  2692. #secondary {
  2693. -moz-box-sizing: border-box;
  2694. -webkit-box-sizing: border-box;
  2695. box-sizing: border-box;
  2696. clear: both;
  2697. float: left;
  2698. width: 100%;
  2699. }
  2700. }
  2701. /* Sidebar widgets should appear in two columns, since we've got the space */
  2702. @media (min-width: 768px) and (max-width: 1023px) {
  2703. #secondary .widget {
  2704. float: left;
  2705. margin-right: 1.53846%;
  2706. width: 49.23077%;
  2707. }
  2708. #secondary .widget:nth-of-type(even) {
  2709. margin-right: 0;
  2710. }
  2711. }
  2712. /*--------------------------------------------------------------
  2713. 13.2 Still larger screens, 1024px wide and up.
  2714. Very large tablets in landscape mode and most desktops.
  2715. --------------------------------------------------------------*/
  2716. @media (min-width: 1024px) {
  2717. /* Use a two-column layout at this size (if we have an active sidebar) */
  2718. #primary {
  2719. -moz-box-sizing: border-box;
  2720. -webkit-box-sizing: border-box;
  2721. box-sizing: border-box;
  2722. float: left;
  2723. width: 68.18182%;
  2724. }
  2725. #primary:before,
  2726. #primary:after {
  2727. content: "";
  2728. display: table;
  2729. }
  2730. #primary:after {
  2731. clear: both;
  2732. }
  2733. #primary.full-width {
  2734. -moz-box-sizing: border-box;
  2735. -webkit-box-sizing: border-box;
  2736. box-sizing: border-box;
  2737. float: left;
  2738. padding-left: 0.75758%;
  2739. padding-right: 0.75758%;
  2740. width: 100%;
  2741. }
  2742. /* Allow the primary panel to span full width. */
  2743. .single.apostrophe-2-no-sidebar #primary,
  2744. .page.apostrophe-2-no-sidebar #primary {
  2745. float: none;
  2746. margin: 0 auto;
  2747. width: 730px;
  2748. }
  2749. .blog.apostrophe-2-no-sidebar #primary,
  2750. .archive.apostrophe-2-no-sidebar #primary,
  2751. .search.apostrophe-2-no-sidebar #primary {
  2752. width: 100%;
  2753. }
  2754. .apostrophe-2-no-sidebar #secondary {
  2755. display: none;
  2756. }
  2757. #secondary {
  2758. -moz-box-sizing: border-box;
  2759. -webkit-box-sizing: border-box;
  2760. box-sizing: border-box;
  2761. clear: none;
  2762. float: right;
  2763. padding-left: 0.75758%;
  2764. padding-right: 0.75758%;
  2765. width: 27.27273%;
  2766. }
  2767. /* Out-dent emphasized elements */
  2768. .emphasis {
  2769. margin: 2em 1em 2em -1em;
  2770. }
  2771. /* Pullquotes should move to the (empty) right-hand column on sidebar-less layouts */
  2772. .apostrophe-2-no-sidebar .pullquote {
  2773. position: absolute;
  2774. right: -50%;
  2775. width: 40%;
  2776. }
  2777. /* Show post status icon at left of post title */
  2778. .entry-format::before {
  2779. left: -46px;
  2780. right: auto;
  2781. }
  2782. }
  2783. /*--------------------------------------------------------------
  2784. 14.0 Print
  2785. --------------------------------------------------------------*/
  2786. @media print {
  2787. .entry-date {
  2788. display: block !important;
  2789. }
  2790. .entry-date > span,
  2791. .updated {
  2792. display: none !important;
  2793. }
  2794. }