style.css 83 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101
  1. /*
  2. Theme Name: Gazette
  3. Theme URI: https://wordpress.com/themes/gazette/
  4. Author: Automattic
  5. Author URI: https://wordpress.com/themes/
  6. Description: A clean and flexible theme perfectly suited for minimalist magazine-style sites, personal blogs, or any content-rich site. It allows you to highlight specific articles on the homepage, and to balance readability with a powerful use of photography — all in a layout that works on any device.
  7. Version: 1.1.8-wpcom
  8. License: GNU General Public License v2 or later
  9. License URI: http://www.gnu.org/licenses/gpl-2.0.html
  10. Text Domain: gazette
  11. Tags: author-bio, blog, blog-excerpts, blue, classic-menu, clean, collaboration, contemporary, custom-colors, custom-header, custom-menu, elegant, featured-images, flexible-header, food, gaming, geometric, grid-layout, infinite-scroll, journal, light, magazine, minimal, modern, news, post-formats, professional, responsive-layout, right-sidebar, rtl-language-support, simple, site-logo, sophisticated, sticky-post, theme-options, translation-ready, two-columns, white, featured-content-with-pages
  12. This theme, like WordPress, is licensed under the GPL.
  13. Use it to make something cool, have fun, and share what you've learned with others.
  14. Gazette is based on Underscores http://underscores.me/, (C) 2012-2017 Automattic, Inc.
  15. Normalizing styles have been helped along thanks to the fine work of
  16. Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
  17. */
  18. /*--------------------------------------------------------------
  19. >>> TABLE OF CONTENTS:
  20. ----------------------------------------------------------------
  21. # Normalize
  22. # Genericons
  23. # Typography
  24. # Elements
  25. # Forms
  26. # Navigation
  27. ## Links
  28. ## Primary Menu
  29. ## Social Menu
  30. ## Paging Navigation
  31. # Accessibility
  32. # Alignments
  33. # Clearings
  34. # Widgets
  35. # Content
  36. ## Grid
  37. ## Header
  38. ## Footer
  39. ## Featured Content
  40. ## Posts & Pages
  41. ## Post Formats
  42. ## Comments
  43. # Media
  44. ## Captions
  45. ## Galleries
  46. # Jetpack
  47. ## Contact Form
  48. ## Galleries
  49. ## Infinite Scroll
  50. ## PollDaddy
  51. ## Recipes
  52. ## Responsive Videos
  53. ## Sharedaddy
  54. ## Site Logo
  55. ## Widgets
  56. # Eventbrite
  57. # Transitions
  58. # Responsive
  59. ## x >= 600px
  60. ## x >= 768px
  61. ## x >= 840px
  62. ## x >= 960px
  63. ## x >= 1080px
  64. ## x >= 1380px
  65. --------------------------------------------------------------*/
  66. /*--------------------------------------------------------------
  67. # Normalize
  68. --------------------------------------------------------------*/
  69. html {
  70. font-family: sans-serif;
  71. -webkit-text-size-adjust: 100%;
  72. -ms-text-size-adjust: 100%;
  73. }
  74. body {
  75. margin: 0;
  76. }
  77. article,
  78. aside,
  79. details,
  80. figcaption,
  81. figure,
  82. footer,
  83. header,
  84. main,
  85. menu,
  86. nav,
  87. section,
  88. summary {
  89. display: block;
  90. }
  91. audio,
  92. canvas,
  93. progress,
  94. video {
  95. display: inline-block;
  96. vertical-align: baseline;
  97. }
  98. audio:not([controls]) {
  99. display: none;
  100. height: 0;
  101. }
  102. [hidden],
  103. template {
  104. display: none;
  105. }
  106. a {
  107. background-color: transparent;
  108. }
  109. a:active,
  110. a:hover {
  111. outline: 0;
  112. }
  113. abbr[title] {
  114. border-bottom: 1px dotted;
  115. }
  116. b,
  117. strong {
  118. font-weight: bold;
  119. }
  120. dfn {
  121. font-style: italic;
  122. }
  123. div:focus {
  124. outline: none;
  125. }
  126. h1 {
  127. font-size: 2em;
  128. margin: 0.67em 0;
  129. }
  130. mark {
  131. background: #ff0;
  132. color: #000;
  133. }
  134. small {
  135. font-size: 80%;
  136. }
  137. sub,
  138. sup {
  139. font-size: 75%;
  140. line-height: 0;
  141. position: relative;
  142. vertical-align: baseline;
  143. }
  144. sup {
  145. top: -0.5em;
  146. }
  147. sub {
  148. bottom: -0.25em;
  149. }
  150. img {
  151. border: 0;
  152. }
  153. svg:not(:root) {
  154. overflow: hidden;
  155. }
  156. figure {
  157. margin: 0 0 30px;
  158. }
  159. hr {
  160. box-sizing: content-box;
  161. height: 0;
  162. }
  163. pre {
  164. overflow: auto;
  165. }
  166. code,
  167. kbd,
  168. pre,
  169. samp {
  170. font-family: monospace, monospace;
  171. font-size: 1em;
  172. }
  173. button,
  174. input,
  175. optgroup,
  176. select,
  177. textarea {
  178. color: inherit;
  179. font: inherit;
  180. margin: 0;
  181. }
  182. button {
  183. overflow: visible;
  184. }
  185. button,
  186. select {
  187. text-transform: none;
  188. }
  189. button,
  190. html input[type="button"],
  191. input[type="reset"],
  192. input[type="submit"] {
  193. -webkit-appearance: button;
  194. cursor: pointer;
  195. }
  196. button[disabled],
  197. html input[disabled] {
  198. cursor: default;
  199. }
  200. button::-moz-focus-inner,
  201. input::-moz-focus-inner {
  202. border: 0;
  203. padding: 0;
  204. }
  205. input {
  206. line-height: normal;
  207. }
  208. input[type="checkbox"],
  209. input[type="radio"] {
  210. box-sizing: border-box;
  211. padding: 0;
  212. }
  213. input[type="number"]::-webkit-inner-spin-button,
  214. input[type="number"]::-webkit-outer-spin-button {
  215. height: auto;
  216. }
  217. input[type="search"] {
  218. -webkit-appearance: textfield;
  219. box-sizing: content-box;
  220. }
  221. input[type="search"]::-webkit-search-cancel-button,
  222. input[type="search"]::-webkit-search-decoration {
  223. -webkit-appearance: none;
  224. }
  225. fieldset {
  226. border: 1px solid #c0c0c0;
  227. margin: 0 2px;
  228. padding: 0.35em 0.625em 0.75em;
  229. }
  230. legend {
  231. border: 0;
  232. padding: 0;
  233. }
  234. textarea {
  235. overflow: auto;
  236. }
  237. optgroup {
  238. font-weight: bold;
  239. }
  240. table {
  241. border-collapse: collapse;
  242. border-spacing: 0;
  243. }
  244. td,
  245. th {
  246. padding: 0;
  247. }
  248. /*--------------------------------------------------------------
  249. # Genericons
  250. --------------------------------------------------------------*/
  251. blockquote:before,
  252. .back-top:before,
  253. .comment-navigation .nav-next a:after,
  254. .comment-navigation .nav-previous a:before,
  255. .dropdown-toggle:before,
  256. .main-navigation .menu-item-has-children > a:after,
  257. .menu-toggle:before,
  258. .posts-navigation .nav-next a:after,
  259. .posts-navigation .nav-previous a:before,
  260. .search-form:before,
  261. .search-toggle:before,
  262. .sidebar-toggle:before,
  263. .social-navigation a:before {
  264. -webkit-font-smoothing: antialiased;
  265. -moz-osx-font-smoothing: grayscale;
  266. display: inline-block;
  267. font-family: Genericons;
  268. font-size: 24px;
  269. font-style: normal;
  270. font-weight: normal;
  271. height: 30px;
  272. line-height: 1.25;
  273. speak: none;
  274. text-decoration: inherit;
  275. vertical-align: top;
  276. width: 30px;
  277. }
  278. /*--------------------------------------------------------------
  279. # Typography
  280. --------------------------------------------------------------*/
  281. body,
  282. button,
  283. input,
  284. select,
  285. textarea {
  286. color: #222;
  287. font-family: Lora, serif;
  288. font-size: 16px;
  289. }
  290. body {
  291. line-height: 1.5;
  292. }
  293. button,
  294. input,
  295. select,
  296. textarea {
  297. color: #222;
  298. font-family: Lora, serif;
  299. font-size: 16px;
  300. line-height: 1.875;
  301. }
  302. h1,
  303. h2,
  304. h3,
  305. h4,
  306. h5,
  307. h6 {
  308. clear: both;
  309. font-family: Lato, sans-serif;
  310. font-weight: 900;
  311. margin-top: 0;
  312. }
  313. h1 {
  314. font-size: 49px;
  315. line-height: 1.225;
  316. margin-bottom: 30px;
  317. }
  318. h2 {
  319. font-size: 39px;
  320. line-height: 1.54;
  321. margin-bottom: 30px;
  322. }
  323. h3 {
  324. font-size: 31px;
  325. line-height: 1.452;
  326. margin-bottom: 30px;
  327. }
  328. h4 {
  329. font-size: 25px;
  330. line-height: 1.2;
  331. margin-bottom: 30px;
  332. }
  333. h5 {
  334. font-size: 20px;
  335. line-height: 1.5;
  336. margin-bottom: 30px;
  337. }
  338. h6 {
  339. font-size: 16px;
  340. line-height: 1.5;
  341. margin-bottom: 30px;
  342. }
  343. h1 a,
  344. h2 a,
  345. h3 a,
  346. h4 a,
  347. h5 a,
  348. h6 a {
  349. font-weight: inherit;
  350. }
  351. p {
  352. margin-top: 0;
  353. margin-bottom: 30px;
  354. }
  355. dfn,
  356. cite,
  357. em,
  358. i {
  359. font-style: italic;
  360. }
  361. blockquote:before,
  362. blockquote:after,
  363. q:before,
  364. q:after {
  365. content: "";
  366. }
  367. blockquote,
  368. q {
  369. quotes: "" "";
  370. }
  371. blockquote {
  372. color: #555;
  373. font-style: italic;
  374. margin: 0 0 30px;
  375. padding: 0;
  376. position: relative;
  377. }
  378. blockquote:before {
  379. color: #ddd;
  380. content: "\f106";
  381. float: left;
  382. }
  383. blockquote * {
  384. margin-bottom: 0;
  385. }
  386. blockquote blockquote {
  387. margin-left: 30px;
  388. margin-top: 30px;
  389. }
  390. cite {
  391. font-family: Lato, sans-serif;
  392. font-size: 16px;
  393. font-style: normal;
  394. font-weight: bold;
  395. line-height: 1.5;
  396. }
  397. address {
  398. margin: 0 0 30px;
  399. }
  400. code,
  401. kbd,
  402. pre,
  403. tt,
  404. var {
  405. font-family: Inconsolata, monospace;
  406. }
  407. pre {
  408. background: #eee;
  409. border-left: 2px solid #3863c1;
  410. max-width: 100%;
  411. overflow: auto;
  412. padding: 30px;
  413. }
  414. abbr,
  415. acronym {
  416. border-bottom: 1px dotted #222;
  417. cursor: help;
  418. }
  419. mark,
  420. ins {
  421. background: #3863c1;
  422. color: #fff;
  423. padding: 0 0.2em;
  424. text-decoration: none;
  425. }
  426. big {
  427. font-size: 125%;
  428. }
  429. /*--------------------------------------------------------------
  430. # Elements
  431. --------------------------------------------------------------*/
  432. html {
  433. box-sizing: border-box;
  434. }
  435. *,
  436. *:before,
  437. *:after {
  438. box-sizing: inherit;
  439. }
  440. body {
  441. background: #fff;
  442. }
  443. hr {
  444. background-color: #ddd;
  445. border: 0;
  446. height: 1px;
  447. margin-bottom: 30px;
  448. }
  449. ul,
  450. ol {
  451. margin: 0 0 30px 0;
  452. padding: 0;
  453. }
  454. ul {
  455. list-style: square inside;
  456. }
  457. ol {
  458. list-style: decimal inside;
  459. }
  460. li > ul,
  461. li > ol {
  462. margin-bottom: 0;
  463. margin-left: 30px;
  464. }
  465. dl {
  466. margin: 0;
  467. }
  468. dt {
  469. font-weight: bold;
  470. }
  471. dd {
  472. margin: 0 0 30px;
  473. }
  474. img {
  475. height: auto;
  476. max-width: 100%;
  477. }
  478. table {
  479. border-top: 1px solid #ddd;
  480. margin: 0 0 30px;
  481. text-align: left;
  482. width: 100%;
  483. }
  484. caption,
  485. th {
  486. font-family: Lato, sans-serif;
  487. font-weight: bold;
  488. text-transform: uppercase;
  489. }
  490. caption {
  491. color: #777;
  492. }
  493. th,
  494. td {
  495. border-bottom: 1px solid #ddd;
  496. padding: 5px;
  497. }
  498. thead {
  499. background: #eee;
  500. }
  501. /*--------------------------------------------------------------
  502. # Forms
  503. --------------------------------------------------------------*/
  504. button,
  505. input[type="button"],
  506. input[type="reset"],
  507. input[type="submit"] {
  508. background: #3863c1;
  509. border: 2px solid #3863c1;
  510. border-radius: 0;
  511. color: #fff;
  512. font-family: Lato, sans-serif;
  513. font-weight: bold;
  514. padding: 5.5px 13px;
  515. text-transform: uppercase;
  516. }
  517. button:active,
  518. input[type="button"]:active,
  519. input[type="reset"]:active,
  520. input[type="submit"]:active,
  521. button:focus,
  522. input[type="button"]:focus,
  523. input[type="reset"]:focus,
  524. input[type="submit"]:focus,
  525. button:hover,
  526. input[type="button"]:hover,
  527. input[type="reset"]:hover,
  528. input[type="submit"]:hover {
  529. background: #fff;
  530. color: #3863c1;
  531. outline: none;
  532. }
  533. input[type="text"],
  534. input[type="email"],
  535. input[type="url"],
  536. input[type="password"],
  537. input[type="search"],
  538. textarea {
  539. border: 1px solid #ddd;
  540. border-radius: 0;
  541. box-sizing: border-box;
  542. padding: 7.5px;
  543. width: 100%;
  544. }
  545. input[type="text"]:focus,
  546. input[type="email"]:focus,
  547. input[type="url"]:focus,
  548. input[type="password"]:focus,
  549. input[type="search"]:focus,
  550. textarea:focus {
  551. box-shadow: inset 0 0 15px rgba(0, 0, 0, 0.075);
  552. outline: none;
  553. }
  554. /* Placeholder */
  555. ::input-placeholder {
  556. color: #222;
  557. }
  558. ::-webkit-input-placeholder {
  559. color: #222;
  560. }
  561. :-moz-placeholder {
  562. color: #222;
  563. opacity: 1;
  564. }
  565. ::-moz-placeholder {
  566. color: #222;
  567. opacity: 1;
  568. }
  569. :-ms-input-placeholder {
  570. color: #222;
  571. }
  572. /* Password Protected */
  573. .post-password-form input[type="submit"] {
  574. margin-top: 30px;
  575. }
  576. /*--------------------------------------------------------------
  577. # Navigation
  578. --------------------------------------------------------------*/
  579. /*--------------------------------------------------------------
  580. ## Links
  581. --------------------------------------------------------------*/
  582. a {
  583. color: #3863c1;
  584. font-weight: bold;
  585. text-decoration: none;
  586. }
  587. a:active,
  588. a:focus,
  589. a:hover {
  590. color: inherit;
  591. outline: none;
  592. }
  593. a:focus {
  594. background-color: #eee;
  595. }
  596. a:visited {
  597. font-weight: normal;
  598. }
  599. /*--------------------------------------------------------------
  600. ## Primary Menu
  601. --------------------------------------------------------------*/
  602. /* Menu Toggle */
  603. .menu-toggle {
  604. background: #fff;
  605. border: 1px solid #ddd;
  606. color: #3863c1;
  607. height: 62px;
  608. margin-top: -31px;
  609. padding: 0;
  610. position: absolute;
  611. right: 0;
  612. top: 50%;
  613. width: 60px;
  614. z-index: 2;
  615. }
  616. .menu-toggle:active,
  617. .menu-toggle:focus,
  618. .menu-toggle:hover {
  619. background: #eee;
  620. border-color: #ddd;
  621. color: #3863c1;
  622. }
  623. .menu-toggle:before {
  624. content: "\f419";
  625. font-size: 16px;
  626. height: 60px;
  627. line-height: 60px;
  628. }
  629. .toggled .menu-toggle:before {
  630. content: "\f406";
  631. }
  632. /* Dropdown Toggle */
  633. .dropdown-toggle {
  634. background: #fff;
  635. border: 1px solid #ddd;
  636. color: #3863c1;
  637. height: 30px;
  638. margin-top: -15px;
  639. padding: 0;
  640. position: absolute;
  641. right: 0;
  642. top: 50%;
  643. width: 30px;
  644. z-index: 1;
  645. }
  646. .dropdown-toggle:active,
  647. .dropdown-toggle:focus,
  648. .dropdown-toggle:hover {
  649. background: #eee;
  650. border-color: #ddd;
  651. color: #3863c1;
  652. }
  653. .dropdown-toggle:before {
  654. content: "\f431";
  655. font-size: 16px;
  656. height: 28px;
  657. line-height: 28px;
  658. width: 28px;
  659. }
  660. .dropdown-toggle.toggled:before {
  661. content: "\f432";
  662. }
  663. /* Main Navigation */
  664. .main-navigation {
  665. font-family: Lato, sans-serif;
  666. font-size: 16px;
  667. line-height: 1.875;
  668. margin: 0;
  669. z-index: 1;
  670. }
  671. .main-navigation > div {
  672. display: none;
  673. }
  674. .main-navigation.toggled > div {
  675. background: #fff;
  676. border: 1px solid #ddd;
  677. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.075);
  678. display: block;
  679. position: absolute;
  680. top: 100%;
  681. margin-top: 15px;
  682. width: 100%;
  683. left: 0;
  684. padding: 30px;
  685. z-index: 9998;
  686. }
  687. .main-navigation ul {
  688. border-bottom: 1px solid #eee;
  689. list-style: none;
  690. margin: 0;
  691. padding-left: 0;
  692. }
  693. .main-navigation li {
  694. border-top: 1px solid #eee;
  695. padding-bottom: 7.5px;
  696. padding-top: 7.5px;
  697. position: relative;
  698. }
  699. .main-navigation ul ul {
  700. display: none;
  701. }
  702. .main-navigation ul.toggled {
  703. border-bottom: 0;
  704. display: block;
  705. margin-bottom: -7.5px;
  706. margin-top: 7.5px;
  707. padding-left: 30px;
  708. }
  709. .main-navigation a {
  710. color: #222;
  711. display: block;
  712. text-decoration: none;
  713. }
  714. .main-navigation a:active,
  715. .main-navigation a:focus,
  716. .main-navigation a:hover {
  717. color: #3863c1;
  718. }
  719. .main-navigation .page_item_has_children > a,
  720. .main-navigation .menu-item-has-children > a {
  721. padding-right: 45px;
  722. position: relative;
  723. }
  724. .main-navigation .current_page_item > a,
  725. .main-navigation .current-menu-item > a,
  726. .main-navigation .current_page_ancestor > a {
  727. color: #3863c1;
  728. }
  729. /*--------------------------------------------------------------
  730. ## Social Menu
  731. --------------------------------------------------------------*/
  732. .social-navigation {
  733. border-bottom: 1px solid #eee;
  734. display: block;
  735. margin-bottom: 15px;
  736. padding-bottom: 15px;
  737. text-align: center;
  738. }
  739. .social-navigation ul {
  740. display: block;
  741. margin: 0;
  742. padding: 0;
  743. }
  744. .social-navigation li {
  745. display: block;
  746. float: left;
  747. margin: 0 5px;
  748. line-height: 1;
  749. }
  750. .social-navigation li:first-child {
  751. margin-left: 0;
  752. }
  753. .social-navigation li:last-child {
  754. margin-right: 0;
  755. }
  756. .social-navigation a {
  757. display: block;
  758. position: relative;
  759. width: 24px;
  760. height: 24px;
  761. color: #777;
  762. }
  763. .social-navigation a:before {
  764. height: 24px;
  765. font-size: 24px;
  766. line-height: 24px;
  767. width: 24px;
  768. }
  769. .social-navigation a:active,
  770. .social-navigation a:focus,
  771. .social-navigation a:hover {
  772. color: #3863c1;
  773. }
  774. .social-navigation a:focus {
  775. outline: none;
  776. }
  777. .social-navigation a:before {
  778. content: "\f415";
  779. }
  780. .social-navigation .page_item_has_children > a,
  781. .social-navigation .menu-item-has-children > a {
  782. padding-right: 0;
  783. }
  784. /* CodePen */
  785. .social-navigation a[href*="codepen.io"]:before {
  786. content: "\f216";
  787. }
  788. .social-navigation a[href*="codepen.io"]:active:before,
  789. .social-navigation a[href*="codepen.io"]:focus:before,
  790. .social-navigation a[href*="codepen.io"]:hover:before {
  791. color: #000;
  792. }
  793. /* Digg */
  794. .social-navigation a[href*="digg.com"]:before {
  795. content: "\f221";
  796. }
  797. .social-navigation a[href*="digg.com"]:active:before,
  798. .social-navigation a[href*="digg.com"]:focus:before,
  799. .social-navigation a[href*="digg.com"]:hover:before {
  800. color: #0093cc;
  801. }
  802. /* Dribbble */
  803. .social-navigation a[href*="dribbble.com"]:before {
  804. content: "\f201";
  805. }
  806. .social-navigation a[href*="dribbble.com"]:active:before,
  807. .social-navigation a[href*="dribbble.com"]:focus:before,
  808. .social-navigation a[href*="dribbble.com"]:hover:before {
  809. color: #ea4c89;
  810. }
  811. /* Dropbox */
  812. .social-navigation a[href*="dropbox.com"]:before {
  813. content: "\f225";
  814. }
  815. .social-navigation a[href*="dropbox.com"]:active:before,
  816. .social-navigation a[href*="dropbox.com"]:focus:before,
  817. .social-navigation a[href*="dropbox.com"]:hover:before {
  818. color: #007ee5;
  819. }
  820. /* Email */
  821. .social-navigation a[href*="mailto:"]:before {
  822. content: "\f410";
  823. }
  824. /* Facebook */
  825. .social-navigation a[href*="facebook.com"]:before {
  826. content: "\f203";
  827. }
  828. .social-navigation a[href*="facebook.com"]:active:before,
  829. .social-navigation a[href*="facebook.com"]:focus:before,
  830. .social-navigation a[href*="facebook.com"]:hover:before {
  831. color: #3b5998;
  832. }
  833. /* Flickr */
  834. .social-navigation a[href*="flickr.com"]:before {
  835. content: "\f211";
  836. }
  837. .social-navigation a[href*="flickr.com"]:active:before,
  838. .social-navigation a[href*="flickr.com"]:focus:before,
  839. .social-navigation a[href*="flickr.com"]:hover:before {
  840. color: #0063dc;
  841. }
  842. /* Foursquare */
  843. .social-navigation a[href*="foursquare.com"]:before {
  844. content: "\f226";
  845. }
  846. .social-navigation a[href*="foursquare.com"]:active:before,
  847. .social-navigation a[href*="foursquare.com"]:focus:before,
  848. .social-navigation a[href*="foursquare.com"]:hover:before {
  849. color: #ef4b78;
  850. }
  851. /* GitHub */
  852. .social-navigation a[href*="github.com"]:before {
  853. content: "\f200";
  854. }
  855. .social-navigation a[href*="github.com"]:active:before,
  856. .social-navigation a[href*="github.com"]:focus:before,
  857. .social-navigation a[href*="github.com"]:hover:before {
  858. color: #4183c4;
  859. }
  860. /* Google Plus */
  861. .social-navigation a[href*="plus.google.com"]:before {
  862. content: "\f206";
  863. }
  864. .social-navigation a[href*="plus.google.com"]:active:before,
  865. .social-navigation a[href*="plus.google.com"]:focus:before,
  866. .social-navigation a[href*="plus.google.com"]:hover:before {
  867. color: #dd4b39;
  868. }
  869. /* Instagram */
  870. .social-navigation a[href*="instagram.com"]:before {
  871. content: "\f215";
  872. }
  873. .social-navigation a[href*="instagram.com"]:active:before,
  874. .social-navigation a[href*="instagram.com"]:focus:before,
  875. .social-navigation a[href*="instagram.com"]:hover:before {
  876. color: #3f729b;
  877. }
  878. /* LinkedIn */
  879. .social-navigation a[href*="linkedin.com"]:before {
  880. content: "\f208";
  881. }
  882. .social-navigation a[href*="linkedin.com"]:active:before,
  883. .social-navigation a[href*="linkedin.com"]:focus:before,
  884. .social-navigation a[href*="linkedin.com"]:hover:before {
  885. color: #0976b4;
  886. }
  887. /* Path */
  888. .social-navigation a[href*="path.com"]:before {
  889. content: "\f219";
  890. }
  891. .social-navigation a[href*="path.com"]:active:before,
  892. .social-navigation a[href*="path.com"]:focus:before,
  893. .social-navigation a[href*="path.com"]:hover:before {
  894. color: #ee3423;
  895. }
  896. /* Pinterest */
  897. .social-navigation a[href*="pinterest."]:before {
  898. content: "\f210";
  899. }
  900. .social-navigation a[href*="pinterest."]:active:before,
  901. .social-navigation a[href*="pinterest."]:focus:before,
  902. .social-navigation a[href*="pinterest."]:hover:before {
  903. color: #cc2127;
  904. }
  905. /* Polldaddy */
  906. .social-navigation a[href*="polldaddy.com"]:before {
  907. content: "\f217";
  908. }
  909. .social-navigation a[href*="polldaddy.com"]:active:before,
  910. .social-navigation a[href*="polldaddy.com"]:focus:before,
  911. .social-navigation a[href*="polldaddy.com"]:hover:before {
  912. color: #bc0b0b;
  913. }
  914. /* Reddit */
  915. .social-navigation a[href*="reddit.com"]:before {
  916. content: "\f222";
  917. }
  918. .social-navigation a[href*="reddit.com"]:active:before,
  919. .social-navigation a[href*="reddit.com"]:focus:before,
  920. .social-navigation a[href*="reddit.com"]:hover:before {
  921. color: #ff4500;
  922. }
  923. /* RSS Feed */
  924. .social-navigation a[href$="/feed/"]:before {
  925. content: "\f413";
  926. }
  927. .social-navigation a[href$="/feed/"]:active:before,
  928. .social-navigation a[href$="/feed/"]:focus:before,
  929. .social-navigation a[href$="/feed/"]:hover:before {
  930. color: #f26522;
  931. }
  932. /* Spotify */
  933. .social-navigation a[href*="spotify.com"]:before {
  934. content: "\f515";
  935. }
  936. .social-navigation a[href*="spotify.com"]:active:before,
  937. .social-navigation a[href*="spotify.com"]:focus:before,
  938. .social-navigation a[href*="spotify.com"]:hover:before {
  939. color: #7ab800;
  940. }
  941. /* StumbleUpon */
  942. .social-navigation a[href*="stumbleupon.com"]:before {
  943. content: "\f223";
  944. }
  945. .social-navigation a[href*="stumbleupon.com"]:active:before,
  946. .social-navigation a[href*="stumbleupon.com"]:focus:before,
  947. .social-navigation a[href*="stumbleupon.com"]:hover:before {
  948. color: #eb4924;
  949. }
  950. /* Tumblr */
  951. .social-navigation a[href*="tumblr.com"]:before {
  952. content: "\f214";
  953. }
  954. .social-navigation a[href*="tumblr.com"]:active:before,
  955. .social-navigation a[href*="tumblr.com"]:focus:before,
  956. .social-navigation a[href*="tumblr.com"]:hover:before {
  957. color: #35465c;
  958. }
  959. /* Twitch */
  960. .social-navigation a[href*="twitch.tv"]:before {
  961. content: "\f516";
  962. }
  963. .social-navigation a[href*="twitch.tv"]:active:before,
  964. .social-navigation a[href*="twitch.tv"]:focus:before,
  965. .social-navigation a[href*="twitch.tv"]:hover:before {
  966. color: #6441a5;
  967. }
  968. /* Twitter */
  969. .social-navigation a[href*="twitter.com"]:before {
  970. content: "\f202";
  971. }
  972. .social-navigation a[href*="twitter.com"]:active:before,
  973. .social-navigation a[href*="twitter.com"]:focus:before,
  974. .social-navigation a[href*="twitter.com"]:hover:before {
  975. color: #55acee;
  976. }
  977. /* Vimeo */
  978. .social-navigation a[href*="vimeo.com"]:before {
  979. content: "\f212";
  980. }
  981. .social-navigation a[href*="vimeo.com"]:active:before,
  982. .social-navigation a[href*="vimeo.com"]:focus:before,
  983. .social-navigation a[href*="vimeo.com"]:hover:before {
  984. color: #1ab7ea;
  985. }
  986. /* Vine */
  987. .social-navigation a[href*="vine.co"]:before {
  988. content: "\f517";
  989. }
  990. .social-navigation a[href*="vine.co"]:active:before,
  991. .social-navigation a[href*="vine.co"]:focus:before,
  992. .social-navigation a[href*="vine.co"]:hover:before {
  993. color: #00b488;
  994. }
  995. /* WordPress */
  996. .social-navigation a[href*="wordpress.com"]:before,
  997. .social-navigation a[href*="wordpress.org"]:before {
  998. content: "\f205";
  999. }
  1000. .social-navigation a[href*="wordpress.com"]:active:before,
  1001. .social-navigation a[href*="wordpress.com"]:focus:before,
  1002. .social-navigation a[href*="wordpress.com"]:hover:before {
  1003. color: #0085be;
  1004. }
  1005. .social-navigation a[href*="wordpress.org"]:active:before,
  1006. .social-navigation a[href*="wordpress.org"]:focus:before,
  1007. .social-navigation a[href*="wordpress.org"]:hover:before {
  1008. color: #21759b;
  1009. }
  1010. /* YouTube */
  1011. .social-navigation a[href*="youtube.com"]:before {
  1012. content: "\f213";
  1013. }
  1014. .social-navigation a[href*="youtube.com"]:active:before,
  1015. .social-navigation a[href*="youtube.com"]:focus:before,
  1016. .social-navigation a[href*="youtube.com"]:hover:before {
  1017. color: #e52d27;
  1018. }
  1019. /*--------------------------------------------------------------
  1020. ## Paging Navigation
  1021. --------------------------------------------------------------*/
  1022. .comment-navigation,
  1023. .post-navigation,
  1024. .posts-navigation {
  1025. clear: both;
  1026. font-family: Lato, sans-serif;
  1027. margin: 0 0 30px;
  1028. overflow: hidden;
  1029. }
  1030. .posts-navigation {
  1031. border-top: 1px solid #eee;
  1032. padding: 30px 0 0;
  1033. }
  1034. .comment-navigation .meta-nav {
  1035. display: none;
  1036. }
  1037. .comment-navigation + .comment-respond {
  1038. border-top: 1px solid #ddd;
  1039. padding-top: 30px;
  1040. position: relative;
  1041. }
  1042. .comment-navigation a,
  1043. .posts-navigation a {
  1044. background: #fff;
  1045. border: 2px solid #eee;
  1046. color: #3863c1;
  1047. display: inline-block;
  1048. font-size: 16px;
  1049. line-height: 1.875;
  1050. padding: 5.5px 13px;
  1051. text-transform: uppercase;
  1052. }
  1053. .post-navigation a {
  1054. border: 1px solid #eee;
  1055. color: #222;
  1056. display: block;
  1057. padding: 30px;
  1058. }
  1059. .post-navigation a:active,
  1060. .post-navigation a:focus,
  1061. .post-navigation a:hover {
  1062. background-color: #eee;
  1063. }
  1064. .post-navigation .nav-previous + .nav-next a {
  1065. border-top: 0;
  1066. }
  1067. .post-navigation .nav-next,
  1068. .post-navigation .nav-previous {
  1069. background-position: 50% 50%;
  1070. background-repeat: no-repeat;
  1071. background-size: cover;
  1072. position: relative;
  1073. }
  1074. .post-navigation .meta-nav {
  1075. color: #777;
  1076. display: block;
  1077. font-size: 16px;
  1078. line-height: 1.875;
  1079. text-transform: uppercase;
  1080. }
  1081. .post-navigation .post-title {
  1082. font-size: 25px;
  1083. font-weight: 900;
  1084. line-height: 1.2;
  1085. }
  1086. .post-navigation a:active .post-title,
  1087. .post-navigation a:focus .post-title,
  1088. .post-navigation a:hover .post-title {
  1089. color: #3863c1;
  1090. }
  1091. .comment-navigation a:active,
  1092. .comment-navigation a:focus,
  1093. .comment-navigation a:hover,
  1094. .posts-navigation a:active,
  1095. .posts-navigation a:focus,
  1096. .posts-navigation a:hover {
  1097. background: #3863c1;
  1098. border-color: #3863c1;
  1099. color: #fff;
  1100. }
  1101. .comment-navigation .nav-previous,
  1102. .posts-navigation .nav-previous {
  1103. float: left;
  1104. width: 50%;
  1105. }
  1106. .comment-navigation .nav-next,
  1107. .posts-navigation .nav-next {
  1108. float: right;
  1109. text-align: right;
  1110. width: 50%;
  1111. }
  1112. /*--------------------------------------------------------------
  1113. # Accessibility
  1114. --------------------------------------------------------------*/
  1115. .screen-reader-text {
  1116. clip: rect(1px, 1px, 1px, 1px);
  1117. position: absolute !important;
  1118. height: 1px;
  1119. width: 1px;
  1120. overflow: hidden;
  1121. }
  1122. .screen-reader-text:focus {
  1123. background-color: #fff;
  1124. border-radius: 0;
  1125. box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.7);
  1126. clip: auto !important;
  1127. color: #21759b;
  1128. display: block;
  1129. font-size: 14px;
  1130. font-size: 0.875rem;
  1131. font-weight: bold;
  1132. height: auto;
  1133. left: 5px;
  1134. line-height: normal;
  1135. padding: 15px 23px 14px;
  1136. text-decoration: none;
  1137. top: 5px;
  1138. width: auto;
  1139. z-index: 100000;
  1140. }
  1141. /*--------------------------------------------------------------
  1142. # Alignments
  1143. --------------------------------------------------------------*/
  1144. .alignleft {
  1145. display: inline;
  1146. float: left;
  1147. margin-right: 30px;
  1148. }
  1149. .alignright {
  1150. display: inline;
  1151. float: right;
  1152. margin-left: 30px;
  1153. }
  1154. .aligncenter {
  1155. clear: both;
  1156. display: block;
  1157. margin-left: auto;
  1158. margin-right: auto;
  1159. }
  1160. /*--------------------------------------------------------------
  1161. # Clearings
  1162. --------------------------------------------------------------*/
  1163. .author-info:before,
  1164. .author-info:after,
  1165. .clear:before,
  1166. .clear:after,
  1167. .comment-content:before,
  1168. .comment-content:after,
  1169. .comment-meta:before,
  1170. .comment-meta:after,
  1171. .entry-content:before,
  1172. .entry-content:after,
  1173. .entry-meta:before,
  1174. .entry-meta:after,
  1175. .featured-content:before,
  1176. .featured-content:after,
  1177. .footer-widget:before,
  1178. .footer-widget:after,
  1179. .hentry:before,
  1180. .hentry:after,
  1181. .main-navigation ul:before,
  1182. .main-navigation ul:after,
  1183. .sd-block:before,
  1184. .sd-block:after,
  1185. .sharedaddy:before,
  1186. .sharedaddy:after,
  1187. .site-header:before,
  1188. .site-header:after,
  1189. .site-header-inner:before,
  1190. .site-header-inner:after,
  1191. .site-content:before,
  1192. .site-content:after,
  1193. .site-content-inner:before,
  1194. .site-content-inner:after,
  1195. .site-footer:before,
  1196. .site-footer:after,
  1197. .social-navigation > div:before,
  1198. .social-navigation > div:after {
  1199. content: "";
  1200. display: table;
  1201. }
  1202. .author-info:after,
  1203. .clear:after,
  1204. .comment-content:after,
  1205. .comment-meta:after,
  1206. .entry-content:after,
  1207. .entry-meta:after,
  1208. .featured-content:after,
  1209. .footer-widget:after,
  1210. .hentry:after,
  1211. .main-navigation ul:after,
  1212. .sd-block:after,
  1213. .sharedaddy:after,
  1214. .site-header:after,
  1215. .site-header-inner:after,
  1216. .site-content:after,
  1217. .site-content-inner:after,
  1218. .site-footer:after,
  1219. .social-navigation > div:after {
  1220. clear: both;
  1221. }
  1222. /*--------------------------------------------------------------
  1223. # Widgets
  1224. --------------------------------------------------------------*/
  1225. .widget {
  1226. font-size: 16px;
  1227. line-height: 1.5;
  1228. margin: 0;
  1229. padding: 0;
  1230. word-break: break-word;
  1231. }
  1232. .widget-title,
  1233. .widgettitle {
  1234. font-size: 25px;
  1235. line-height: 1.2;
  1236. margin-bottom: 30px;
  1237. }
  1238. .widget select {
  1239. margin-bottom: 30px;
  1240. max-width: 100%;
  1241. }
  1242. /* Sidebar Toggle */
  1243. .sidebar-toggle {
  1244. background: #fff;
  1245. border: 1px solid #ddd;
  1246. color: #3863c1;
  1247. height: 45px;
  1248. left: 50%;
  1249. margin-left: -22.5px;
  1250. margin-top: -22.5px;
  1251. padding: 0;
  1252. position: absolute;
  1253. width: 45px;
  1254. z-index: 1;
  1255. }
  1256. .sidebar-toggle:active,
  1257. .sidebar-toggle:focus,
  1258. .sidebar-toggle:hover {
  1259. background: #eee;
  1260. border-color: #ddd;
  1261. color: #3863c1;
  1262. }
  1263. .sidebar-toggle:before {
  1264. content: "\f476";
  1265. font-size: 16px;
  1266. height: 43px;
  1267. line-height: 43px;
  1268. width: 43px;
  1269. }
  1270. .toggled.sidebar-toggle:before {
  1271. content: "\f406";
  1272. }
  1273. .widget-area {
  1274. display: none;
  1275. }
  1276. .toggled.widget-area {
  1277. display: block;
  1278. }
  1279. /* Footer Widget */
  1280. .footer-widget {
  1281. border-top: 1px solid #ddd;
  1282. padding: 30px 0 0;
  1283. }
  1284. .footer-widget-inner .widget {
  1285. border-bottom: 1px solid #ddd;
  1286. margin-bottom: 30px;
  1287. }
  1288. .footer-widget-inner .widget:last-of-type {
  1289. border-bottom: 0;
  1290. margin-bottom: 0;
  1291. }
  1292. .footer-widget-inner .widget:nth-of-type(4n+1) {
  1293. clear: left;
  1294. margin-left: 0;
  1295. }
  1296. .footer-widget-inner .widget:nth-of-type(4n+4) {
  1297. clear: right;
  1298. margin-right: 0;
  1299. }
  1300. /* Calendar */
  1301. .widget_calendar table {
  1302. text-align: center;
  1303. }
  1304. .widget_calendar tfoot {
  1305. font-family: Lato, sans-serif;
  1306. text-transform: uppercase;
  1307. }
  1308. /* Custom Menu */
  1309. .widget_nav_menu .page_item_has_children > a,
  1310. .widget_nav_menu .menu-item-has-children > a {
  1311. display: block;
  1312. padding-right: 45px;
  1313. position: relative;
  1314. }
  1315. .widget_nav_menu .sub-menu {
  1316. display: none;
  1317. }
  1318. .widget_nav_menu .sub-menu.toggled {
  1319. display: block;
  1320. }
  1321. /* Lists */
  1322. .widget_archive ul,
  1323. .widget_categories ul,
  1324. .widget_links ul,
  1325. .widget_meta ul,
  1326. .widget_nav_menu ul,
  1327. .widget_pages ul,
  1328. .widget_recent_comments ul,
  1329. .widget_recent_entries ul,
  1330. .widget_rss ul {
  1331. border-bottom: 1px solid #eee;
  1332. list-style: none;
  1333. margin-left: 0;
  1334. }
  1335. .widget_archive li,
  1336. .widget_categories li,
  1337. .widget_links li,
  1338. .widget_meta li,
  1339. .widget_nav_menu li,
  1340. .widget_pages li,
  1341. .widget_recent_comments li,
  1342. .widget_recent_entries li,
  1343. .widget_rss li {
  1344. border-top: 1px solid #eee;
  1345. padding-bottom: 7.5px;
  1346. padding-top: 7.5px;
  1347. }
  1348. .widget_categories .children,
  1349. .widget_nav_menu .sub-menu,
  1350. .widget_pages .children {
  1351. border-bottom: 0;
  1352. margin-bottom: -7.5px;
  1353. margin-top: 7.5px;
  1354. padding-left: 30px;
  1355. }
  1356. /* Recent Posts */
  1357. .widget_recent_entries .post-date {
  1358. color: #777;
  1359. display: block;
  1360. font-family: Lato, sans-serif;
  1361. font-size: 13px;
  1362. font-weight: bold;
  1363. line-height: 2.3077;
  1364. text-transform: uppercase;
  1365. }
  1366. /* RSS */
  1367. .widget_rss cite,
  1368. .widget_rss .rss-date {
  1369. color: #777;
  1370. display: block;
  1371. font-family: Lato, sans-serif;
  1372. font-size: 13px;
  1373. font-style: normal;
  1374. font-weight: bold;
  1375. line-height: 2.3077;
  1376. text-transform: uppercase;
  1377. }
  1378. /* Tag Cloud */
  1379. .widget_tag_cloud > div {
  1380. padding-bottom: 18px;
  1381. }
  1382. .widget_tag_cloud a {
  1383. font-size: inherit !important;
  1384. line-height: 1.5;
  1385. text-decoration: none;
  1386. }
  1387. .widget_tag_cloud a:before {
  1388. color: #222;
  1389. content: "\0023";
  1390. margin-right: 0.125em;
  1391. }
  1392. /*--------------------------------------------------------------
  1393. # Content
  1394. --------------------------------------------------------------*/
  1395. /*--------------------------------------------------------------
  1396. ## Grid
  1397. --------------------------------------------------------------*/
  1398. /* Widths */
  1399. .archive .content-area,
  1400. .blog .content-area,
  1401. .entry-header-inner,
  1402. .error404 .content-area,
  1403. .footer-widget-inner,
  1404. .header-image-inner,
  1405. .search .content-area,
  1406. .site-content-inner,
  1407. .site-footer-inner,
  1408. .site-header-inner {
  1409. width: 90%;
  1410. }
  1411. .archive .hentry,
  1412. .blog .hentry,
  1413. .footer-widget-inner .widget,
  1414. .search .hentry {
  1415. width: 100%;
  1416. }
  1417. .blog .featured-content .hentry {
  1418. padding-bottom: 50%;
  1419. width: 100%;
  1420. }
  1421. .site-branding {
  1422. padding-right: 75px;
  1423. width: 100%;
  1424. }
  1425. /* Floats and Other Properties */
  1426. .author-info {
  1427. border: 1px solid #ddd;
  1428. margin: 0 0 30px;
  1429. padding: 30px 30px 0;
  1430. }
  1431. .archive .content-area,
  1432. .blog .content-area,
  1433. .entry-header-inner,
  1434. .error404 .content-area,
  1435. .footer-widget-inner,
  1436. .header-image-inner,
  1437. .search .content-area,
  1438. .site-content-inner,
  1439. .site-footer-inner,
  1440. .site-header-inner {
  1441. margin: 0 auto;
  1442. }
  1443. .archive .site-main,
  1444. .blog .site-main,
  1445. .error404 .site-main,
  1446. .search .site-main {
  1447. margin-top: 30px;
  1448. }
  1449. .page .site-main,
  1450. .page .widget-area,
  1451. .single .site-main,
  1452. .single .widget-area {
  1453. padding-top: 30px;
  1454. }
  1455. .page .widget-area:before,
  1456. .single .widget-area:before {
  1457. background: #ddd;
  1458. content: "";
  1459. display: block;
  1460. height: 1px;
  1461. left: 0;
  1462. margin-top: -30px;
  1463. position: absolute;
  1464. width: 100%;
  1465. }
  1466. /*--------------------------------------------------------------
  1467. ## Header
  1468. --------------------------------------------------------------*/
  1469. /* Site Header */
  1470. .site-header {
  1471. background: #fff;
  1472. border-bottom: 1px solid #ddd;
  1473. padding: 15px 0;
  1474. position: relative;
  1475. width: 100%;
  1476. }
  1477. .fixed .site-header {
  1478. position: fixed;
  1479. top: 0;
  1480. z-index: 99999;
  1481. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.075);
  1482. }
  1483. .admin-bar.fixed .site-header {
  1484. top: 32px;
  1485. }
  1486. .site-header-inner {
  1487. position: relative;
  1488. }
  1489. /* Search Form */
  1490. .search-toggle {
  1491. background: #fff;
  1492. border: 1px solid #ddd;
  1493. color: #3863c1;
  1494. display: none;
  1495. height: 62px;
  1496. margin-top: -31px;
  1497. padding: 0;
  1498. position: absolute;
  1499. right: 0;
  1500. top: 50%;
  1501. width: 60px;
  1502. z-index: 3;
  1503. }
  1504. .search-toggle:active,
  1505. .search-toggle:focus,
  1506. .search-toggle:hover {
  1507. background: #eee;
  1508. border-color: #ddd;
  1509. color: #3863c1;
  1510. }
  1511. .search-toggle:before {
  1512. content: "\f400";
  1513. font-size: 24px;
  1514. height: 60px;
  1515. line-height: 60px;
  1516. }
  1517. .toggled .search-toggle:before {
  1518. content: "\f406";
  1519. font-size: 16px;
  1520. }
  1521. .search-form {
  1522. margin-bottom: 30px;
  1523. position: relative;
  1524. }
  1525. .search-header {
  1526. display: none;
  1527. }
  1528. .main-navigation.toggled .search-header {
  1529. display: block;
  1530. }
  1531. .search-header .search-form {
  1532. background: #fff;
  1533. width: 100%;
  1534. }
  1535. .search-form .search-field {
  1536. font-size: 16px;
  1537. padding: 15px;
  1538. }
  1539. .search-form .search-submit {
  1540. background: transparent;
  1541. border: 1px solid #ddd;
  1542. color: transparent;
  1543. display: none;
  1544. height: 62px;
  1545. overflow: hidden;
  1546. padding: 0;
  1547. position: absolute;
  1548. right: 0;
  1549. top: 0;
  1550. width: 60px;
  1551. z-index: 2;
  1552. }
  1553. .search-form:before {
  1554. background: #fff;
  1555. color: #3863c1;
  1556. content: "\f400";
  1557. display: none;
  1558. font-size: 24px;
  1559. height: 62px;
  1560. line-height: 62px;
  1561. position: absolute;
  1562. right: 1px;
  1563. top: 0;
  1564. text-align: center;
  1565. width: 59px;
  1566. }
  1567. .search-header .search-form:before,
  1568. .search-header .search-form .search-submit {
  1569. right: 59px;
  1570. }
  1571. .search-form.hover:before {
  1572. background: #eee;
  1573. }
  1574. .search-form .search-submit:active,
  1575. .search-form .search-submit:focus,
  1576. .search-form .search-submit:hover {
  1577. background: transparent;
  1578. border-color: #ddd;
  1579. color: transparent;
  1580. }
  1581. /* Site Branding */
  1582. .site-branding {
  1583. float: left;
  1584. position: relative;
  1585. word-break: break-word;
  1586. }
  1587. .site-title {
  1588. color: #3863c1;
  1589. font-size: 16px;
  1590. line-height: 1.875;
  1591. margin: 0;
  1592. text-transform: uppercase;
  1593. }
  1594. .site-title a {
  1595. color: inherit;
  1596. }
  1597. .site-title a:active,
  1598. .site-title a:focus,
  1599. .site-title a:hover {
  1600. color: #222;
  1601. }
  1602. .site-description {
  1603. display: none;
  1604. }
  1605. /* Header Image */
  1606. .header-image {
  1607. margin: 30px 0;
  1608. }
  1609. .archive .header-image,
  1610. .blog .header-image,
  1611. .search .header-image {
  1612. margin-bottom: 0;
  1613. }
  1614. .header-image a,
  1615. .header-image img {
  1616. display: block;
  1617. margin: 0 auto;
  1618. }
  1619. .header-image a:active,
  1620. .header-image a:focus,
  1621. .header-image a:hover {
  1622. opacity: 0.7;
  1623. }
  1624. /*--------------------------------------------------------------
  1625. ## Footer
  1626. --------------------------------------------------------------*/
  1627. .site-footer {
  1628. border-top: 1px solid #ddd;
  1629. font-size: 16px;
  1630. line-height: 1.5;
  1631. padding: 15px 0;
  1632. position: relative;
  1633. }
  1634. .page.no-footer-widget:not(.no-sidebar-widget) .site-footer,
  1635. .single.no-footer-widget:not(.no-sidebar-widget) .site-footer {
  1636. padding-top: 45px;
  1637. }
  1638. .page.no-footer-widget .site-footer.sidebar-toggled,
  1639. .single.no-footer-widget .site-footer.sidebar-toggled {
  1640. padding-top: 15px;
  1641. }
  1642. .site-info {
  1643. color: #777;
  1644. font-family: Lato, sans-serif;
  1645. font-size: 13px;
  1646. line-height: 1.845;
  1647. }
  1648. .site-info a {
  1649. color: #777;
  1650. }
  1651. .site-info a:active,
  1652. .site-info a:focus,
  1653. .site-info a:hover {
  1654. color: #3863c1;
  1655. }
  1656. .site-info .sep {
  1657. color: #aaa;
  1658. font-size: 16px;
  1659. line-height: 1.5;
  1660. vertical-align: bottom;
  1661. }
  1662. .site-info .sep:hover {
  1663. -webkit-transform: rotate(360deg);
  1664. transform: rotate(360deg);
  1665. }
  1666. .footer-text {
  1667. color: #777;
  1668. border-bottom: 1px solid #eee;
  1669. margin-bottom: 15px;
  1670. padding-bottom: 15px;
  1671. }
  1672. .footer-text * {
  1673. margin-bottom: 0;
  1674. }
  1675. .footer-text + .social-navigation + .site-info {
  1676. clear: right;
  1677. }
  1678. /*--------------------------------------------------------------
  1679. ## Featured Content
  1680. --------------------------------------------------------------*/
  1681. .featured-content {
  1682. background: #222;
  1683. display: none;
  1684. position: relative;
  1685. width: 100%;
  1686. z-index: 5;
  1687. }
  1688. .has-header-image .featured-content {
  1689. margin-top: 30px;
  1690. }
  1691. .featured-content .hentry {
  1692. background-color: #1f1f1f;
  1693. background-position: 50% 50%;
  1694. background-size: cover;
  1695. color: #fff;
  1696. float: left;
  1697. margin: 0;
  1698. overflow: hidden;
  1699. position: relative;
  1700. }
  1701. .blog .featured-content .hentry {
  1702. border-bottom: 0;
  1703. }
  1704. .blog .featured-content .hentry:nth-of-type(even),
  1705. .blog .featured-content .hentry:nth-of-type(odd) {
  1706. margin: 0;
  1707. }
  1708. .featured-content .hentry:nth-of-type(even) {
  1709. background-color: #1b1b1b;
  1710. }
  1711. .featured-content .has-post-thumbnail {
  1712. text-shadow: 0 0 0.125em rgba(0, 0, 0, 0.3);
  1713. }
  1714. .featured-content a {
  1715. color: #fff;
  1716. }
  1717. .featured-content a:active,
  1718. .featured-content a:hover {
  1719. opacity: 0.3;
  1720. }
  1721. .featured-content a:focus {
  1722. background-color: rgba(255, 255, 255, 0.7);
  1723. }
  1724. .featured-content .post-thumbnail {
  1725. background-size: cover;
  1726. margin: 0;
  1727. opacity: 0.7;
  1728. position: absolute;
  1729. top: 0;
  1730. }
  1731. .featured-content .hentry:not(.has-post-thumbnail) .post-thumbnail {
  1732. opacity: 0;
  1733. }
  1734. .featured-content .post-thumbnail img {
  1735. opacity: 0;
  1736. visibility: hidden;
  1737. }
  1738. .featured-content .hentry:hover .post-thumbnail,
  1739. .featured-content .hentry .post-thumbnail:focus {
  1740. background-color: #000;
  1741. opacity: 0.3;
  1742. }
  1743. .featured-content .hentry:not(.has-post-thumbnail):hover .post-thumbnail,
  1744. .featured-content .hentry:not(.has-post-thumbnail) .post-thumbnail:focus {
  1745. background: #3863c1;
  1746. opacity: 1;
  1747. }
  1748. .featured-content .entry-meta,
  1749. .featured-content .entry-title {
  1750. position: absolute;
  1751. }
  1752. .featured-content .entry-title {
  1753. bottom: 0;
  1754. font-size: 25px;
  1755. line-height: 1.2;
  1756. position: absolute;
  1757. }
  1758. .featured-content .entry-title a {
  1759. display: block;
  1760. padding: 15px 30px;
  1761. }
  1762. .featured-content .entry-meta {
  1763. position: absolute;
  1764. padding: 15px 30px;
  1765. width: 100%;
  1766. }
  1767. /*--------------------------------------------------------------
  1768. ## Posts & Pages
  1769. --------------------------------------------------------------*/
  1770. /* Sticky */
  1771. .sticky {
  1772. display: block;
  1773. }
  1774. .archive .sticky .posted-on,
  1775. .blog .sticky .posted-on,
  1776. .search .sticky .posted-on {
  1777. display: none;
  1778. }
  1779. .archive .sticky .byline:before,
  1780. .blog .sticky .byline:before,
  1781. .search .sticky .byline:before {
  1782. display: none;
  1783. }
  1784. .sticky-post {
  1785. background: #3863c1;
  1786. color: #fff;
  1787. display: block;
  1788. height: 30px;
  1789. position: absolute;
  1790. right: 15px;
  1791. text-align: center;
  1792. top: -1px;
  1793. width: 30px;
  1794. }
  1795. .sticky-post:active,
  1796. .sticky-post:focus,
  1797. .sticky-post:hover {
  1798. background: #222;
  1799. }
  1800. .sticky-post .genericon {
  1801. height: 30px;
  1802. line-height: 30px;
  1803. }
  1804. /* Hentry */
  1805. .hentry {
  1806. margin: 0 0 30px;
  1807. }
  1808. .archive .hentry,
  1809. .blog .hentry,
  1810. .search .hentry {
  1811. border-top: 1px solid #eee;
  1812. margin-bottom: 0;
  1813. padding-top: 30px;
  1814. }
  1815. .archive .hentry:first-of-type,
  1816. .blog .hentry:first-of-type,
  1817. .search .hentry:first-of-type {
  1818. border-top: 0;
  1819. padding-top: 0;
  1820. }
  1821. .byline,
  1822. .updated:not(.published) {
  1823. display: none;
  1824. }
  1825. .group-blog .byline {
  1826. display: inline;
  1827. }
  1828. .group-blog:not(.single) .byline:before {
  1829. content: " \002F";
  1830. font-weight: bold;
  1831. }
  1832. .entry-summary {
  1833. margin: 30px 0 0;
  1834. word-wrap: break-word;
  1835. }
  1836. .entry-content,
  1837. .page-content {
  1838. margin: 0;
  1839. }
  1840. .entry-summary {
  1841. font-size: 16px;
  1842. line-height: 1.5;
  1843. position: relative;
  1844. }
  1845. .no-summary {
  1846. padding-bottom: 30px;
  1847. }
  1848. .entry-summary:empty {
  1849. display: none;
  1850. }
  1851. .entry-summary img {
  1852. display: none;
  1853. }
  1854. .more-link {
  1855. white-space: nowrap;
  1856. }
  1857. /* Page Header */
  1858. .page-header {
  1859. border-bottom: 1px solid #eee;
  1860. margin-bottom: 30px;
  1861. padding-bottom: 0;
  1862. }
  1863. .page-title {
  1864. font-size: 39px;
  1865. line-height: 1.54;
  1866. }
  1867. /* Entry Header */
  1868. .archive .hentry .entry-title,
  1869. .blog .hentry .entry-title,
  1870. .search .hentry .entry-title {
  1871. font-size: 25px;
  1872. line-height: 1.2;
  1873. margin: 15px 0;
  1874. }
  1875. .archive .hentry.type-page .entry-title,
  1876. .blog .hentry.type-page .entry-title,
  1877. .search .hentry.type-page .entry-title {
  1878. margin: 0;
  1879. }
  1880. .page .entry-title,
  1881. .single .entry-title {
  1882. font-size: 39px;
  1883. line-height: 1.54;
  1884. margin: 0;
  1885. }
  1886. .page .hentry:not(.has-post-thumbnail) .entry-header,
  1887. .single .hentry:not(.has-post-thumbnail) .entry-header,
  1888. .single .hentry.format-quote .entry-header,
  1889. .single .hentry.format-video .entry-header {
  1890. margin-bottom: 30px;
  1891. }
  1892. .single .hentry.format-aside .entry-header {
  1893. margin-bottom: 0;
  1894. }
  1895. /* Entry Hero */
  1896. .entry-hero {
  1897. position: relative;
  1898. }
  1899. .entry-header-wrapper {
  1900. padding: 30px 0 0;
  1901. width: 100%;
  1902. }
  1903. .entry-hero .post-thumbnail {
  1904. background: #000;
  1905. }
  1906. .entry-hero .post-thumbnail img {
  1907. margin: 0 auto;
  1908. }
  1909. /* Entry Meta */
  1910. .entry-meta {
  1911. font-family: Lato, sans-serif;
  1912. font-size: 13px;
  1913. line-height: 1.54;
  1914. padding: 5px 0;
  1915. text-transform: uppercase;
  1916. }
  1917. .entry-meta + .entry-meta {
  1918. border-top: 2px solid #eee;
  1919. margin-top: 9px;
  1920. padding-top: 14px;
  1921. }
  1922. .content-area .entry-meta {
  1923. color: #777;
  1924. }
  1925. .content-area .entry-meta a {
  1926. color: #777;
  1927. }
  1928. .content-area .entry-meta a:active,
  1929. .content-area .entry-meta a:focus,
  1930. .content-area .entry-meta a:hover {
  1931. color: #222;
  1932. }
  1933. .cat-links {
  1934. float: left;
  1935. }
  1936. .comments-link {
  1937. float: right;
  1938. }
  1939. .long-meta .comments-link {
  1940. clear: both;
  1941. float: left;
  1942. }
  1943. .entry-meta + .post-thumbnail {
  1944. margin-top: 15px;
  1945. }
  1946. /* Entry Footer */
  1947. .entry-footer {
  1948. color: #777;
  1949. display: block;
  1950. float: left;
  1951. font-family: Lato, sans-serif;
  1952. font-size: 13px;
  1953. font-weight: bold;
  1954. line-height: 1.54;
  1955. margin-bottom: 30px;
  1956. text-transform: uppercase;
  1957. width: 100%;
  1958. }
  1959. .page .entry-footer {
  1960. float: none;
  1961. margin-bottom: 0;
  1962. width: 100%;
  1963. }
  1964. .entry-footer a {
  1965. color: #777;
  1966. }
  1967. .entry-footer a:active,
  1968. .entry-footer a:focus,
  1969. .entry-footer a:hover {
  1970. color: #222;
  1971. }
  1972. .entry-footer .byline,
  1973. .entry-footer .cat-links,
  1974. .entry-footer .comments-link,
  1975. .entry-footer .edit-link,
  1976. .entry-footer .posted-on,
  1977. .entry-footer .tags-links {
  1978. border-top: 1px solid #eee;
  1979. display: block;
  1980. padding: 5px 0;
  1981. }
  1982. .entry-footer > span:last-of-type {
  1983. border-bottom: 1px solid #eee;
  1984. }
  1985. .entry-footer .cat-links,
  1986. .entry-footer .comments-link {
  1987. float: none;
  1988. }
  1989. .tags-links a:before {
  1990. content: "\0023";
  1991. margin-right: 0.125em;
  1992. }
  1993. /* Post Thumbnail */
  1994. .post-thumbnail {
  1995. background: #000;
  1996. display: block;
  1997. height: auto;
  1998. position: relative;
  1999. width: 100%;
  2000. }
  2001. .post-thumbnail img {
  2002. display: block;
  2003. }
  2004. a.post-thumbnail:active,
  2005. a.post-thumbnail:focus,
  2006. a.post-thumbnail:hover {
  2007. background-color: #000;
  2008. }
  2009. a.post-thumbnail:active img,
  2010. a.post-thumbnail:focus img,
  2011. a.post-thumbnail:hover img {
  2012. opacity: 0.7;
  2013. }
  2014. .content-area a.post-thumbnail {
  2015. margin-bottom: 15px;
  2016. }
  2017. /* Post Media */
  2018. .post-media {
  2019. margin: 15px 0;
  2020. }
  2021. .post-media > *:not(.wp-video-shortcode) {
  2022. display: none;
  2023. }
  2024. .post-media > *:first-child {
  2025. display: block;
  2026. }
  2027. .post-media + .jetpack-video-wrapper,
  2028. .post-media iframe[src*="twitter"] {
  2029. display: none !important;
  2030. }
  2031. .post-media embed,
  2032. .post-media iframe,
  2033. .post-media object,
  2034. .post-media video {
  2035. margin-bottom: 0;
  2036. max-height: 225px;
  2037. }
  2038. /* Page Links */
  2039. .page-links {
  2040. border-top: 1px solid #eee;
  2041. clear: both;
  2042. color: #777;
  2043. font-family: Lato, sans-serif;
  2044. font-size: 13px;
  2045. font-weight: bold;
  2046. line-height: 2.3077;
  2047. margin-bottom: 25px;
  2048. padding: 30px 0 0;
  2049. text-transform: uppercase;
  2050. width: 100%;
  2051. }
  2052. .page-links a,
  2053. .page-links > span {
  2054. background: #eee;
  2055. display: inline-block;
  2056. margin: 0 5px 5px 0;
  2057. width: 30px;
  2058. height: 30px;
  2059. border: 1px solid #ddd;
  2060. line-height: 30px;
  2061. text-align: center;
  2062. }
  2063. .page-links > span {
  2064. color: #3863c1;
  2065. }
  2066. .page-links a {
  2067. background: #fff;
  2068. color: #222;
  2069. }
  2070. .page-links a:active,
  2071. .page-links a:focus,
  2072. .page-links a:hover {
  2073. background: #eee;
  2074. border-color: #ddd;
  2075. color: #3863c1;
  2076. }
  2077. .page-links > .page-links-title {
  2078. background: transparent;
  2079. border: 0;
  2080. color: #777;
  2081. display: block;
  2082. height: auto;
  2083. margin: 0;
  2084. padding-right: 5px;
  2085. text-align: left;
  2086. width: auto;
  2087. }
  2088. /* Author Info */
  2089. .author-info .author-title {
  2090. color: #777;
  2091. font-size: 13px;
  2092. font-weight: bold;
  2093. line-height: 2.3077;
  2094. margin: 0;
  2095. text-transform: uppercase;
  2096. }
  2097. .author-info .author-name {
  2098. font-size: 25px;
  2099. line-height: 1.2;
  2100. margin-bottom: 30px;
  2101. }
  2102. .author-info .author-avatar {
  2103. display: none;
  2104. }
  2105. .author-info .author-avatar img {
  2106. border-radius: 50%;
  2107. }
  2108. .author-info .author-bio {
  2109. clear: both;
  2110. font-size: 16px;
  2111. line-height: 1.5;
  2112. }
  2113. .author-info .author-link {
  2114. display: block;
  2115. }
  2116. /*--------------------------------------------------------------
  2117. ## Post Formats
  2118. --------------------------------------------------------------*/
  2119. /* Aside */
  2120. .format-aside .entry-title {
  2121. display: none;
  2122. }
  2123. .archive .format-aside .entry-meta:last-of-type,
  2124. .blog .format-aside .entry-meta:last-of-type,
  2125. .search .format-aside .entry-meta:last-of-type {
  2126. border-top: 2px solid #eee;
  2127. margin-top: 9px;
  2128. padding-top: 14px;
  2129. }
  2130. .format-aside.has-post-thumbnail .entry-meta:last-of-type {
  2131. border-top: 0;
  2132. margin-top: 0;
  2133. padding-top: 15px;
  2134. }
  2135. /* Gallery & Image */
  2136. body:not(.single) .content-area .format-gallery.has-post-thumbnail,
  2137. body:not(.single) .content-area .format-image.has-post-thumbnail {
  2138. color: #fff;
  2139. position: relative;
  2140. margin-bottom: 30px;
  2141. overflow: hidden;
  2142. }
  2143. .content-area .format-gallery.has-post-thumbnail .entry-header,
  2144. .content-area .format-image.has-post-thumbnail .entry-header {
  2145. position: relative;
  2146. }
  2147. .content-area .format-gallery.has-post-thumbnail a:focus,
  2148. .content-area .format-image.has-post-thumbnail a:focus {
  2149. background-color: rgba(255, 255, 255, 0.7);
  2150. color: #fff;
  2151. }
  2152. .content-area .format-gallery.has-post-thumbnail .entry-title a,
  2153. .content-area .format-image.has-post-thumbnail .entry-title a {
  2154. color: #fff;
  2155. }
  2156. .content-area .format-gallery.has-post-thumbnail .entry-title a:active,
  2157. .content-area .format-gallery.has-post-thumbnail .entry-title a:hover,
  2158. .content-area .format-image.has-post-thumbnail .entry-title a:active,
  2159. .content-area .format-image.has-post-thumbnail .entry-title a:hover {
  2160. opacity: 0.7;
  2161. }
  2162. .content-area .format-gallery.has-post-thumbnail .entry-summary a,
  2163. .content-area .format-gallery.has-post-thumbnail .entry-title + .entry-meta,
  2164. .content-area .format-gallery.has-post-thumbnail .entry-title + .entry-meta a,
  2165. .content-area .format-image.has-post-thumbnail .entry-summary a,
  2166. .content-area .format-image.has-post-thumbnail .entry-title + .entry-meta,
  2167. .content-area .format-image.has-post-thumbnail .entry-title + .entry-meta a {
  2168. color: #fff;
  2169. text-shadow: 0 0 0.125em rgba(0, 0, 0, 0.7);
  2170. }
  2171. .content-area .format-gallery.has-post-thumbnail .entry-summary a:active,
  2172. .content-area .format-gallery.has-post-thumbnail .entry-summary a:focus,
  2173. .content-area .format-gallery.has-post-thumbnail .entry-summary a:hover,
  2174. .content-area .format-gallery.has-post-thumbnail .entry-title + .entry-meta a:active,
  2175. .content-area .format-gallery.has-post-thumbnail .entry-title + .entry-meta a:focus,
  2176. .content-area .format-gallery.has-post-thumbnail .entry-title + .entry-meta a:hover,
  2177. .content-area .format-image.has-post-thumbnail .entry-summary a:active,
  2178. .content-area .format-image.has-post-thumbnail .entry-summary a:focus,
  2179. .content-area .format-image.has-post-thumbnail .entry-summary a:hover,
  2180. .content-area .format-image.has-post-thumbnail .entry-title + .entry-meta a:active,
  2181. .content-area .format-image.has-post-thumbnail .entry-title + .entry-meta a:focus,
  2182. .content-area .format-image.has-post-thumbnail .entry-title + .entry-meta a:hover {
  2183. opacity: 0.7;
  2184. }
  2185. .content-area .format-gallery.has-post-thumbnail .entry-title,
  2186. .content-area .format-image.has-post-thumbnail .entry-title {
  2187. margin-bottom: 0;
  2188. margin-top: 240px;
  2189. padding-bottom: 15px;
  2190. padding-top: 15px;
  2191. }
  2192. .content-area .format-gallery.has-post-thumbnail .entry-summary,
  2193. .content-area .format-gallery.has-post-thumbnail .entry-title,
  2194. .content-area .format-gallery.has-post-thumbnail .entry-title + .entry-meta,
  2195. .content-area .format-image.has-post-thumbnail .entry-summary,
  2196. .content-area .format-image.has-post-thumbnail .entry-title,
  2197. .content-area .format-image.has-post-thumbnail .entry-title + .entry-meta {
  2198. padding-left: 30px;
  2199. padding-right: 30px;
  2200. position: relative;
  2201. text-shadow: 0 0 0.125em rgba(0, 0, 0, 0.3);
  2202. }
  2203. .content-area .format-gallery.has-post-thumbnail .entry-summary,
  2204. .content-area .format-image.has-post-thumbnail .entry-summary {
  2205. margin-top: 0;
  2206. padding-bottom: 30px;
  2207. padding-top: 30px;
  2208. }
  2209. .content-area .format-gallery.has-post-thumbnail .entry-summary p,
  2210. .content-area .format-image.has-post-thumbnail .entry-summary p {
  2211. margin-bottom: 0;
  2212. }
  2213. .content-area .format-gallery .post-thumbnail,
  2214. .content-area .format-image .post-thumbnail {
  2215. background-position: 50% 50%;
  2216. background-repeat: no-repeat;
  2217. background-size: cover;
  2218. display: block;
  2219. height: 100%;
  2220. margin: 0;
  2221. overflow: hidden;
  2222. position: absolute;
  2223. top: 0;
  2224. width: 100%;
  2225. }
  2226. .content-area .format-gallery .post-thumbnail img,
  2227. .content-area .format-image .post-thumbnail img {
  2228. opacity: 0;
  2229. }
  2230. .content-area .format-gallery .post-thumbnail:before,
  2231. .content-area .format-image .post-thumbnail:before {
  2232. background: #000;
  2233. content: "";
  2234. display: block;
  2235. height: 100%;
  2236. left: 0;
  2237. opacity: 0.3;
  2238. top: 0;
  2239. width: 100%;
  2240. z-index: -1
  2241. }
  2242. .content-area .format-gallery .post-thumbnail:hover:before,
  2243. .content-area .format-image .post-thumbnail:hover:before {
  2244. opacity: 0.7;
  2245. }
  2246. /* Link */
  2247. body:not(.single) .content-area .format-link {
  2248. color: #fff;
  2249. margin-bottom: 30px;
  2250. overflow: hidden;
  2251. }
  2252. .content-area .format-link .entry-summary,
  2253. body:not(.single) .content-area .format-link .entry-title,
  2254. .content-area .format-link .entry-title + .entry-meta {
  2255. background: #3863c1;
  2256. padding-left: 30px;
  2257. padding-right: 30px;
  2258. }
  2259. body:not(.single) .content-area .format-link .entry-title {
  2260. margin: 0;
  2261. padding-bottom: 15px;
  2262. padding-top: 15px;
  2263. position: relative;
  2264. }
  2265. .content-area .format-link .entry-title a {
  2266. color: #fff;
  2267. }
  2268. .content-area .format-link .entry-title a:active,
  2269. .content-area .format-link .entry-title a:focus,
  2270. .content-area .format-link .entry-title a:hover {
  2271. opacity: 0.7;
  2272. }
  2273. .content-area .format-link .entry-title + .entry-meta,
  2274. .content-area .format-link .entry-title + .entry-meta a {
  2275. color: #fff;
  2276. }
  2277. .content-area .format-link .entry-title + .entry-meta a:active,
  2278. .content-area .format-link .entry-title + .entry-meta a:focus,
  2279. .content-area .format-link .entry-title + .entry-meta a:hover {
  2280. opacity: 0.7;
  2281. }
  2282. .content-area .format-link .entry-summary {
  2283. margin: 0;
  2284. padding-bottom: 30px;
  2285. padding-top: 30px;
  2286. }
  2287. .content-area .format-link .entry-summary p {
  2288. margin-bottom: 0;
  2289. }
  2290. .post-link {
  2291. background: #3863c1;
  2292. display: block;
  2293. height: 120px;
  2294. margin-top: 15px;
  2295. position: relative;
  2296. }
  2297. .post-link .genericon {
  2298. background: #fff;
  2299. border-radius: 50%;
  2300. color: #3863c1;
  2301. font-size: 24px;
  2302. height: 60px;
  2303. left: 50%;
  2304. line-height: 60px;
  2305. margin-left: -30px;
  2306. margin-top: -30px;
  2307. position: absolute;
  2308. text-align: center;
  2309. top: 50%;
  2310. width: 60px;
  2311. z-index: 1;
  2312. }
  2313. .post-link:active .genericon,
  2314. .post-link:focus .genericon,
  2315. .post-link:hover .genericon {
  2316. opacity: 0.7;
  2317. }
  2318. /*--------------------------------------------------------------
  2319. ## Comments
  2320. --------------------------------------------------------------*/
  2321. .comments-area {
  2322. border-top: 1px solid #ddd;
  2323. font-size: 16px;
  2324. line-height: 1.5;
  2325. padding-top: 30px;
  2326. }
  2327. .comment-reply-title,
  2328. .comments-title,
  2329. .no-comments {
  2330. font-size: 25px;
  2331. line-height: 1.2;
  2332. margin-bottom: 30px;
  2333. }
  2334. .no-comments {
  2335. font-family: Lato, sans-serif;
  2336. font-weight: 900;
  2337. margin-bottom: 30px;
  2338. }
  2339. .comment-form,
  2340. .comment-form code {
  2341. font-size: 16px;
  2342. line-height: 1.5;
  2343. }
  2344. .comment-content {
  2345. word-wrap: break-word;
  2346. }
  2347. .comment-content blockquote:before {
  2348. font-size: 16px;
  2349. height: 24px;
  2350. line-height: 1.5;
  2351. width: 24px;
  2352. }
  2353. .comment-list {
  2354. border-bottom: 1px solid #ddd;
  2355. list-style: none;
  2356. margin-bottom: 30px;
  2357. padding-bottom: 0;
  2358. position: relative;
  2359. }
  2360. .comment-list .children {
  2361. list-style: none;
  2362. }
  2363. .comment-list .comment:not(:last-of-type),
  2364. .comment-list .depth-1:not(:last-of-type) {
  2365. border-bottom: 1px solid #eee;
  2366. margin-bottom: 30px;
  2367. }
  2368. .comment-list .comment .comment:first-of-type {
  2369. border-top: 1px solid #eee;
  2370. padding-top: 30px;
  2371. }
  2372. .comment-list .comment-respond {
  2373. border-top: 1px solid #eee;
  2374. margin-left: 30px;
  2375. padding-top: 30px;
  2376. }
  2377. .comment-list .comment-form {
  2378. padding-bottom: 0;
  2379. }
  2380. .pingback .comment-body {
  2381. padding-bottom: 30px;
  2382. }
  2383. .comment-author {
  2384. font-family: Lato, sans-serif;
  2385. font-size: 16px;
  2386. font-weight: 900;
  2387. line-height: 1.875;
  2388. }
  2389. .comment-author a,
  2390. .comment-author b {
  2391. font-weight: 900;
  2392. }
  2393. .comment-author img {
  2394. border-radius: 50%;
  2395. vertical-align: middle;
  2396. }
  2397. .comment-meta {
  2398. margin-bottom: 30px;
  2399. }
  2400. .comment-author .avatar {
  2401. float: left;
  2402. margin-right: 30px;
  2403. }
  2404. .comment-author .says {
  2405. display: none;
  2406. }
  2407. .comment-metadata .edit-link:before {
  2408. content: "\002F";
  2409. font-weight: bold;
  2410. margin-right: 0.2em;
  2411. }
  2412. .comment-list .comment-reply-title small,
  2413. .comment-metadata,
  2414. .comment-reply-link {
  2415. color: #777;
  2416. font-family: Lato, sans-serif;
  2417. font-size: 13px;
  2418. font-weight: bold;
  2419. line-height: 2.3077;
  2420. text-transform: uppercase;
  2421. }
  2422. .comment-list .comment-reply-title small {
  2423. float: right;
  2424. }
  2425. .comment-metadata a,
  2426. .comment-list .comment-reply-title small a {
  2427. color: #777;
  2428. }
  2429. .comment-list .comment-reply-title small a:active,
  2430. .comment-list .comment-reply-title small a:focus,
  2431. .comment-list .comment-reply-title small a:hover,
  2432. .comment-metadata a:active,
  2433. .comment-metadata a:focus,
  2434. .comment-metadata a:hover,
  2435. .comment-reply-link:active,
  2436. .comment-reply-link:focus,
  2437. .comment-reply-link:hover {
  2438. color: #222;
  2439. }
  2440. .bypostauthor .fn {
  2441. background: #3863c1;
  2442. color: #fff;
  2443. padding: 0 0.2em;
  2444. }
  2445. .bypostauthor .fn a {
  2446. color: inherit;
  2447. }
  2448. .reply {
  2449. text-align: right;
  2450. }
  2451. .comment-reply-link {
  2452. display: inline-block;
  2453. margin-bottom: 30px;
  2454. }
  2455. .required {
  2456. color: #3863c1;
  2457. font-weight: bold;
  2458. }
  2459. .comment-awaiting-moderation {
  2460. margin-bottom: 0;
  2461. }
  2462. /*--------------------------------------------------------------
  2463. # Media
  2464. --------------------------------------------------------------*/
  2465. .page-content .wp-smiley,
  2466. .entry-content .wp-smiley,
  2467. .comment-content .wp-smiley {
  2468. border: none;
  2469. margin-bottom: 0;
  2470. margin-top: 0;
  2471. padding: 0;
  2472. }
  2473. embed,
  2474. iframe,
  2475. object,
  2476. video,
  2477. .fb_iframe_widget,
  2478. .video-player,
  2479. .wp-audio-shortcode {
  2480. margin-bottom: 30px;
  2481. max-width: 100%;
  2482. }
  2483. /*--------------------------------------------------------------
  2484. ## Captions
  2485. --------------------------------------------------------------*/
  2486. .wp-caption {
  2487. color: #777;
  2488. font-family: Lato, sans-serif;
  2489. font-size: 16px;
  2490. line-height: 1.25;
  2491. margin-bottom: 25px;
  2492. max-width: 100%;
  2493. }
  2494. .wp-caption img[class*="wp-image-"] {
  2495. display: block;
  2496. margin: 0 auto;
  2497. }
  2498. .wp-caption-text {
  2499. text-align: center;
  2500. }
  2501. .wp-caption .wp-caption-text {
  2502. margin: 0;
  2503. padding: 5px 0;
  2504. }
  2505. /*--------------------------------------------------------------
  2506. ## Galleries
  2507. --------------------------------------------------------------*/
  2508. .gallery {
  2509. border: 1px solid #eee;
  2510. margin: 0 0 30px;
  2511. padding: 5px;
  2512. }
  2513. .gallery-item {
  2514. display: inline-block;
  2515. margin-bottom: 0;
  2516. padding: 5px;
  2517. position: relative;
  2518. text-align: center;
  2519. vertical-align: top;
  2520. width: 100%;
  2521. }
  2522. .gallery-columns-2 .gallery-item {
  2523. max-width: 50%;
  2524. }
  2525. .gallery-columns-3 .gallery-item {
  2526. max-width: 33.33%;
  2527. }
  2528. .gallery-columns-4 .gallery-item {
  2529. max-width: 25%;
  2530. }
  2531. .gallery-columns-5 .gallery-item {
  2532. max-width: 20%;
  2533. }
  2534. .gallery-columns-6 .gallery-item {
  2535. max-width: 16.66%;
  2536. }
  2537. .gallery-columns-7 .gallery-item {
  2538. max-width: 14.28%;
  2539. }
  2540. .gallery-columns-8 .gallery-item {
  2541. max-width: 12.5%;
  2542. }
  2543. .gallery-columns-9 .gallery-item {
  2544. max-width: 11.11%;
  2545. }
  2546. .gallery-caption {
  2547. color: #777;
  2548. font-family: Lato, sans-serif;
  2549. font-size: 16px;
  2550. left: 0;
  2551. line-height: 1.25;
  2552. max-width: 100%;
  2553. margin: 0;
  2554. min-width: 100%;
  2555. padding: 5px 0;
  2556. }
  2557. .gallery-icon img {
  2558. display: block;
  2559. margin: 0 auto;
  2560. }
  2561. /* Google Maps */
  2562. .googlemaps {
  2563. margin-bottom: 30px;
  2564. }
  2565. .googlemaps br {
  2566. display: none;
  2567. }
  2568. .googlemaps iframe {
  2569. margin-bottom: 0;
  2570. }
  2571. /*--------------------------------------------------------------
  2572. # WooCommerce
  2573. --------------------------------------------------------------*/
  2574. .woocommerce .price ins {
  2575. color: inherit;
  2576. }
  2577. /*--------------------------------------------------------------
  2578. # Jetpack
  2579. --------------------------------------------------------------*/
  2580. /*--------------------------------------------------------------
  2581. ## Contact Form
  2582. --------------------------------------------------------------*/
  2583. .site-content .contact-form > div {
  2584. margin-bottom: 30px;
  2585. }
  2586. .site-content .contact-form label {
  2587. margin-bottom: 0;
  2588. }
  2589. .site-content .contact-form input[type="text"],
  2590. .site-content .contact-form input[type="email"],
  2591. .site-content .contact-form input[type="url"],
  2592. .site-content .contact-form textarea {
  2593. margin-bottom: 0;
  2594. width: 100%;
  2595. max-width: 100%;
  2596. }
  2597. .site-content .contact-form label span {
  2598. color: #3863c1;
  2599. }
  2600. /*--------------------------------------------------------------
  2601. ## Galleries
  2602. --------------------------------------------------------------*/
  2603. .site .slideshow-window {
  2604. border-radius: 0;
  2605. border-width: 15px;
  2606. }
  2607. .site .tiled-gallery {
  2608. margin-bottom: 30px;
  2609. }
  2610. /*--------------------------------------------------------------
  2611. ## Infinite Scroll
  2612. --------------------------------------------------------------*/
  2613. .infinite-scroll .posts-navigation,
  2614. .infinite-scroll.neverending .site-footer {
  2615. display: none;
  2616. }
  2617. .infinity-end.neverending .site-footer {
  2618. display: block;
  2619. }
  2620. #infinite-handle {
  2621. border-top: 1px solid #eee;
  2622. clear: both;
  2623. font-family: Lato, sans-serif;
  2624. font-weight: bold;
  2625. margin: 0 0 30px;
  2626. overflow: hidden;
  2627. padding: 30px 0 0;
  2628. text-align: center;
  2629. }
  2630. #infinite-handle span {
  2631. background: transparent;
  2632. border-radius: 0;
  2633. display: inline-block;
  2634. padding: 0;
  2635. }
  2636. #infinite-handle span button,
  2637. #infinite-handle span button:active,
  2638. #infinite-handle span button:focus,
  2639. #infinite-handle span button:hover {
  2640. background: #fff;
  2641. border: 2px solid #eee;
  2642. display: inline-block;
  2643. font-size: 16px;
  2644. line-height: 1.875;
  2645. padding: 5.5px 13px;
  2646. text-transform: uppercase;
  2647. }
  2648. #infinite-handle span button {
  2649. color: #3863c1;
  2650. }
  2651. #infinite-handle span button:active,
  2652. #infinite-handle span button:focus,
  2653. #infinite-handle span button:hover {
  2654. background: #3863c1;
  2655. border-color: #3863c1;
  2656. color: #fff;
  2657. }
  2658. .infinite-loader {
  2659. border-top: 1px solid #eee;
  2660. clear: both;
  2661. margin: 0 0 30px;
  2662. overflow: hidden;
  2663. padding: 75px 0 0;
  2664. position: relative;
  2665. text-align: center;
  2666. }
  2667. .infinite-loader .spinner {
  2668. position: absolute;
  2669. top: -22.5px !important;
  2670. left: 50% !important;
  2671. }
  2672. #infinite-footer {
  2673. background: #fff;
  2674. border-top: 1px solid #ddd;
  2675. box-shadow: 0 -2px 7px rgba(0, 0, 0, 0.05);
  2676. color: #777;
  2677. font-family: Lato, sans-serif;
  2678. font-size: 13px;
  2679. line-height: 2.3077;
  2680. }
  2681. #infinite-footer a:active,
  2682. #infinite-footer a:focus,
  2683. #infinite-footer a:hover {
  2684. text-decoration: none;
  2685. }
  2686. #infinite-footer .container {
  2687. background: transparent;
  2688. border: 0;
  2689. padding: 0;
  2690. }
  2691. #infinite-footer .blog-info {
  2692. text-transform: uppercase;
  2693. }
  2694. #infinite-footer .blog-info a {
  2695. color: #3863c1;
  2696. font-size: inherit;
  2697. font-weight: 900;
  2698. }
  2699. #infinite-footer .blog-credits a {
  2700. color: inherit;
  2701. }
  2702. #infinite-footer .blog-credits a:active,
  2703. #infinite-footer .blog-credits a:focus,
  2704. #infinite-footer .blog-credits a:hover,
  2705. #infinite-footer .blog-info a:active,
  2706. #infinite-footer .blog-info a:focus,
  2707. #infinite-footer .blog-info a:hover {
  2708. text-decoration: none;
  2709. }
  2710. #infinite-footer .blog-credits a:active,
  2711. #infinite-footer .blog-credits a:focus,
  2712. #infinite-footer .blog-credits a:hover {
  2713. color: #3863c1;
  2714. }
  2715. #infinite-footer .blog-info a:active,
  2716. #infinite-footer .blog-info a:focus,
  2717. #infinite-footer .blog-info a:hover {
  2718. color: #222;
  2719. }
  2720. #infinite-footer .blog-credits,
  2721. #infinite-footer .blog-info {
  2722. color: inherit;
  2723. font-size: inherit;
  2724. line-height: inherit;
  2725. }
  2726. /*--------------------------------------------------------------
  2727. # Jetpack Contact Forms
  2728. --------------------------------------------------------------*/
  2729. .site-content .contact-form input[type="radio"],
  2730. .site-content .contact-form input[type="checkbox"] {
  2731. margin-bottom: 6px;
  2732. margin-right: .3em;
  2733. vertical-align: middle;
  2734. }
  2735. .site-content .contact-form label.checkbox,
  2736. .site-content .contact-form label.checkbox-multiple,
  2737. .site-content .contact-form label.radio {
  2738. font-weight: normal;
  2739. margin-bottom: 8px;
  2740. }
  2741. .site-content .contact-form label.checkbox,
  2742. .site-content .contact-form > div {
  2743. margin-bottom: 16px;
  2744. }
  2745. .site-content .contact-form textarea,
  2746. .site-content .contact-form input[type='text'],
  2747. .site-content .contact-form input[type='email'],
  2748. .site-content .contact-form input[type='url'],
  2749. .site-content .contact-form select {
  2750. margin-bottom: 8px;
  2751. }
  2752. .site-content .contact-form .grunion-field-label {
  2753. margin-bottom: 4px;
  2754. }
  2755. /*--------------------------------------------------------------
  2756. ## PollDaddy
  2757. --------------------------------------------------------------*/
  2758. .PDS_Poll {
  2759. margin-bottom: 24px;
  2760. }
  2761. /*--------------------------------------------------------------
  2762. ## Recipes
  2763. --------------------------------------------------------------*/
  2764. .site-content .jetpack-recipe {
  2765. margin: 0 0 30px;
  2766. padding: 30px 30px 0;
  2767. }
  2768. .site-content .jetpack-recipe blockquote {
  2769. margin-left: 0;
  2770. }
  2771. .site-content .jetpack-recipe ol,
  2772. .site-content .jetpack-recipe ul {
  2773. list-style-position: inside;
  2774. }
  2775. .site-content .jetpack-recipe-title {
  2776. padding: 0;
  2777. margin: 0 auto 30px;
  2778. border-bottom: 0;
  2779. }
  2780. .site-content .jetpack-recipe-content br {
  2781. display: none;
  2782. }
  2783. .site-content .jetpack-recipe .jetpack-recipe-meta {
  2784. color: #777;
  2785. font-size: inherit;
  2786. line-height: inherit;
  2787. overflow: inherit;
  2788. }
  2789. .site-content .jetpack-recipe-meta:before,
  2790. .site-content .jetpack-recipe-meta:after {
  2791. content: "";
  2792. display: table;
  2793. }
  2794. .site-content .jetpack-recipe-meta:after {
  2795. clear: both;
  2796. }
  2797. /*--------------------------------------------------------------
  2798. ## Responsive Videos
  2799. --------------------------------------------------------------*/
  2800. .jetpack-video-wrapper:not(.post-media) {
  2801. margin: 0 0 30px;
  2802. }
  2803. .jetpack-video-wrapper:empty {
  2804. display: none;
  2805. }
  2806. /*--------------------------------------------------------------
  2807. ## Sharedaddy
  2808. --------------------------------------------------------------*/
  2809. .hentry #jp-post-flair {
  2810. padding: 0;
  2811. }
  2812. .entry-summary .sharedaddy {
  2813. display: none !important;
  2814. }
  2815. .sd-like.jetpack-likes-widget-wrapper,
  2816. .sd-rating,
  2817. .sd-sharing-enabled:not(#jp-post-flair) {
  2818. border-bottom: 1px solid #eee;
  2819. margin: 0;
  2820. padding: 7.5px 0;
  2821. }
  2822. .sd-like.jetpack-likes-widget-wrapper iframe {
  2823. margin-bottom: 0;
  2824. }
  2825. .hentry div.sd-rating h3.sd-title,
  2826. .hentry div.sharedaddy h3.sd-title {
  2827. font-family: Lato, sans-serif;
  2828. font-size: 13px;
  2829. font-weight: bold;
  2830. line-height: 1.2;
  2831. margin: 0 0 7.5px;
  2832. }
  2833. .hentry div.sharedaddy .sd-content ul {
  2834. margin-bottom: 0 !important;
  2835. }
  2836. div#jp-relatedposts {
  2837. border-top: 1px solid #ddd;
  2838. margin: 0;
  2839. padding-top: 30px;
  2840. position: relative;
  2841. width: 100%;
  2842. }
  2843. div#jp-relatedposts a:focus {
  2844. background: transparent;
  2845. outline: 2px solid #eee;
  2846. }
  2847. .hentry div#jp-relatedposts h3.jp-relatedposts-headline {
  2848. font-family: Lato, sans-serif;
  2849. font-size: 25px;
  2850. font-weight: 900;
  2851. line-height: 1.2;
  2852. margin-bottom: 30px;
  2853. }
  2854. .hentry div#jp-relatedposts h3.jp-relatedposts-headline em {
  2855. font-weight: inherit;
  2856. }
  2857. .comment .pd-rating,
  2858. .hentry .pd-rating,
  2859. .hentry .sd-sharing .share-count {
  2860. line-height: 1 !important;
  2861. }
  2862. .hentry .post-likes-widget {
  2863. margin-bottom: 30px;
  2864. position: inherit !important;
  2865. top: auto !important;
  2866. }
  2867. .hentry .pd-rating + br,
  2868. .hentry div.sharedaddy h3.sd-title:before,
  2869. .hentry div#jp-relatedposts h3.jp-relatedposts-headline em:before {
  2870. display: none;
  2871. }
  2872. .hentry div#jp-relatedposts div.jp-relatedposts-items {
  2873. width: 100%;
  2874. }
  2875. .hentry div#jp-relatedposts div.jp-relatedposts-items p {
  2876. font-size: 16px;
  2877. line-height: 1.5;
  2878. }
  2879. .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post,
  2880. .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post-context {
  2881. opacity: 1;
  2882. }
  2883. .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post {
  2884. padding: 0;
  2885. margin-bottom: 30px;
  2886. width: 100%;
  2887. }
  2888. .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post:last-of-type {
  2889. margin-bottom: 0;
  2890. }
  2891. .hentry div#jp-relatedposts div.jp-relatedposts-items.jp-relatedposts-items-minimal .jp-relatedposts-post {
  2892. padding: 0;
  2893. width: 100%;
  2894. }
  2895. .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post-context {
  2896. color: #777;
  2897. font-family: Lato, sans-serif;
  2898. font-size: 13px;
  2899. font-weight: bold;
  2900. line-height: 1.54;
  2901. text-transform: uppercase;
  2902. }
  2903. .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post-title {
  2904. font-family: Lato, sans-serif;
  2905. font-size: 16px;
  2906. font-weight: bold;
  2907. letter-spacing: 0;
  2908. line-height: 1.5;
  2909. }
  2910. .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post-title a {
  2911. border-bottom: 0;
  2912. font-weight: inherit;
  2913. text-decoration: none !important;
  2914. }
  2915. .hentry div#jp-relatedposts div.jp-relatedposts-items span.jp-relatedposts-post-title {
  2916. font-size: inherit;
  2917. line-height: inherit;
  2918. }
  2919. .hentry div#jp-relatedposts div.jp-relatedposts-post-thumbs .jp-relatedposts-post-title {
  2920. padding: 15px 0 0;
  2921. }
  2922. .hentry div#jp-relatedposts .jp-relatedposts-post-a {
  2923. border-bottom: 0;
  2924. }
  2925. .hentry .pd-rating {
  2926. line-height: 1;
  2927. }
  2928. .hentry .rating-msg {
  2929. display: none;
  2930. }
  2931. /*--------------------------------------------------------------
  2932. ## Site Logo
  2933. --------------------------------------------------------------*/
  2934. .site-logo-link {
  2935. align-items: center;
  2936. display: block;
  2937. display: flex;
  2938. justify-content: flex-start;
  2939. min-height: 30px;
  2940. }
  2941. .site-logo-link:active,
  2942. .site-logo-link:focus,
  2943. .site-logo-link:hover {
  2944. opacity: 0.7;
  2945. }
  2946. .site-logo-link {
  2947. max-height: 60px;
  2948. max-width: 270px;
  2949. }
  2950. .site-logo-link img {
  2951. display: block;
  2952. height: auto;
  2953. max-height: 60px;
  2954. max-width: 100%;
  2955. width: auto;
  2956. }
  2957. /*--------------------------------------------------------------
  2958. ## Widgets
  2959. --------------------------------------------------------------*/
  2960. /* Contact Info */
  2961. .widget_contact_info .contact-map {
  2962. margin-bottom: 15px;
  2963. }
  2964. .widget_contact_info > div:last-of-type {
  2965. margin-bottom: 30px;
  2966. }
  2967. /* Display WordPress Posts */
  2968. .widget_jetpack_display_posts_widget .jetpack-display-remote-posts {
  2969. margin: 0;
  2970. }
  2971. .widget_jetpack_display_posts_widget .jetpack-display-remote-posts h4 {
  2972. font-size: 20px;
  2973. line-height: 1.5;
  2974. margin: 0 auto 30px;
  2975. padding: 0;
  2976. }
  2977. .widget_jetpack_display_posts_widget .jetpack-display-remote-posts img {
  2978. margin-bottom: 30px;
  2979. }
  2980. .widget_jetpack_display_posts_widget .jetpack-display-remote-posts p {
  2981. font-size: 16px;
  2982. line-height: 1.5 !important;
  2983. margin: 0 0 30px !important;
  2984. }
  2985. .widget_jetpack_display_posts_widget .jetpack-display-remote-posts h4 + p {
  2986. margin-top: -30px !important;
  2987. }
  2988. /* Goodreads */
  2989. .widget_goodreads .gr_custom_widget {
  2990. margin-bottom: 30px;
  2991. }
  2992. .widget_goodreads br,
  2993. .widget_goodreads center {
  2994. display: none;
  2995. }
  2996. .widget_goodreads h2[class^="gr_custom_header"] {
  2997. font-size: 20px;
  2998. line-height: 1.5;
  2999. margin: 0 auto 30px;
  3000. }
  3001. .widget_goodreads div[class^="gr_custom_title"] a {
  3002. color: #3863c1;
  3003. }
  3004. .widget_goodreads div[class^="gr_custom_title"] a:active,
  3005. .widget_goodreads div[class^="gr_custom_title"] a:focus,
  3006. .widget_goodreads div[class^="gr_custom_title"] a:hover {
  3007. color: #222;
  3008. }
  3009. .widget_goodreads div[class^="gr_custom_container"] {
  3010. padding: 0;
  3011. background: transparent;
  3012. border: 0;
  3013. color: inherit;
  3014. border-radius: 0;
  3015. }
  3016. .widget_goodreads div[class^="gr_custom_each_container"] {
  3017. padding: 15px 0;
  3018. margin: 0;
  3019. border-top: 1px solid #eee;
  3020. border-bottom: 0;
  3021. }
  3022. .widget_goodreads div[class^="gr_custom_each_container"]:last-of-type {
  3023. border-bottom: 1px solid #eee;
  3024. }
  3025. .widget_goodreads div[class^="gr_custom_title"] {
  3026. font-weight: bold;
  3027. }
  3028. .widget_goodreads div[class^="gr_custom_author"] {
  3029. color: #777;
  3030. font-family: Lato, sans-serif;
  3031. font-size: 13px;
  3032. font-weight: bold;
  3033. line-height: 2.3077;
  3034. text-transform: uppercase;
  3035. }
  3036. .widget_goodreads div[class^="gr_custom_container"] div[class^="gr_custom_author"] a {
  3037. border-bottom: 0;
  3038. color: inherit;
  3039. }
  3040. .widget_goodreads div[class^="gr_custom_container"] div[class^="gr_custom_author"] a:active,
  3041. .widget_goodreads div[class^="gr_custom_container"] div[class^="gr_custom_author"] a:focus,
  3042. .widget_goodreads div[class^="gr_custom_container"] div[class^="gr_custom_author"] a:hover {
  3043. color: #222;
  3044. }
  3045. .widget_goodreads center a {
  3046. border-bottom: 0;
  3047. }
  3048. /* Gravatar Profile */
  3049. .widget-grofile .grofile-thumbnail {
  3050. border-radius: 50%;
  3051. float: right;
  3052. margin-bottom: -60px;
  3053. max-width: 60px;
  3054. }
  3055. .widget-grofile h4 {
  3056. font-size: 20px;
  3057. line-height: 1.5;
  3058. margin: 0 0 45px !important;
  3059. max-width: 180px;
  3060. }
  3061. .widget-grofile .grofile-meta {
  3062. clear: both;
  3063. }
  3064. .widget-grofile .grofile-meta + p {
  3065. clear: both;
  3066. margin-top: -30px;
  3067. }
  3068. .widget-grofile .grofile-full-link {
  3069. display: inline-block;
  3070. }
  3071. /* Image */
  3072. .widget_image .jetpack-image-container {
  3073. margin-bottom: 30px;
  3074. }
  3075. .widget_image .jetpack-image-container img {
  3076. vertical-align: middle;
  3077. }
  3078. .widget_image .jetpack-image-container .wp-caption {
  3079. margin-bottom: 0;
  3080. }
  3081. /* RSS Links */
  3082. .widget_rss_links ul {
  3083. border-bottom: 1px solid #eee;
  3084. list-style: none;
  3085. margin-left: 0;
  3086. }
  3087. .widget_rss_links li {
  3088. border-top: 1px solid #eee;
  3089. padding-bottom: 15px;
  3090. padding-top: 15px;
  3091. }
  3092. .widget_rss_links a {
  3093. border-bottom: 0;
  3094. }
  3095. .widget_rss_links p {
  3096. border-top: 1px solid #eee;
  3097. margin-bottom: 15px;
  3098. padding-top: 15px;
  3099. }
  3100. .widget_rss_links p:last-of-type {
  3101. border-bottom: 1px solid #eee;
  3102. margin-bottom: 30px;
  3103. padding-bottom: 15px;
  3104. }
  3105. .widget_rss_links p a + a {
  3106. margin-left: 11px;
  3107. }
  3108. .widget_rss_links img {
  3109. vertical-align: middle;
  3110. }
  3111. /*--------------------------------------------------------------
  3112. # Eventbrite
  3113. --------------------------------------------------------------*/
  3114. .eventbrite-event .entry-header span {
  3115. padding-right: 12px;
  3116. }
  3117. .eventbrite-event .entry-header span:last-of-type {
  3118. padding-right: 0;
  3119. }
  3120. /*--------------------------------------------------------------
  3121. # Transitions
  3122. --------------------------------------------------------------*/
  3123. button,
  3124. input,
  3125. textarea,
  3126. #infinite-footer a,
  3127. #infinite-handle button,
  3128. .comment-navigation a,
  3129. .entry-footer a,
  3130. .entry-meta a,
  3131. .entry-summary a,
  3132. .entry-title a,
  3133. .featured-content .post-thumbnail,
  3134. .header-image a,
  3135. .main-navigation a,
  3136. .page-links a,
  3137. .post-link .genericon,
  3138. .post-navigation a,
  3139. .post-navigation .meta-nav,
  3140. .post-navigation .post-title,
  3141. .hentry:not(.format-gallery):not(.format-image) .post-thumbnail,
  3142. .post-thumbnail:before,
  3143. .post-thumbnail img,
  3144. .posts-navigation a,
  3145. .search-header .search-form:before,
  3146. .search-toggle,
  3147. .site,
  3148. .site-footer a,
  3149. .site-info .sep,
  3150. .site-logo-link,
  3151. .site-title a,
  3152. .sticky-post,
  3153. .widget_tag_cloud a {
  3154. transition: all 350ms ease-in-out;
  3155. }
  3156. /*--------------------------------------------------------------
  3157. # Responsive
  3158. --------------------------------------------------------------*/
  3159. /*--------------------------------------------------------------
  3160. ## x >= 600px
  3161. --------------------------------------------------------------*/
  3162. @media screen and (min-width: 600px) {
  3163. /* Primary Menu */
  3164. .menu-toggle {
  3165. right: 59px;
  3166. }
  3167. /* Paging Navigation */
  3168. .comment-navigation,
  3169. .post-navigation,
  3170. .posts-navigation {
  3171. margin-bottom: 60px;
  3172. }
  3173. .comment-navigation + .comment-respond,
  3174. .posts-navigation {
  3175. padding-top: 60px;
  3176. }
  3177. .comment-navigation .nav-next a:after,
  3178. .comment-navigation .nav-previous a:before,
  3179. .posts-navigation .nav-next a:after,
  3180. .posts-navigation .nav-previous a:before {
  3181. content: '\f429';
  3182. font-size: 16px;
  3183. line-height: 1.875;
  3184. width: 20px;
  3185. }
  3186. .comment-navigation .nav-previous a:before,
  3187. .posts-navigation .nav-previous a:before {
  3188. content: '\f430';
  3189. }
  3190. /* Widgets */
  3191. .sidebar-toggle {
  3192. height: 60px;
  3193. margin-left: -30px;
  3194. margin-top: -30px;
  3195. width: 60px;
  3196. }
  3197. .sidebar-toggle:before {
  3198. height: 58px;
  3199. line-height: 58px;
  3200. width: 58px;
  3201. }
  3202. .widget {
  3203. padding-bottom: 30px;
  3204. }
  3205. .footer-widget {
  3206. padding-top: 60px;
  3207. }
  3208. .footer-widget-inner .widget {
  3209. border-bottom: 0;
  3210. margin-bottom: 0;
  3211. }
  3212. /* Grid */
  3213. .author-info {
  3214. margin: 30px 0 60px;
  3215. }
  3216. .archive .site-main,
  3217. .blog .site-main,
  3218. .error404 .site-main,
  3219. .search .site-main {
  3220. margin-top: 60px;
  3221. }
  3222. .page .site-main,
  3223. .page .widget-area,
  3224. .single .site-main,
  3225. .single .widget-area {
  3226. padding-top: 60px;
  3227. }
  3228. .page .widget-area:before,
  3229. .single .widget-area:before {
  3230. margin-top: -60px;
  3231. }
  3232. /* Header */
  3233. .search-toggled .site-header:before {
  3234. background: #fff;
  3235. content: "";
  3236. display: block;
  3237. height: 100%;
  3238. position: absolute;
  3239. top: 0;
  3240. width: 100%;
  3241. z-index: 2;
  3242. }
  3243. .search-header .search-form {
  3244. display: none;
  3245. }
  3246. .search-form:before,
  3247. .search-form .search-submit,
  3248. .search-header,
  3249. .search-header.toggled .search-form,
  3250. .search-toggle {
  3251. display: block;
  3252. }
  3253. .search-header .search-form {
  3254. left: 0;
  3255. margin-bottom: 0;
  3256. margin-top: -31px;
  3257. position: absolute;
  3258. top: 50%;
  3259. z-index: 2;
  3260. }
  3261. .search-form .search-field {
  3262. border-right: 60px solid transparent;
  3263. }
  3264. .search-header .search-field {
  3265. border-right-width: 119px;
  3266. }
  3267. .site-branding {
  3268. padding-right: 135px;
  3269. }
  3270. .header-image {
  3271. margin: 60px 0;
  3272. }
  3273. /* Featured Content */
  3274. .has-header-image .featured-content {
  3275. margin-top: 60px;
  3276. }
  3277. /* Posts & Pages */
  3278. .archive .hentry,
  3279. .blog .hentry,
  3280. .search .hentry {
  3281. margin-bottom: 30px;
  3282. padding-top: 60px;
  3283. }
  3284. .page .entry-footer {
  3285. margin-bottom: 30px;
  3286. margin-top: 30px;
  3287. }
  3288. .page-header {
  3289. margin-bottom: 60px;
  3290. padding-bottom: 30px;
  3291. }
  3292. .page .hentry:not(.has-post-thumbnail) .entry-header,
  3293. .single .hentry:not(.has-post-thumbnail) .entry-header,
  3294. .single .hentry.format-quote .entry-header,
  3295. .single .hentry.format-video .entry-header {
  3296. margin-bottom: 30px;
  3297. }
  3298. .entry-header-wrapper {
  3299. padding-top: 60px;
  3300. }
  3301. .page-content {
  3302. padding-bottom: 30px;
  3303. }
  3304. /* Post Formats */
  3305. body:not(.single) .content-area .format-gallery.has-post-thumbnail,
  3306. body:not(.single) .content-area .format-image.has-post-thumbnail,
  3307. body:not(.single) .content-area .format-link {
  3308. margin-bottom: 60px;
  3309. }
  3310. /* Comments */
  3311. .comments-area {
  3312. padding-top: 60px;
  3313. }
  3314. .no-comments {
  3315. margin-bottom: 60px;
  3316. }
  3317. .comment-list {
  3318. margin-bottom: 60px;
  3319. padding-bottom: 30px;
  3320. }
  3321. .comment-form {
  3322. padding-bottom: 30px;
  3323. }
  3324. /* Infinite Scroll */
  3325. #infinite-handle {
  3326. margin-bottom: 60px;
  3327. padding-top: 60px;
  3328. }
  3329. .infinite-loader {
  3330. margin-bottom: 60px;
  3331. padding-top: 105px;
  3332. }
  3333. /* Sharedaddy */
  3334. div#jp-relatedposts {
  3335. margin-top: 30px;
  3336. padding-top: 61px;
  3337. }
  3338. .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post:last-of-type {
  3339. margin-bottom: 30px;
  3340. }
  3341. }
  3342. /*--------------------------------------------------------------
  3343. ## x >= 768px
  3344. --------------------------------------------------------------*/
  3345. @media screen and (min-width: 768px) {
  3346. /* Typography */
  3347. body {
  3348. font-size: 20px;
  3349. }
  3350. /* Grid */
  3351. .archive .content-area,
  3352. .blog .content-area,
  3353. .entry-header-inner,
  3354. .error404 .content-area,
  3355. .footer-widget-inner,
  3356. .header-image-inner,
  3357. .search .content-area,
  3358. .site-content-inner,
  3359. .site-footer-inner,
  3360. .site-header-inner {
  3361. width: 648px;
  3362. }
  3363. .archive .hentry,
  3364. .blog .hentry,
  3365. .footer-widget-inner .widget,
  3366. .search .hentry {
  3367. width: 294px;
  3368. }
  3369. .blog .featured-content .hentry {
  3370. padding-bottom: 25%;
  3371. width: 50%;
  3372. }
  3373. .author-info .author-heading {
  3374. max-width: 496px;
  3375. }
  3376. .archive .hentry,
  3377. .author-info .author-heading,
  3378. .blog .hentry,
  3379. .footer-widget-inner .widget,
  3380. .search .hentry {
  3381. float: left;
  3382. }
  3383. .archive .hentry,
  3384. .blog .hentry,
  3385. .footer-widget-inner .widget,
  3386. .search .hentry {
  3387. margin-left: 30px;
  3388. margin-right: 30px;
  3389. }
  3390. .archive .hentry:nth-of-type(even),
  3391. .blog .hentry:nth-of-type(even),
  3392. .footer-widget-inner .widget:nth-of-type(even),
  3393. .search .hentry:nth-of-type(even) {
  3394. margin-right: 0;
  3395. }
  3396. .archive .hentry:nth-of-type(odd),
  3397. .blog .hentry:nth-of-type(odd),
  3398. .footer-widget-inner .widget:nth-of-type(odd),
  3399. .search .hentry:nth-of-type(odd) {
  3400. margin-left: 0;
  3401. }
  3402. .content-area .hentry:nth-of-type(even) {
  3403. clear: right;
  3404. }
  3405. .content-area .hentry:nth-of-type(odd) {
  3406. clear: left;
  3407. }
  3408. /* Header */
  3409. .site-title {
  3410. font-size: 20px;
  3411. line-height: 1.5;
  3412. }
  3413. /* Posts & Pages */
  3414. .archive .hentry,
  3415. .blog .hentry,
  3416. .search .hentry {
  3417. border-top: 0;
  3418. padding-top: 0;
  3419. }
  3420. .post-link {
  3421. height: 195px;
  3422. }
  3423. .author-info .author-avatar {
  3424. display: block;
  3425. float: right;
  3426. width: 60px;
  3427. }
  3428. }
  3429. /*--------------------------------------------------------------
  3430. ## x >= 840px
  3431. --------------------------------------------------------------*/
  3432. @media screen and (min-width: 840px) {
  3433. /* Primary Menu */
  3434. .menu-toggle {
  3435. display: none;
  3436. }
  3437. .main-navigation {
  3438. float: left;
  3439. padding-right: 60px;
  3440. position: relative;
  3441. }
  3442. body:not(.long-menu) .main-navigation {
  3443. border-left: 1px solid #ddd;
  3444. margin-bottom: -15px;
  3445. margin-left: 15px;
  3446. margin-top: -15px;
  3447. padding-bottom: 15px;
  3448. padding-top: 15px;
  3449. }
  3450. body.long-menu .main-navigation {
  3451. clear: both;
  3452. margin-left: -15px;
  3453. }
  3454. body.long-menu:not(.no-branding) .main-navigation {
  3455. margin-top: 15px;
  3456. }
  3457. body.long-menu .main-navigation > div:before {
  3458. background: #fff;
  3459. content: "";
  3460. display: block;
  3461. height: 100%;
  3462. position: absolute;
  3463. width: 1px;
  3464. z-index: 2;
  3465. }
  3466. .main-navigation > div {
  3467. display: block;
  3468. }
  3469. .main-navigation.toggled > div {
  3470. background: #fff;
  3471. border: 0;
  3472. box-shadow: none;
  3473. display: block;
  3474. position: relative;
  3475. top: auto;
  3476. margin-top: 0;
  3477. width: 100%;
  3478. left: auto;
  3479. padding: 0;
  3480. z-index: 9998;
  3481. }
  3482. .main-navigation ul {
  3483. border-bottom: 0;
  3484. }
  3485. .main-navigation ul.toggled {
  3486. border-bottom: 0;
  3487. display: none;
  3488. margin-bottom: 0;
  3489. margin-top: 0;
  3490. padding-left: 0;
  3491. }
  3492. .main-navigation li {
  3493. border-top: 0;
  3494. float: left;
  3495. padding: 0 15px;
  3496. }
  3497. .main-navigation .nav-menu > li + li {
  3498. border-left: 1px solid #eee;
  3499. }
  3500. .main-navigation .menu-item-has-children {
  3501. padding-right: 38.5px;
  3502. position: relative;
  3503. }
  3504. .main-navigation .page_item_has_children > a,
  3505. .main-navigation .menu-item-has-children > a {
  3506. padding-right: 0;
  3507. position: static;
  3508. }
  3509. .main-navigation .menu-item-has-children > a:after {
  3510. color: #3863c1;
  3511. content: "\f431";
  3512. font-size: 16px;
  3513. height: 16px;
  3514. line-height: 1;
  3515. margin-top: -8px;
  3516. position: absolute;
  3517. top: 50%;
  3518. right: 15px;
  3519. width: 16px;
  3520. }
  3521. .main-navigation ul ul .menu-item-has-children > a:after {
  3522. -webkit-transform: rotate(-90deg);
  3523. transform: rotate(-90deg);
  3524. }
  3525. .main-navigation ul ul {
  3526. background: #fff;
  3527. border: 1px solid #ddd;
  3528. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.075);
  3529. float: left;
  3530. padding: 15px 0;
  3531. position: absolute;
  3532. top: 1.875em;
  3533. left: -999em;
  3534. z-index: 99999;
  3535. }
  3536. .main-navigation ul ul ul {
  3537. left: -999em;
  3538. top: -16px;
  3539. }
  3540. .main-navigation ul ul a {
  3541. width: 208px;
  3542. }
  3543. .main-navigation ul ul li {
  3544. background: #fff;
  3545. }
  3546. .main-navigation ul li:hover > ul {
  3547. display: block;
  3548. left: auto;
  3549. margin-left: -16px;
  3550. }
  3551. .main-navigation ul ul li:hover > ul {
  3552. left: 100%;
  3553. }
  3554. /* Grid */
  3555. .archive .content-area,
  3556. .blog .content-area,
  3557. .entry-header-inner,
  3558. .error404 .content-area,
  3559. .footer-widget-inner,
  3560. .header-image-inner,
  3561. .search .content-area,
  3562. .site-content-inner,
  3563. .site-footer-inner,
  3564. .site-header-inner {
  3565. width: 720px;
  3566. }
  3567. .archive .hentry,
  3568. .blog .hentry,
  3569. .footer-widget-inner .widget,
  3570. .search .hentry {
  3571. width: 330px;
  3572. }
  3573. .site-branding {
  3574. max-width: 100%;
  3575. padding-right: 0;
  3576. width: auto;
  3577. }
  3578. .author-info .author-heading {
  3579. max-width: 568px;
  3580. }
  3581. /* Posts & Pages */
  3582. .post-link {
  3583. height: 142px;
  3584. }
  3585. }
  3586. /*--------------------------------------------------------------
  3587. ## x >= 960px
  3588. --------------------------------------------------------------*/
  3589. @media screen and (min-width: 960px) {
  3590. /* Social Menu */
  3591. .social-navigation {
  3592. border-bottom: 0;
  3593. float: left;
  3594. margin-bottom: 0;
  3595. padding-bottom: 0;
  3596. }
  3597. .footer-text + .social-navigation {
  3598. float: right;
  3599. margin-bottom: 12px;
  3600. padding-bottom: 12px;
  3601. position: relative;
  3602. }
  3603. .footer-text + .social-navigation:before {
  3604. background: #eee;
  3605. bottom: 0;
  3606. content: "";
  3607. display: block;
  3608. height: 1px;
  3609. position: absolute;
  3610. right: 0;
  3611. width: 60px;
  3612. }
  3613. .social-navigation a:before {
  3614. font-size: 16px;
  3615. }
  3616. /* Widgets */
  3617. .sidebar-toggle {
  3618. display: none;
  3619. }
  3620. .widget-area {
  3621. display: block;
  3622. }
  3623. .widget_calendar td,
  3624. .widget_calendar tr {
  3625. padding-left: 0;
  3626. padding-right: 0;
  3627. }
  3628. /* Grid */
  3629. .archive .content-area,
  3630. .blog .content-area,
  3631. .entry-header-inner,
  3632. .error404 .content-area,
  3633. .footer-widget-inner,
  3634. .header-image-inner,
  3635. .search .content-area,
  3636. .site-content-inner,
  3637. .site-footer-inner,
  3638. .site-header-inner {
  3639. width: 840px;
  3640. }
  3641. .page .site-main,
  3642. .single .site-main {
  3643. width: 615px;
  3644. }
  3645. .footer-text,
  3646. .footer-text + .site-info,
  3647. .social-navigation + .site-info {
  3648. width: 390px;
  3649. }
  3650. .social-navigation {
  3651. max-width: 390px;
  3652. }
  3653. .archive .hentry,
  3654. .blog .hentry,
  3655. .search .hentry {
  3656. width: 240px;
  3657. }
  3658. .page .widget-area,
  3659. .single .widget-area {
  3660. width: 226px;
  3661. }
  3662. .author-info {
  3663. width: 225px;
  3664. }
  3665. .footer-widget-inner .widget {
  3666. width: 165px;
  3667. }
  3668. .blog .featured-content .hentry {
  3669. padding-bottom: 20%;
  3670. width: 33.3333333%;
  3671. }
  3672. .comments-area {
  3673. margin-right: -60px;
  3674. padding-right: 60px;
  3675. }
  3676. .archive .hentry:nth-of-type(even),
  3677. .blog .hentry:nth-of-type(even),
  3678. .footer-widget-inner .widget:nth-of-type(even),
  3679. .search .hentry:nth-of-type(even) {
  3680. margin-right: 30px;
  3681. }
  3682. .archive .hentry:nth-of-type(odd),
  3683. .blog .hentry:nth-of-type(odd),
  3684. .footer-widget-inner .widget:nth-of-type(odd),
  3685. .search .hentry:nth-of-type(odd) {
  3686. margin-left: 30px;
  3687. }
  3688. .content-area .hentry:nth-of-type(even) {
  3689. clear: none;
  3690. }
  3691. .content-area .hentry:nth-of-type(odd) {
  3692. clear: none;
  3693. }
  3694. .archive .hentry:nth-of-type(3n+1),
  3695. .blog .hentry:nth-of-type(3n+1),
  3696. .footer-widget-inner .widget:nth-of-type(4n+1),
  3697. .search .hentry:nth-of-type(3n+1) {
  3698. margin-left: 0;
  3699. }
  3700. .archive .hentry:nth-of-type(3n+3),
  3701. .blog .hentry:nth-of-type(3n+3),
  3702. .footer-widget-inner .widget:nth-of-type(4n+4),
  3703. .search .hentry:nth-of-type(3n+3) {
  3704. margin-right: 0;
  3705. }
  3706. .content-area .hentry:nth-of-type(3n+1) {
  3707. clear: left;
  3708. }
  3709. .content-area .hentry:nth-of-type(3n+3) {
  3710. clear: right;
  3711. }
  3712. .page .site-main,
  3713. .single .site-main {
  3714. border-right: 1px solid #ddd;
  3715. float: left;
  3716. padding-right: 60px;
  3717. }
  3718. .page .widget-area,
  3719. .single .widget-area {
  3720. border-left: 1px solid #ddd;
  3721. float: right;
  3722. margin-left: -1px;
  3723. padding-left: 60px;
  3724. padding-top: 60px;
  3725. }
  3726. .page .widget-area:before,
  3727. .single .widget-area:before {
  3728. display: none;
  3729. }
  3730. /* Header */
  3731. body:not(.long-menu) .site-branding:before {
  3732. background: #ddd;
  3733. box-sizing: content-box;
  3734. content: "";
  3735. display: block;
  3736. height: 100%;
  3737. padding: 15px 0;
  3738. position: absolute;
  3739. right: -16px;
  3740. bottom: -15px;
  3741. width: 1px;
  3742. }
  3743. /* Footer */
  3744. .page.no-footer-widget .site-footer,
  3745. .single.no-footer-widget .site-footer {
  3746. padding-top: 15px;
  3747. }
  3748. .site-info {
  3749. float: right;
  3750. text-align: right;
  3751. }
  3752. .footer-text {
  3753. border-bottom: 0;
  3754. float: left;
  3755. margin-bottom: 0;
  3756. padding-bottom: 0;
  3757. }
  3758. /* Featured Content */
  3759. .has-header-image .featured-content {
  3760. margin-top: 0;
  3761. }
  3762. /* Posts & Pages */
  3763. .entry-header-wrapper {
  3764. background-image: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
  3765. bottom: 0;
  3766. left: 0;
  3767. padding-bottom: 60px;
  3768. position: absolute;
  3769. }
  3770. .entry-hero .entry-title {
  3771. color: #fff;
  3772. }
  3773. .entry-hero .entry-meta,
  3774. .entry-hero .entry-title {
  3775. max-width: 930px;
  3776. text-shadow: 0 0 0.125em rgba(0, 0, 0, 0.3);
  3777. }
  3778. .entry-hero .entry-meta,
  3779. .entry-hero .entry-meta a {
  3780. color: #fff;
  3781. }
  3782. .post-link {
  3783. height: 166px;
  3784. }
  3785. .author-info {
  3786. border-left: 0;
  3787. border-right: 0;
  3788. border-top: 0;
  3789. margin: 0;
  3790. margin-bottom: 60px;
  3791. margin-left: -60px;
  3792. padding: 0;
  3793. padding-bottom: 30px;
  3794. padding-left: 60px;
  3795. }
  3796. .author-info .author-avatar {
  3797. display: none;
  3798. }
  3799. .author-info .author-heading {
  3800. float: none;
  3801. max-width: 100%;
  3802. }
  3803. /* Comments */
  3804. .comment-list:before,
  3805. .comment-navigation + .comment-respond:before {
  3806. background: #ddd;
  3807. content: "";
  3808. display: block;
  3809. height: 1px;
  3810. position: absolute;
  3811. right: -60px;
  3812. width: 100%;
  3813. }
  3814. .comment-list:before {
  3815. bottom: -1px;
  3816. }
  3817. .comment-navigation + .comment-respond:before {
  3818. top: -1px;
  3819. }
  3820. /* Sharedaddy */
  3821. div#jp-relatedposts:before {
  3822. background: #ddd;
  3823. content: "";
  3824. display: block;
  3825. height: 1px;
  3826. position: absolute;
  3827. right: -60px;
  3828. top: -1px;
  3829. width: 100%;
  3830. }
  3831. .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post {
  3832. margin: 0 15px;
  3833. width: 164.6666667px;
  3834. }
  3835. .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post:first-of-type {
  3836. margin-left: 0;
  3837. }
  3838. .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post:last-of-type {
  3839. margin-right: 0;
  3840. }
  3841. }
  3842. /*--------------------------------------------------------------
  3843. ## x >= 1080px
  3844. --------------------------------------------------------------*/
  3845. @media screen and (min-width: 1080px) {
  3846. /* Grid */
  3847. .archive .content-area,
  3848. .blog .content-area,
  3849. .entry-header-inner,
  3850. .error404 .content-area,
  3851. .footer-widget-inner,
  3852. .header-image-inner,
  3853. .search .content-area,
  3854. .site-content-inner,
  3855. .site-footer-inner,
  3856. .site-header-inner {
  3857. width: 960px;
  3858. }
  3859. .page .site-main,
  3860. .single .site-main {
  3861. width: 705px;
  3862. }
  3863. .footer-text,
  3864. .footer-text + .site-info,
  3865. .social-navigation + .site-info {
  3866. width: 450px;
  3867. }
  3868. .social-navigation {
  3869. max-width: 450px;
  3870. }
  3871. .archive .hentry,
  3872. .blog .hentry,
  3873. .search .hentry {
  3874. width: 280px;
  3875. }
  3876. .page .widget-area,
  3877. .single .widget-area {
  3878. width: 256px;
  3879. }
  3880. .author-info {
  3881. width: 255px;
  3882. }
  3883. .footer-widget-inner .widget {
  3884. width: 195px;
  3885. }
  3886. /* Posts & Pages */
  3887. .post-link {
  3888. height: 225px;
  3889. }
  3890. .author-info .author-avatar {
  3891. display: block;
  3892. }
  3893. .author-info .author-heading {
  3894. float: left;
  3895. max-width: 120px;
  3896. }
  3897. /* Sharedaddy */
  3898. .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post {
  3899. width: 194.6666667px;
  3900. }
  3901. }
  3902. /*--------------------------------------------------------------
  3903. ## x >= 1380px
  3904. --------------------------------------------------------------*/
  3905. @media screen and (min-width: 1380px) {
  3906. /* Grid */
  3907. .archive .content-area,
  3908. .blog .content-area,
  3909. .entry-header-inner,
  3910. .error404 .content-area,
  3911. .footer-widget-inner,
  3912. .header-image-inner,
  3913. .search .content-area,
  3914. .site-content-inner,
  3915. .site-footer-inner,
  3916. .site-header-inner {
  3917. width: 1260px;
  3918. }
  3919. .page .comments-area,
  3920. .page .site-main,
  3921. .single .site-main {
  3922. width: 930px;
  3923. }
  3924. .comments-area,
  3925. .footer-text,
  3926. .footer-text + .site-info,
  3927. .social-navigation + .site-info {
  3928. width: 600px;
  3929. }
  3930. .social-navigation {
  3931. max-width: 600px;
  3932. }
  3933. div#jp-relatedposts,
  3934. .single .entry-content {
  3935. width: 540px;
  3936. }
  3937. .archive .hentry,
  3938. .blog .hentry,
  3939. .search .hentry {
  3940. width: 380px;
  3941. }
  3942. .author-info {
  3943. width: 330px;
  3944. }
  3945. .page .widget-area,
  3946. .single .widget-area {
  3947. width: 331px;
  3948. }
  3949. .entry-footer,
  3950. .footer-widget-inner .widget {
  3951. width: 270px;
  3952. }
  3953. div#jp-relatedposts,
  3954. .comments-area,
  3955. .single .entry-content {
  3956. float: right;
  3957. }
  3958. /* Posts & Pages */
  3959. .author-info .author-heading {
  3960. max-width: 180px;
  3961. }
  3962. /* Sharedaddy */
  3963. .hentry div#jp-relatedposts div.jp-relatedposts-items .jp-relatedposts-post {
  3964. width: 160px;
  3965. }
  3966. }