style.css 60 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282
  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.7-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. /* Entry/post headers */
  1257. .entry-format::before {
  1258. background: #e6e6e6;
  1259. border: 2px solid #fff;
  1260. border-radius: 50%;
  1261. color: #fff;
  1262. display: inline-block;
  1263. font-size: 24px;
  1264. height: 38px;
  1265. padding: 5px;
  1266. position: absolute;
  1267. right: 0;
  1268. top: 19%;
  1269. width: 38px;
  1270. }
  1271. .entry-format:hover::before {
  1272. background: #ccc;
  1273. }
  1274. .page-header {
  1275. margin: 0 0 3.0303% 0;
  1276. }
  1277. body:not(.single) .byline,
  1278. .updated:not(.published) {
  1279. display: none;
  1280. }
  1281. .page-title,
  1282. .entry-title {
  1283. margin-top: 0;
  1284. position: relative;
  1285. }
  1286. .edit-link,
  1287. .comment-reply-link {
  1288. background: #ccc;
  1289. }
  1290. .edit-link:hover,
  1291. .comment-reply-link:hover {
  1292. background: silver;
  1293. }
  1294. /* Entry/page content */
  1295. .page-content,
  1296. .entry-content,
  1297. .entry-summary {
  1298. margin: 1.5em 0 0;
  1299. }
  1300. .page-links {
  1301. clear: both;
  1302. font-family: "Open Sans", Arial, sans-serif;
  1303. font-size: 14px;
  1304. font-size: 1.4rem;
  1305. font-weight: 600;
  1306. margin: 0 0 1.5em;
  1307. }
  1308. .page-links a {
  1309. font-weight: 400;
  1310. padding: 0 2px;
  1311. text-decoration: none;
  1312. }
  1313. .page-description {
  1314. margin: 0 0 48px 0;
  1315. padding: 12px 24px;
  1316. }
  1317. .page-description p {
  1318. margin-bottom: 0;
  1319. margin-top: 24px;
  1320. }
  1321. /* Entry/page footers */
  1322. .entry-footer:before,
  1323. .entry-footer:after {
  1324. content: "";
  1325. display: table;
  1326. }
  1327. .entry-footer:after {
  1328. clear: both;
  1329. }
  1330. .entry-footer .post-categories,
  1331. .entry-footer .post-tags {
  1332. float: left;
  1333. font-size: 0;
  1334. list-style: none;
  1335. margin: 0.2rem 0 0;
  1336. padding: 0;
  1337. }
  1338. .entry-meta .posted-on,
  1339. .entry-meta .byline,
  1340. .entry-footer .post-categories li,
  1341. .entry-footer .post-tags li {
  1342. display: inline-block;
  1343. margin: 0 0.4rem 0.4rem 0;
  1344. }
  1345. .archive article .entry-meta .posted-on,
  1346. .blog article .entry-meta .posted-on,
  1347. .search article .entry-meta .posted-on{
  1348. display: inherit;
  1349. }
  1350. .entry-footer a[rel="tag"],
  1351. .entry-footer a[rel="category tag"] {
  1352. margin-bottom: 0;
  1353. }
  1354. .entry-footer a[rel="tag"]::before,
  1355. .entry-footer a[rel="category tag"]::before {
  1356. margin: 0 0.2rem 0 -0.2rem;
  1357. vertical-align: -0.2rem;
  1358. }
  1359. .entry-footer a[rel="tag"]:hover,
  1360. .entry-footer a[rel="category tag"]:hover {
  1361. background-color: #5a5a5a;
  1362. }
  1363. .entry-footer a[rel="category tag"] {
  1364. background: #362e77;
  1365. }
  1366. .entry-footer a[rel="category tag"]::before {
  1367. content: "\f301";
  1368. }
  1369. .entry-footer a[rel="tag"]::before {
  1370. content: "\f302";
  1371. }
  1372. .entry-footer .apostrophe-2-tags::after {
  1373. clear: both;
  1374. content: "";
  1375. display: block;
  1376. }
  1377. /* Author panel */
  1378. .single .entry-author {
  1379. border-bottom: 4px solid #ddd;
  1380. clear: left;
  1381. margin: 125px 0 3.0303%;
  1382. padding: 3.0303% 0;
  1383. text-align: center;
  1384. }
  1385. .single .entry-author:before {
  1386. clear: both;
  1387. display: block;
  1388. width: 100%;
  1389. }
  1390. .single .entry-author .author-title {
  1391. font-size: 28px;
  1392. font-size: 2.8rem;
  1393. font-weight: 300;
  1394. }
  1395. .single .entry-author .author-avatar {
  1396. border-top: 1px solid #ddd;
  1397. }
  1398. .single .entry-author .avatar {
  1399. border-radius: 50%;
  1400. height: 125px;
  1401. margin-top: -62.5px;
  1402. width: 125px;
  1403. }
  1404. .single .entry-author .author-bio {
  1405. clear: left;
  1406. font-size: 17px;
  1407. font-size: 1.7rem;
  1408. font-style: italic;
  1409. text-align: left;
  1410. }
  1411. .single .entry-author h3 a {
  1412. color: #a6a6a6;
  1413. }
  1414. .single .entry-author h3 a:hover {
  1415. color: #737373;
  1416. }
  1417. /* Archive pages */
  1418. /* Posts without featured images will show as a grey box in the panel.
  1419. * This hack sets the box's height to be equal to its width.
  1420. * http://www.mademyday.de/css-height-equals-width-with-pure-css.html
  1421. */
  1422. .archive .entry-thumbnail,
  1423. .blog .entry-thumbnail,
  1424. .search .entry-thumbnail {
  1425. display: block;
  1426. line-height: 0;
  1427. /* This eradicates any unwanted bottom padding. */
  1428. }
  1429. .archive .entry-thumbnail img,
  1430. .blog .entry-thumbnail img,
  1431. .search .entry-thumbnail img {
  1432. transition: all 0.125s linear;
  1433. /* Fade out quickly */
  1434. }
  1435. .archive .entry-meta,
  1436. .blog .entry-meta,
  1437. .search .entry-meta {
  1438. display: table;
  1439. position: relative;
  1440. }
  1441. .single.date-hidden .entry-meta {
  1442. padding: 0;
  1443. }
  1444. .archive .entry-title,
  1445. .blog .entry-title,
  1446. .search .entry-title {
  1447. font-family: "PT Serif", Georgia, "Times New Roman", serif;
  1448. font-size: 21px;
  1449. font-size: 2.1rem;
  1450. font-weight: normal;
  1451. line-height: 1.2;
  1452. margin: 0;
  1453. padding: 0;
  1454. }
  1455. .archive .entry-title a,
  1456. .blog .entry-title a,
  1457. .search .entry-title a {
  1458. color: #117bb8;
  1459. }
  1460. .blog .featured-content .entry-title a,
  1461. .blog .sticky .entry-title a {
  1462. color: #362e77;
  1463. }
  1464. .archive article:hover .entry-thumbnail img,
  1465. .blog article:hover .entry-thumbnail img,
  1466. .search article:hover .entry-thumbnail img {
  1467. /* IE6-9 */
  1468. -webkit-filter: grayscale(100%);
  1469. 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");
  1470. /* Firefox 10+, Firefox on Android */
  1471. filter: gray;
  1472. /* Chrome 19+, Safari 6+, Safari 6+ iOS */
  1473. filter: grayscale(100%);
  1474. transition: all 0.5s linear;
  1475. /* Fade in slowly */
  1476. }
  1477. .archive article:hover .entry-title a,
  1478. .blog article:hover .entry-title a,
  1479. .search article:hover .entry-title a {
  1480. color: #a6a6a6;
  1481. }
  1482. /* Articles without featured images */
  1483. .archive .apostrophe-2-nothumb,
  1484. .blog .apostrophe-2-nothumb,
  1485. .search .apostrophe-2-nothumb {
  1486. background: #ccc;
  1487. position: relative;
  1488. }
  1489. .archive .apostrophe-2-nothumb:before,
  1490. .blog .apostrophe-2-nothumb:before,
  1491. .search .apostrophe-2-nothumb:before {
  1492. content: "";
  1493. display: block;
  1494. padding-top: 100%;
  1495. }
  1496. .archive .apostrophe-2-nothumb span,
  1497. .blog .apostrophe-2-nothumb span,
  1498. .search .apostrophe-2-nothumb span {
  1499. bottom: 0;
  1500. left: 0;
  1501. position: absolute;
  1502. right: 0;
  1503. text-align: center;
  1504. top: 0;
  1505. }
  1506. .archive .apostrophe-2-nothumb span:before,
  1507. .blog .apostrophe-2-nothumb span:before,
  1508. .search .apostrophe-2-nothumb span:before {
  1509. color: #fff;
  1510. content: "\f100";
  1511. }
  1512. /* Featured content */
  1513. .archive .apostrophe-2-featured .entry-title,
  1514. .blog .apostrophe-2-featured .entry-title,
  1515. .search .apostrophe-2-featured .entry-title {
  1516. font-size: 3.6rem;
  1517. }
  1518. .archive .apostrophe-2-featured .apostrophe-2-nothumb:before,
  1519. .blog .apostrophe-2-featured .apostrophe-2-nothumb:before,
  1520. .search .apostrophe-2-featured .apostrophe-2-nothumb:before {
  1521. padding-top: 48.45%;
  1522. }
  1523. /* Inline controls for logged-in users on archive pages */
  1524. article {
  1525. position: relative;
  1526. }
  1527. .apostrophe-2-inline-controls {
  1528. background: #eee;
  1529. display: none;
  1530. line-height: 1;
  1531. position: absolute;
  1532. right: 10px;
  1533. top: 4px;
  1534. }
  1535. .apostrophe-2-inline-controls a {
  1536. color: #333;
  1537. display: inline-block;
  1538. font-size: 16px;
  1539. font-size: 1.6rem;
  1540. height: auto;
  1541. padding: 6px;
  1542. text-decoration: none;
  1543. width: auto;
  1544. }
  1545. article:hover .apostrophe-2-inline-controls {
  1546. display: block;
  1547. }
  1548. .apostrophe-2-featured .apostrophe-2-featured-toggle {
  1549. color: #eac31c;
  1550. }
  1551. .apostrophe-2-featured .apostrophe-2-featured-toggle:hover {
  1552. color: white !important;
  1553. }
  1554. .apostrophe-2-featured-toggle:hover {
  1555. color: #eac31c !important;
  1556. }
  1557. /* Password-protected posts */
  1558. .post-password-form input[type="submit"] {
  1559. margin-top: 12px;
  1560. }
  1561. /* Search form */
  1562. .search-form {
  1563. margin-bottom: 3.0303%;
  1564. }
  1565. .search-form:before,
  1566. .search-form:after {
  1567. content: "";
  1568. display: table;
  1569. }
  1570. .search-form:after {
  1571. clear: both;
  1572. }
  1573. .search-form input[type="submit"] {
  1574. width: 100%;
  1575. }
  1576. /*--------------------------------------------------------------
  1577. 10.2 Asides
  1578. --------------------------------------------------------------*/
  1579. /* General widget styles */
  1580. .widgettitle,
  1581. .widget-title,
  1582. .widget-title label {
  1583. color: #a6a6a6;
  1584. font-size: 18px;
  1585. font-size: 1.8rem;
  1586. line-height: 24px;
  1587. margin-bottom: 24px;
  1588. margin-top: 0;
  1589. padding-top: 0;
  1590. }
  1591. .widget-title label {
  1592. text-transform: none;
  1593. }
  1594. .widget {
  1595. border-top: 4px solid #d9d9d9;
  1596. margin-bottom: 7.57576%;
  1597. padding: 8.33333% 8.33333%;
  1598. word-wrap: break-word;
  1599. }
  1600. .widget li > ul,
  1601. .widget li > ol {
  1602. margin-left: 0.5em;
  1603. padding-left: 1em;
  1604. }
  1605. /* Specific widget areas */
  1606. .widget-area .sidebar-primary aside {
  1607. background: #117bb8;
  1608. border-top-color: #362e77;
  1609. color: #fff;
  1610. }
  1611. .widget-area .sidebar-primary aside .widgettitle,
  1612. .widget-area .sidebar-primary aside .widget-title,
  1613. .widget-area .sidebar-primary aside .widget-title label {
  1614. color: #fff;
  1615. }
  1616. .widget-area .sidebar-primary aside a,
  1617. .widget-area .sidebar-primary aside cite {
  1618. color: #ceeafa;
  1619. }
  1620. .widget-area .sidebar-primary aside ul {
  1621. font-size: 16px;
  1622. font-size: 1.6rem;
  1623. line-height: 1.2;
  1624. padding-left: 20px;
  1625. }
  1626. .widget-area .sidebar-primary aside.widget_text ul {
  1627. line-height: inherit;
  1628. }
  1629. .widget-area .sidebar-primary aside.jetpack_widget_social_icons ul {
  1630. padding-left: 0;
  1631. }
  1632. .widget-area .sidebar-primary aside.jetpack_widget_social_icons ul a:hover {
  1633. color: #fff;
  1634. }
  1635. .widget-area .sidebar-primary aside:last-child p:last-child {
  1636. margin-bottom: 0;
  1637. }
  1638. .widget-area .sidebar-secondary aside {
  1639. background: #f8f8f8;
  1640. }
  1641. .widget-area .sidebar-secondary,
  1642. .widget-area .sidebar-tertiary {
  1643. font-size: 16px;
  1644. font-size: 1.6rem;
  1645. line-height: 1.5;
  1646. }
  1647. .widget-area .sidebar-tertiary .widget {
  1648. padding-left: 0;
  1649. padding-right: 0;
  1650. }
  1651. /* Adjust 404 page widgets a bit */
  1652. .error404 .page-content .widget {
  1653. font-size: 16px;
  1654. font-size: 1.6rem;
  1655. line-height: 1.2;
  1656. padding-left: 0;
  1657. padding-right: 0;
  1658. }
  1659. /*--------------------------------------------------------------
  1660. 10.3 Comments
  1661. --------------------------------------------------------------*/
  1662. .comments-title,
  1663. #reply-title {
  1664. margin: 3.0303% 0 0;
  1665. }
  1666. .comment-list {
  1667. clear: both;
  1668. list-style: none;
  1669. padding-top: 2em;
  1670. }
  1671. .comment-list ul.children {
  1672. list-style: none;
  1673. margin-left: 20px;
  1674. }
  1675. .comment-meta {
  1676. font-family: "Open Sans", Arial, sans-serif;
  1677. padding: 0.25em;
  1678. }
  1679. .comment-meta .comment-author .avatar {
  1680. border-radius: 50%;
  1681. float: left;
  1682. height: 100px;
  1683. margin: 0 0.5em 0 0;
  1684. width: 100px;
  1685. }
  1686. .comment-meta .comment-author b {
  1687. color: #999;
  1688. display: inline-block;
  1689. font-size: 28px;
  1690. font-size: 2.8rem;
  1691. font-weight: 300;
  1692. line-height: 1.2;
  1693. max-width: calc(100% - 100px - 0.5em);
  1694. padding-top: 0.25em;
  1695. }
  1696. .comment-meta .comment-author b a {
  1697. color: #999;
  1698. text-decoration: none;
  1699. }
  1700. .comment-meta .comment-author .says {
  1701. display: none;
  1702. }
  1703. .comment-meta .comment-metadata {
  1704. font-size: 14px;
  1705. font-size: 1.4rem;
  1706. font-weight: 600;
  1707. letter-spacing: 1px;
  1708. margin-top: 0;
  1709. text-transform: uppercase;
  1710. }
  1711. .comment-meta .comment-metadata > a {
  1712. color: #737373;
  1713. text-decoration: none;
  1714. }
  1715. .comment-content {
  1716. border-bottom: 1px solid #ccc;
  1717. }
  1718. .comment-content a {
  1719. word-wrap: break-word;
  1720. }
  1721. .reply {
  1722. margin-top: -1em;
  1723. text-align: center;
  1724. }
  1725. .comment-reply-link:hover {
  1726. color: #fff;
  1727. }
  1728. .bypostauthor .comment-meta {
  1729. background: rgba(58, 58, 58, 0.03);
  1730. }
  1731. #reply-title {
  1732. margin-top: 2em;
  1733. }
  1734. .form-allowed-tags {
  1735. background: #efefef;
  1736. border-radius: 1rem;
  1737. font-size: 16px;
  1738. font-size: 1.6rem;
  1739. padding: 1.5rem;
  1740. }
  1741. #comment-nav-above {
  1742. margin: 1.51515% 0 0;
  1743. }
  1744. #comment-nav-below {
  1745. margin: 0 0 1.51515%;
  1746. }
  1747. #respond label {
  1748. letter-spacing: 0;
  1749. }
  1750. /*--------------------------------------------------------------
  1751. 11.0 Infinite scroll
  1752. --------------------------------------------------------------*/
  1753. /* Globally hidden elements when Infinite Scroll is supported and in use. */
  1754. .infinite-scroll .posts-navigation,
  1755. .infinite-scroll.neverending .site-footer {
  1756. display: none;
  1757. }
  1758. /* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
  1759. .infinity-end.neverending .site-footer {
  1760. display: block;
  1761. }
  1762. /* Click-to-scroll button */
  1763. #infinite-handle {
  1764. clear: both;
  1765. text-align: center;
  1766. }
  1767. #infinite-handle span {
  1768. background: #333;
  1769. padding: 10px 20px;
  1770. }
  1771. #infinite-handle span:hover {
  1772. background: silver;
  1773. }
  1774. /* Loading icon */
  1775. .infinite-loader {
  1776. clear: both;
  1777. text-align: center;
  1778. margin: 10px 0 18px;
  1779. }
  1780. .infinite-loader .spinner {
  1781. left: 50% !important; /* ..because the Jetpack CSS is inline */
  1782. }
  1783. /*--------------------------------------------------------------
  1784. # Jetpack Contact Forms
  1785. --------------------------------------------------------------*/
  1786. body .contact-form input[type="radio"],
  1787. body .contact-form input[type="checkbox"] {
  1788. margin-bottom: 6px;
  1789. margin-right: .3em;
  1790. vertical-align: middle;
  1791. }
  1792. body .contact-form label.checkbox,
  1793. body .contact-form label.checkbox-multiple,
  1794. body .contact-form label.radio {
  1795. font-weight: normal;
  1796. margin-bottom: 4px;
  1797. letter-spacing: 0px;
  1798. text-transform: none;
  1799. color: inherit;
  1800. }
  1801. body .contact-form label.checkbox,
  1802. body .contact-form > div {
  1803. margin-bottom: 16px;
  1804. }
  1805. body .contact-form textarea,
  1806. body .contact-form input[type='text'],
  1807. body .contact-form input[type='email'],
  1808. body .contact-form input[type='url'],
  1809. body .contact-form select {
  1810. margin-bottom: 8px;
  1811. }
  1812. /*--------------------------------------------------------------
  1813. 12.0 Media
  1814. --------------------------------------------------------------*/
  1815. .page-content .wp-smiley,
  1816. .entry-content .wp-smiley,
  1817. .comment-content .wp-smiley {
  1818. border: none;
  1819. margin-bottom: 0;
  1820. margin-top: 0;
  1821. padding: 0;
  1822. }
  1823. img.size-full,
  1824. img.size-large {
  1825. display: block;
  1826. margin-bottom: 36px;
  1827. margin-top: 36px;
  1828. }
  1829. img.alignnone,
  1830. .wp-caption.alignnone img:not(.wp-smiley) {
  1831. display: block;
  1832. }
  1833. img.alignright,
  1834. img.alignleft,
  1835. .wp-caption.alignleft img,
  1836. .wp-caption.alignright img {
  1837. margin-top: 0;
  1838. }
  1839. /* Make sure embeds and iframes fit their containers. */
  1840. embed,
  1841. iframe,
  1842. object {
  1843. margin-bottom: 24px;
  1844. margin-top: 24px;
  1845. max-width: 100%;
  1846. }
  1847. /* Remove margins from sharing buttons using iframes. */
  1848. .sd-sharing-enabled iframe {
  1849. margin: 0;
  1850. }
  1851. /*--------------------------------------------------------------
  1852. 12.1 Captions
  1853. --------------------------------------------------------------*/
  1854. .wp-caption {
  1855. max-width: 100%;
  1856. }
  1857. .wp-caption img[class*="wp-image-"] {
  1858. display: block;
  1859. margin-left: auto;
  1860. margin-right: auto;
  1861. }
  1862. .wp-caption img.size-full,
  1863. .wp-caption img.size-large {
  1864. clear: both;
  1865. margin-bottom: 0;
  1866. }
  1867. .wp-caption-text {
  1868. display: block;
  1869. font-style: italic;
  1870. line-height: 1.2;
  1871. margin-bottom: 0.5em;
  1872. margin-top: 0.5em;
  1873. text-align: center;
  1874. }
  1875. /*--------------------------------------------------------------
  1876. 12.2 Galleries
  1877. --------------------------------------------------------------*/
  1878. .gallery {
  1879. margin-bottom: 1.5em;
  1880. margin-left: auto;
  1881. margin-right: auto;
  1882. max-width: 1140px;
  1883. }
  1884. .gallery:after {
  1885. clear: both;
  1886. content: " ";
  1887. display: block;
  1888. }
  1889. .gallery-item {
  1890. margin: 0;
  1891. padding-bottom: 0.5em;
  1892. text-align: center;
  1893. }
  1894. .gallery-item a {
  1895. display: block;
  1896. line-height: 0;
  1897. }
  1898. .gallery-item a::before,
  1899. .gallery-item a::after {
  1900. display: block;
  1901. }
  1902. .gallery-item .wp-caption-text a {
  1903. line-height: 1.2;
  1904. }
  1905. .gallery-columns-2 {
  1906. margin-left: -0.25em;
  1907. margin-right: -0.25em;
  1908. }
  1909. .gallery-columns-2 .gallery-item {
  1910. -moz-box-sizing: border-box;
  1911. -webkit-box-sizing: border-box;
  1912. box-sizing: border-box;
  1913. float: left;
  1914. padding-left: 0.25em;
  1915. padding-right: 0.25em;
  1916. width: 50%;
  1917. }
  1918. .gallery-columns-2 .gallery-item:nth-child(2n + 1) {
  1919. clear: both;
  1920. margin-left: 0;
  1921. margin-right: -100%;
  1922. }
  1923. .gallery-columns-2 .gallery-item:nth-child(2n + 2) {
  1924. clear: none;
  1925. margin-left: 50%;
  1926. margin-right: -100%;
  1927. }
  1928. .gallery-columns-3 {
  1929. margin-left: -0.25em;
  1930. margin-right: -0.25em;
  1931. }
  1932. .gallery-columns-3 .gallery-item {
  1933. -moz-box-sizing: border-box;
  1934. -webkit-box-sizing: border-box;
  1935. box-sizing: border-box;
  1936. float: left;
  1937. padding-left: 0.25em;
  1938. padding-right: 0.25em;
  1939. width: 33.33333%;
  1940. }
  1941. .gallery-columns-3 .gallery-item:nth-child(3n + 1) {
  1942. clear: both;
  1943. margin-left: 0;
  1944. margin-right: -100%;
  1945. }
  1946. .gallery-columns-3 .gallery-item:nth-child(3n + 2) {
  1947. clear: none;
  1948. margin-left: 33.33333%;
  1949. margin-right: -100%;
  1950. }
  1951. .gallery-columns-3 .gallery-item:nth-child(3n + 3) {
  1952. clear: none;
  1953. margin-left: 66.66667%;
  1954. margin-right: -100%;
  1955. }
  1956. .gallery-columns-4 {
  1957. margin-left: -0.25em;
  1958. margin-right: -0.25em;
  1959. }
  1960. .gallery-columns-4 .gallery-item {
  1961. -moz-box-sizing: border-box;
  1962. -webkit-box-sizing: border-box;
  1963. box-sizing: border-box;
  1964. float: left;
  1965. padding-left: 0.25em;
  1966. padding-right: 0.25em;
  1967. width: 25%;
  1968. }
  1969. .gallery-columns-4 .gallery-item:nth-child(4n + 1) {
  1970. clear: both;
  1971. margin-left: 0;
  1972. margin-right: -100%;
  1973. }
  1974. .gallery-columns-4 .gallery-item:nth-child(4n + 2) {
  1975. clear: none;
  1976. margin-left: 25%;
  1977. margin-right: -100%;
  1978. }
  1979. .gallery-columns-4 .gallery-item:nth-child(4n + 3) {
  1980. clear: none;
  1981. margin-left: 50%;
  1982. margin-right: -100%;
  1983. }
  1984. .gallery-columns-4 .gallery-item:nth-child(4n + 4) {
  1985. clear: none;
  1986. margin-left: 75%;
  1987. margin-right: -100%;
  1988. }
  1989. .gallery-columns-5 {
  1990. margin-left: -0.25em;
  1991. margin-right: -0.25em;
  1992. }
  1993. .gallery-columns-5 .gallery-item {
  1994. -moz-box-sizing: border-box;
  1995. -webkit-box-sizing: border-box;
  1996. box-sizing: border-box;
  1997. float: left;
  1998. padding-left: 0.25em;
  1999. padding-right: 0.25em;
  2000. width: 20%;
  2001. }
  2002. .gallery-columns-5 .gallery-item:nth-child(5n + 1) {
  2003. clear: both;
  2004. margin-left: 0;
  2005. margin-right: -100%;
  2006. }
  2007. .gallery-columns-5 .gallery-item:nth-child(5n + 2) {
  2008. clear: none;
  2009. margin-left: 20%;
  2010. margin-right: -100%;
  2011. }
  2012. .gallery-columns-5 .gallery-item:nth-child(5n + 3) {
  2013. clear: none;
  2014. margin-left: 40%;
  2015. margin-right: -100%;
  2016. }
  2017. .gallery-columns-5 .gallery-item:nth-child(5n + 4) {
  2018. clear: none;
  2019. margin-left: 60%;
  2020. margin-right: -100%;
  2021. }
  2022. .gallery-columns-5 .gallery-item:nth-child(5n + 5) {
  2023. clear: none;
  2024. margin-left: 80%;
  2025. margin-right: -100%;
  2026. }
  2027. .gallery-columns-6 {
  2028. margin-left: -0.25em;
  2029. margin-right: -0.25em;
  2030. }
  2031. .gallery-columns-6 .gallery-item {
  2032. -moz-box-sizing: border-box;
  2033. -webkit-box-sizing: border-box;
  2034. box-sizing: border-box;
  2035. float: left;
  2036. padding-left: 0.25em;
  2037. padding-right: 0.25em;
  2038. width: 16.66667%;
  2039. }
  2040. .gallery-columns-6 .gallery-item:nth-child(6n + 1) {
  2041. clear: both;
  2042. margin-left: 0;
  2043. margin-right: -100%;
  2044. }
  2045. .gallery-columns-6 .gallery-item:nth-child(6n + 2) {
  2046. clear: none;
  2047. margin-left: 16.66667%;
  2048. margin-right: -100%;
  2049. }
  2050. .gallery-columns-6 .gallery-item:nth-child(6n + 3) {
  2051. clear: none;
  2052. margin-left: 33.33333%;
  2053. margin-right: -100%;
  2054. }
  2055. .gallery-columns-6 .gallery-item:nth-child(6n + 4) {
  2056. clear: none;
  2057. margin-left: 50%;
  2058. margin-right: -100%;
  2059. }
  2060. .gallery-columns-6 .gallery-item:nth-child(6n + 5) {
  2061. clear: none;
  2062. margin-left: 66.66667%;
  2063. margin-right: -100%;
  2064. }
  2065. .gallery-columns-6 .gallery-item:nth-child(6n + 6) {
  2066. clear: none;
  2067. margin-left: 83.33333%;
  2068. margin-right: -100%;
  2069. }
  2070. .gallery-columns-7 {
  2071. margin-left: -0.25em;
  2072. margin-right: -0.25em;
  2073. }
  2074. .gallery-columns-7 .gallery-item {
  2075. -moz-box-sizing: border-box;
  2076. -webkit-box-sizing: border-box;
  2077. box-sizing: border-box;
  2078. float: left;
  2079. padding-left: 0.25em;
  2080. padding-right: 0.25em;
  2081. width: 14.28571%;
  2082. }
  2083. .gallery-columns-7 .gallery-item:nth-child(7n + 1) {
  2084. clear: both;
  2085. margin-left: 0;
  2086. margin-right: -100%;
  2087. }
  2088. .gallery-columns-7 .gallery-item:nth-child(7n + 2) {
  2089. clear: none;
  2090. margin-left: 14.28571%;
  2091. margin-right: -100%;
  2092. }
  2093. .gallery-columns-7 .gallery-item:nth-child(7n + 3) {
  2094. clear: none;
  2095. margin-left: 28.57143%;
  2096. margin-right: -100%;
  2097. }
  2098. .gallery-columns-7 .gallery-item:nth-child(7n + 4) {
  2099. clear: none;
  2100. margin-left: 42.85714%;
  2101. margin-right: -100%;
  2102. }
  2103. .gallery-columns-7 .gallery-item:nth-child(7n + 5) {
  2104. clear: none;
  2105. margin-left: 57.14286%;
  2106. margin-right: -100%;
  2107. }
  2108. .gallery-columns-7 .gallery-item:nth-child(7n + 6) {
  2109. clear: none;
  2110. margin-left: 71.42857%;
  2111. margin-right: -100%;
  2112. }
  2113. .gallery-columns-7 .gallery-item:nth-child(7n + 7) {
  2114. clear: none;
  2115. margin-left: 85.71429%;
  2116. margin-right: -100%;
  2117. }
  2118. .gallery-columns-8 {
  2119. margin-left: -0.25em;
  2120. margin-right: -0.25em;
  2121. }
  2122. .gallery-columns-8 .gallery-item {
  2123. -moz-box-sizing: border-box;
  2124. -webkit-box-sizing: border-box;
  2125. box-sizing: border-box;
  2126. float: left;
  2127. padding-left: 0.25em;
  2128. padding-right: 0.25em;
  2129. width: 12.5%;
  2130. }
  2131. .gallery-columns-8 .gallery-item:nth-child(8n + 1) {
  2132. clear: both;
  2133. margin-left: 0;
  2134. margin-right: -100%;
  2135. }
  2136. .gallery-columns-8 .gallery-item:nth-child(8n + 2) {
  2137. clear: none;
  2138. margin-left: 12.5%;
  2139. margin-right: -100%;
  2140. }
  2141. .gallery-columns-8 .gallery-item:nth-child(8n + 3) {
  2142. clear: none;
  2143. margin-left: 25%;
  2144. margin-right: -100%;
  2145. }
  2146. .gallery-columns-8 .gallery-item:nth-child(8n + 4) {
  2147. clear: none;
  2148. margin-left: 37.5%;
  2149. margin-right: -100%;
  2150. }
  2151. .gallery-columns-8 .gallery-item:nth-child(8n + 5) {
  2152. clear: none;
  2153. margin-left: 50%;
  2154. margin-right: -100%;
  2155. }
  2156. .gallery-columns-8 .gallery-item:nth-child(8n + 6) {
  2157. clear: none;
  2158. margin-left: 62.5%;
  2159. margin-right: -100%;
  2160. }
  2161. .gallery-columns-8 .gallery-item:nth-child(8n + 7) {
  2162. clear: none;
  2163. margin-left: 75%;
  2164. margin-right: -100%;
  2165. }
  2166. .gallery-columns-8 .gallery-item:nth-child(8n + 8) {
  2167. clear: none;
  2168. margin-left: 87.5%;
  2169. margin-right: -100%;
  2170. }
  2171. .gallery-columns-9 {
  2172. margin-left: -0.25em;
  2173. margin-right: -0.25em;
  2174. }
  2175. .gallery-columns-9 .gallery-item {
  2176. -moz-box-sizing: border-box;
  2177. -webkit-box-sizing: border-box;
  2178. box-sizing: border-box;
  2179. float: left;
  2180. padding-left: 0.25em;
  2181. padding-right: 0.25em;
  2182. width: 11.11111%;
  2183. }
  2184. .gallery-columns-9 .gallery-item:nth-child(9n + 1) {
  2185. clear: both;
  2186. margin-left: 0;
  2187. margin-right: -100%;
  2188. }
  2189. .gallery-columns-9 .gallery-item:nth-child(9n + 2) {
  2190. clear: none;
  2191. margin-left: 11.11111%;
  2192. margin-right: -100%;
  2193. }
  2194. .gallery-columns-9 .gallery-item:nth-child(9n + 3) {
  2195. clear: none;
  2196. margin-left: 22.22222%;
  2197. margin-right: -100%;
  2198. }
  2199. .gallery-columns-9 .gallery-item:nth-child(9n + 4) {
  2200. clear: none;
  2201. margin-left: 33.33333%;
  2202. margin-right: -100%;
  2203. }
  2204. .gallery-columns-9 .gallery-item:nth-child(9n + 5) {
  2205. clear: none;
  2206. margin-left: 44.44444%;
  2207. margin-right: -100%;
  2208. }
  2209. .gallery-columns-9 .gallery-item:nth-child(9n + 6) {
  2210. clear: none;
  2211. margin-left: 55.55556%;
  2212. margin-right: -100%;
  2213. }
  2214. .gallery-columns-9 .gallery-item:nth-child(9n + 7) {
  2215. clear: none;
  2216. margin-left: 66.66667%;
  2217. margin-right: -100%;
  2218. }
  2219. .gallery-columns-9 .gallery-item:nth-child(9n + 8) {
  2220. clear: none;
  2221. margin-left: 77.77778%;
  2222. margin-right: -100%;
  2223. }
  2224. .gallery-columns-9 .gallery-item:nth-child(9n + 9) {
  2225. clear: none;
  2226. margin-left: 88.88889%;
  2227. margin-right: -100%;
  2228. }
  2229. .gallery-caption {
  2230. font-size: 16px;
  2231. font-size: 1.6rem;
  2232. }
  2233. .gallery-columns-7 .gallery-caption,
  2234. .gallery-columns-8 .gallery-caption,
  2235. .gallery-columns-9 .gallery-caption {
  2236. display: none;
  2237. }
  2238. /*--------------------------------------------------------------
  2239. 13.0 Media Queries
  2240. --------------------------------------------------------------*/
  2241. /*--------------------------------------------------------------
  2242. 13.1 Small screens, under 768px wide.
  2243. Primarily mobile devices and super-small tablets.
  2244. --------------------------------------------------------------*/
  2245. @media (max-width: 767px) {
  2246. /* Page structure */
  2247. #page {
  2248. min-width: 280px;
  2249. padding: 3.0303%;
  2250. }
  2251. /* Center-align site branding and logo */
  2252. .site-branding {
  2253. text-align: center;
  2254. }
  2255. .site-logo {
  2256. margin: 30px auto 10px;
  2257. }
  2258. }
  2259. /* Small screen + portrait orientation = more space between title & description */
  2260. @media (max-width: 767px) and (orientation: portrait) {
  2261. .site-title,
  2262. .site-description {
  2263. margin-bottom: 6.06061%;
  2264. }
  2265. }
  2266. @media (max-width: 767px) {
  2267. /* Show menu toggle and hide menu by default */
  2268. .menu-toggle,
  2269. .main-navigation.toggled-on .nav-menu,
  2270. .main-navigation.toggled-on ul.toggled-on {
  2271. display: block;
  2272. }
  2273. .main-navigation ul,
  2274. .jetpack-social-navigation {
  2275. display: none;
  2276. }
  2277. /* Condensed mobile menu */
  2278. div.apostrophe-2-navigation ul,
  2279. ul.apostrophe-2-navigation {
  2280. display: none;
  2281. }
  2282. .main-navigation {
  2283. margin: 10px 0 20px;
  2284. position: relative;
  2285. }
  2286. .main-navigation .menu-toggle {
  2287. border-bottom: solid 1px;
  2288. border-top: solid 4px transparent;
  2289. cursor: pointer;
  2290. display: block;
  2291. height: 60px;
  2292. line-height: 52px;
  2293. margin: 0;
  2294. padding: 0;
  2295. }
  2296. .main-navigation .menu-toggle:before {
  2297. content: "\f419";
  2298. display: inline-block;
  2299. font-family: Genericons;
  2300. font-size: 16px;
  2301. font-weight: normal;
  2302. line-height: 52px;
  2303. padding-right: 10px;
  2304. vertical-align: top;
  2305. -webkit-font-smoothing: antialiased;
  2306. }
  2307. .main-navigation.toggled-on .current_page_item a,
  2308. .main-navigation.toggled-on .current-menu-item a,
  2309. .main-navigation.toggled-on .current-post-ancestor a,
  2310. .main-navigation.toggled-on .current-menu-ancestor a,
  2311. .main-navigation.toggled-on .current-menu-parent a,
  2312. .main-navigation.toggled-on .current-post-parent a {
  2313. border-top-color: transparent;
  2314. }
  2315. .main-navigation.toggled-on .apostrophe-2-navigation,
  2316. .main-navigation.toggled-on .apostrophe-2-navigation > ul {
  2317. border-bottom: solid 1px;
  2318. display: block;
  2319. }
  2320. .main-navigation.toggled-on .apostrophe-2-navigation li {
  2321. clear: left;
  2322. display: block;
  2323. float: none;
  2324. position: relative;
  2325. }
  2326. .main-navigation.toggled-on .apostrophe-2-navigation li a {
  2327. margin-top: 0;
  2328. padding: 10px 25px 15px;
  2329. }
  2330. .main-navigation.toggled-on .apostrophe-2-navigation .toggled-on:not(.dropdown-toggle) {
  2331. border-bottom: 1px solid;
  2332. border-top: 2px solid;
  2333. }
  2334. .main-navigation.toggled-on .apostrophe-2-navigation .toggled-on > .sub-menu {
  2335. display: block;
  2336. }
  2337. .main-navigation ul li.menu-item-has-children > a:after {
  2338. display: none;
  2339. }
  2340. .main-navigation.toggled-on .apostrophe-2-navigation li.menu-item-has-children a {
  2341. padding-right: 60px;
  2342. }
  2343. .jetpack-social-navigation ul {
  2344. position: absolute;
  2345. right: 0;
  2346. top: 0;
  2347. }
  2348. .jetpack-social-navigation ul li a {
  2349. line-height: 60px;
  2350. }
  2351. .apostrophe-2-navigation .dropdown-toggle {
  2352. display: block;
  2353. }
  2354. /* Display the social menu if the user requests it */
  2355. .show-mobile-social-menu .jetpack-social-navigation {
  2356. display: block;
  2357. position: absolute;
  2358. top: 0;
  2359. right: 0;
  2360. height: 50px;
  2361. width: 80%;
  2362. }
  2363. .show-mobile-social-menu .jetpack-social-navigation ul li a {
  2364. margin-right: 10px;
  2365. padding: 0.75rem 0 1.5rem;
  2366. line-height: 45px;
  2367. }
  2368. /* Use a slightly smaller font size for titles */
  2369. h1 {
  2370. font-size: 36px;
  2371. font-size: 3.6rem;
  2372. }
  2373. /* Arrange posts into grid structure on archive pages */
  2374. .archive .apostrophe-2-nothumb span:before,
  2375. .blog .apostrophe-2-nothumb span:before,
  2376. .search .apostrophe-2-nothumb span:before {
  2377. font-size: 64px;
  2378. font-size: 6.4rem;
  2379. margin-top: calc(50% - 32px);
  2380. }
  2381. .archive article,
  2382. .blog article,
  2383. .search article {
  2384. margin-bottom: 5.55556%;
  2385. }
  2386. .archive article:not(.apostrophe-2-featured):before,
  2387. .archive article:not(.apostrophe-2-featured):after,
  2388. .blog article:not(.apostrophe-2-featured):before,
  2389. .blog article:not(.apostrophe-2-featured):after,
  2390. .search article:not(.apostrophe-2-featured):before,
  2391. .search article:not(.apostrophe-2-featured):after {
  2392. content: "";
  2393. display: table;
  2394. }
  2395. .archive article:not(.apostrophe-2-featured):after,
  2396. .blog article:not(.apostrophe-2-featured):after,
  2397. .search article:not(.apostrophe-2-featured):after {
  2398. clear: both;
  2399. }
  2400. .archive article:not(.apostrophe-2-featured) .entry-thumbnail,
  2401. .blog article:not(.apostrophe-2-featured) .entry-thumbnail,
  2402. .search article:not(.apostrophe-2-featured) .entry-thumbnail {
  2403. -moz-box-sizing: border-box;
  2404. -webkit-box-sizing: border-box;
  2405. box-sizing: border-box;
  2406. float: left;
  2407. padding-left: 5.55556%;
  2408. padding-left: 0;
  2409. padding-right: 5.55556%;
  2410. padding-right: 0;
  2411. width: 33.33333%;
  2412. }
  2413. .archive article:not(.apostrophe-2-featured) .entry-header,
  2414. .blog article:not(.apostrophe-2-featured) .entry-header,
  2415. .search article:not(.apostrophe-2-featured) .entry-header {
  2416. -moz-box-sizing: border-box;
  2417. -webkit-box-sizing: border-box;
  2418. box-sizing: border-box;
  2419. float: right;
  2420. padding-left: 5.55556%;
  2421. padding-right: 5.55556%;
  2422. padding-right: 0;
  2423. width: 66.66667%;
  2424. }
  2425. .archive article:not(.apostrophe-2-featured) .entry-meta,
  2426. .blog article:not(.apostrophe-2-featured) .entry-meta,
  2427. .search article:not(.apostrophe-2-featured) .entry-meta {
  2428. margin-bottom: 5px;
  2429. }
  2430. .blog .apostrophe-2-featured .entry-meta {
  2431. margin-left: -5px;
  2432. margin-top: -33px;
  2433. margin-bottom: 10px;
  2434. }
  2435. .blog .apostrophe-2-featured .apostrophe-2-nothumb span:before {
  2436. margin-top: calc(25% - 32px);
  2437. }
  2438. /* Hide post status icons */
  2439. .entry-format::before {
  2440. display: none;
  2441. }
  2442. /* Hide extra navigation text on smaller screens */
  2443. .nav-previous .apostrophe-2-post-title,
  2444. .nav-next .apostrophe-2-post-title {
  2445. display: none;
  2446. }
  2447. /* Make sure sidebar clears properly */
  2448. #secondary {
  2449. clear: both;
  2450. }
  2451. }
  2452. /*--------------------------------------------------------------
  2453. 13.2 Slightly larger screens, between 768px and 1024px wide.
  2454. Primarily tablets and teensy desktops.
  2455. --------------------------------------------------------------*/
  2456. @media (min-width: 768px) {
  2457. #page {
  2458. padding: 3.0303%;
  2459. }
  2460. #masthead,
  2461. #colophon {
  2462. -moz-box-sizing: border-box;
  2463. -webkit-box-sizing: border-box;
  2464. box-sizing: border-box;
  2465. padding-left: 0.75758%;
  2466. padding-right: 0.75758%;
  2467. width: 100%;
  2468. }
  2469. #masthead:before,
  2470. #masthead:after,
  2471. #colophon:before,
  2472. #colophon:after {
  2473. content: "";
  2474. display: table;
  2475. }
  2476. #masthead:after,
  2477. #colophon:after {
  2478. clear: both;
  2479. }
  2480. /* Site logo */
  2481. .site-branding {
  2482. margin-bottom: 0;
  2483. }
  2484. .site-branding:before,
  2485. .site-branding:after {
  2486. content: "";
  2487. display: table;
  2488. }
  2489. .site-branding:after {
  2490. clear: both;
  2491. }
  2492. .custom-logo {
  2493. float: left;
  2494. margin-bottom: 1.51515%;
  2495. margin-right: 2.27273%;
  2496. }
  2497. .site-title,
  2498. .site-description,
  2499. .site-description {
  2500. clear: none;
  2501. }
  2502. .site-description {
  2503. padding-bottom: 1.51515%;
  2504. }
  2505. .custom-logo-link + .site-title,
  2506. .custom-logo-link + .site-description {
  2507. margin-top: 2.27273%;
  2508. }
  2509. /* Hide menu toggle */
  2510. .main-navigation .menu-toggle {
  2511. display: none;
  2512. }
  2513. /* Full-sized navigation bar; no need to be trendy */
  2514. .main-navigation {
  2515. margin: 0 0 3.0303%;
  2516. position: relative;
  2517. z-index: 100;
  2518. /* Sub-menus */
  2519. }
  2520. .main-navigation:before,
  2521. .main-navigation:after {
  2522. content: "";
  2523. display: table;
  2524. }
  2525. .main-navigation:after {
  2526. clear: both;
  2527. }
  2528. .main-navigation li {
  2529. float: left;
  2530. position: relative;
  2531. }
  2532. .main-navigation li :hover > a {
  2533. border-color: silver;
  2534. }
  2535. .main-navigation li a {
  2536. margin: -2px 3rem 0 0;
  2537. padding: 0.75rem 0 1.5rem;
  2538. }
  2539. .main-navigation ul ul {
  2540. background-color: #fff;
  2541. border-bottom: 4px solid #aaa;
  2542. border-top: 1px solid #eee;
  2543. box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  2544. float: left;
  2545. left: -999em;
  2546. min-width: 100%;
  2547. position: absolute;
  2548. top: 2em;
  2549. z-index: 99999;
  2550. }
  2551. .main-navigation ul ul ul {
  2552. left: -999em;
  2553. top: 0;
  2554. }
  2555. .main-navigation ul ul li {
  2556. float: none;
  2557. white-space: nowrap;
  2558. /* Show sub-sub menus */
  2559. }
  2560. .main-navigation ul ul li.menu-item-has-children > a:after {
  2561. -moz-transform: rotate(-90deg);
  2562. -ms-transform: rotate(-90deg);
  2563. -o-transform: rotate(-90deg);
  2564. -webkit-transform: rotate(-90deg);
  2565. transform: rotate(-90deg);
  2566. vertical-align: -4px;
  2567. }
  2568. .main-navigation ul ul li a {
  2569. border-top-width: 0;
  2570. margin: 0;
  2571. padding: 0.5em 1em;
  2572. }
  2573. .main-navigation ul ul li:hover > ul,
  2574. .main-navigation ul ul li.focus > ul {
  2575. left: 100%;
  2576. }
  2577. .main-navigation ul ul :hover > a {
  2578. background-color: #eee;
  2579. border-color: transparent;
  2580. }
  2581. .main-navigation li:hover > ul,
  2582. .main-navigation li.focus > ul {
  2583. left: auto;
  2584. }
  2585. .jetpack-social-navigation ul li a {
  2586. margin-left: 20px;
  2587. margin-right: 0;
  2588. }
  2589. /* Arrange posts into grid structure on archive pages */
  2590. .archive article,
  2591. .blog article,
  2592. .search article,
  2593. .blog article.apostrophe-2-featured:nth-child(4n+2),
  2594. .blog article.apostrophe-2-featured:nth-child(4n+3) {
  2595. -moz-box-sizing: border-box;
  2596. -webkit-box-sizing: border-box;
  2597. box-sizing: border-box;
  2598. float: left;
  2599. margin-bottom: 3.33333%;
  2600. padding-left: 1.11111%;
  2601. padding-right: 1.11111%;
  2602. width: 33.33333%;
  2603. }
  2604. .featured-content,
  2605. .featured-content article:nth-child(2n+3) {
  2606. clear: both;
  2607. overflow: hidden;
  2608. }
  2609. .archive article .entry-meta,
  2610. .blog article .entry-meta,
  2611. .search article .entry-meta {
  2612. margin: -33px 0 15px -5px;
  2613. }
  2614. .archive article.clear,
  2615. .blog article.clear,
  2616. .search article.clear {
  2617. clear: both;
  2618. }
  2619. .archive article .apostrophe-2-nothumb span:before,
  2620. .blog article .apostrophe-2-nothumb span:before,
  2621. .blog article.apostrophe-2-featured:nth-child(4n+3) .apostrophe-2-nothumb span:before,
  2622. .blog article.apostrophe-2-featured:nth-child(4n+2) .apostrophe-2-nothumb span:before,
  2623. .blog article .apostrophe-2-nothumb span:before,
  2624. .search article .apostrophe-2-nothumb span:before {
  2625. font-size: 128px;
  2626. font-size: 12.8rem;
  2627. margin-top: calc(50% - 64px);
  2628. }
  2629. .archive article.apostrophe-2-featured,
  2630. .blog article.apostrophe-2-featured,
  2631. .search article.apostrophe-2-featured {
  2632. -moz-box-sizing: border-box;
  2633. -webkit-box-sizing: border-box;
  2634. box-sizing: border-box;
  2635. float: left;
  2636. padding-left: 1.11111%;
  2637. padding-right: 1.11111%;
  2638. width: 66.66667%;
  2639. }
  2640. .archive article.apostrophe-2-featured .entry-header,
  2641. .blog article.apostrophe-2-featured .entry-header,
  2642. .search article.apostrophe-2-featured .entry-header {
  2643. display: inline-block;
  2644. margin-top: -1px;
  2645. /* Solves the 1px offset bug */
  2646. }
  2647. .archive article.apostrophe-2-featured .apostrophe-2-nothumb span:before,
  2648. .blog article.apostrophe-2-featured .apostrophe-2-nothumb span:before,
  2649. .search article.apostrophe-2-featured .apostrophe-2-nothumb span:before {
  2650. margin-top: calc(25% - 64px);
  2651. }
  2652. .blog .apostrophe-2-featured:nth-child(4n+2) .apostrophe-2-nothumb:before,
  2653. .blog .apostrophe-2-featured:nth-child(4n+3) .apostrophe-2-nothumb:before {
  2654. padding-top: 100%;
  2655. }
  2656. /* Use a two-column layout for the 404 page's widgets */
  2657. .error404 .page-content .apostrophe-2-widget-column:nth-of-type(odd) {
  2658. -moz-box-sizing: border-box;
  2659. -webkit-box-sizing: border-box;
  2660. box-sizing: border-box;
  2661. float: left;
  2662. padding-left: 1.11111%;
  2663. padding-left: 0;
  2664. padding-right: 1.11111%;
  2665. width: 46.66667%;
  2666. }
  2667. .error404 .page-content .apostrophe-2-widget-column:nth-of-type(even) {
  2668. -moz-box-sizing: border-box;
  2669. -webkit-box-sizing: border-box;
  2670. box-sizing: border-box;
  2671. float: right;
  2672. padding-left: 1.11111%;
  2673. padding-right: 1.11111%;
  2674. padding-right: 0;
  2675. width: 46.66667%;
  2676. }
  2677. /* Show search input and button on a single line */
  2678. .search-form label {
  2679. float: left;
  2680. width: 75%;
  2681. }
  2682. .search-form input[type="submit"] {
  2683. float: left;
  2684. margin: 0 0 0 1%;
  2685. width: 24%;
  2686. }
  2687. /* Make sure sidebar clears properly */
  2688. #secondary {
  2689. -moz-box-sizing: border-box;
  2690. -webkit-box-sizing: border-box;
  2691. box-sizing: border-box;
  2692. clear: both;
  2693. float: left;
  2694. width: 100%;
  2695. }
  2696. }
  2697. /* Sidebar widgets should appear in two columns, since we've got the space */
  2698. @media (min-width: 768px) and (max-width: 1023px) {
  2699. #secondary .widget {
  2700. float: left;
  2701. margin-right: 1.53846%;
  2702. width: 49.23077%;
  2703. }
  2704. #secondary .widget:nth-of-type(even) {
  2705. margin-right: 0;
  2706. }
  2707. }
  2708. /*--------------------------------------------------------------
  2709. 13.2 Still larger screens, 1024px wide and up.
  2710. Very large tablets in landscape mode and most desktops.
  2711. --------------------------------------------------------------*/
  2712. @media (min-width: 1024px) {
  2713. /* Use a two-column layout at this size (if we have an active sidebar) */
  2714. #primary {
  2715. -moz-box-sizing: border-box;
  2716. -webkit-box-sizing: border-box;
  2717. box-sizing: border-box;
  2718. float: left;
  2719. width: 68.18182%;
  2720. }
  2721. #primary:before,
  2722. #primary:after {
  2723. content: "";
  2724. display: table;
  2725. }
  2726. #primary:after {
  2727. clear: both;
  2728. }
  2729. #primary.full-width {
  2730. -moz-box-sizing: border-box;
  2731. -webkit-box-sizing: border-box;
  2732. box-sizing: border-box;
  2733. float: left;
  2734. padding-left: 0.75758%;
  2735. padding-right: 0.75758%;
  2736. width: 100%;
  2737. }
  2738. /* Allow the primary panel to span full width. */
  2739. .single.apostrophe-2-no-sidebar #primary,
  2740. .page.apostrophe-2-no-sidebar #primary {
  2741. float: none;
  2742. margin: 0 auto;
  2743. width: 730px;
  2744. }
  2745. .blog.apostrophe-2-no-sidebar #primary,
  2746. .archive.apostrophe-2-no-sidebar #primary,
  2747. .search.apostrophe-2-no-sidebar #primary {
  2748. width: 100%;
  2749. }
  2750. .apostrophe-2-no-sidebar #secondary {
  2751. display: none;
  2752. }
  2753. #secondary {
  2754. -moz-box-sizing: border-box;
  2755. -webkit-box-sizing: border-box;
  2756. box-sizing: border-box;
  2757. clear: none;
  2758. float: right;
  2759. padding-left: 0.75758%;
  2760. padding-right: 0.75758%;
  2761. width: 27.27273%;
  2762. }
  2763. /* Out-dent emphasized elements */
  2764. .emphasis {
  2765. margin: 2em 1em 2em -1em;
  2766. }
  2767. /* Pullquotes should move to the (empty) right-hand column on sidebar-less layouts */
  2768. .apostrophe-2-no-sidebar .pullquote {
  2769. position: absolute;
  2770. right: -50%;
  2771. width: 40%;
  2772. }
  2773. /* Show post status icon at left of post title */
  2774. .entry-format::before {
  2775. left: -46px;
  2776. right: auto;
  2777. }
  2778. }
  2779. /*--------------------------------------------------------------
  2780. 14.0 Print
  2781. --------------------------------------------------------------*/
  2782. @media print {
  2783. .entry-date {
  2784. display: block !important;
  2785. }
  2786. .entry-date > span,
  2787. .updated {
  2788. display: none !important;
  2789. }
  2790. }