style.css 53 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613
  1. /*
  2. Theme Name: Sketch
  3. Theme URI: https://wordpress.com/themes/sketch/
  4. Author: Automattic
  5. Author URI: https://wordpress.com/themes/
  6. Description: A clean, responsive portfolio theme with options for a custom site logo, a featured content slider, and lots of room to share your work.
  7. Version: 1.2.6-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: sketch
  11. Tags: art, artwork, classic-menu, clean, featured-content-with-pages, featured-images, fixed-layout, full-width-template, grid-layout, infinite-scroll, minimal, one-column, photoblogging, photography, portfolio, post-slider, responsive-layout, right-sidebar, rtl-language-support, site-logo, theme-options, translation-ready, two-columns
  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. Sketch is based on Underscores http://underscores.me/, (C) 2012-2017 Automattic, Inc.
  15. Resetting and rebuilding styles have been helped along thanks to the fine work of
  16. Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html
  17. along with Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
  18. and Blueprint http://www.blueprintcss.org/
  19. */
  20. /* =Reset
  21. -------------------------------------------------------------- */
  22. html, body, div, span, applet, object, iframe,
  23. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  24. a, abbr, acronym, address, big, cite, code,
  25. del, dfn, em, font, ins, kbd, q, s, samp,
  26. small, strike, strong, sub, sup, tt, var,
  27. dl, dt, dd, ol, ul, li,
  28. fieldset, form, label, legend,
  29. table, caption, tbody, tfoot, thead, tr, th, td, th {
  30. border: 0;
  31. font-family: inherit;
  32. font-size: 100%;
  33. font-style: inherit;
  34. font-weight: inherit;
  35. margin: 0;
  36. outline: 0;
  37. padding: 0;
  38. vertical-align: baseline;
  39. }
  40. html {
  41. font-size: 62.5%;
  42. /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/4/#c790 */
  43. overflow-y: scroll;
  44. /* Keeps page centered in all browsers regardless of content height */
  45. -webkit-text-size-adjust: 100%;
  46. /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
  47. -ms-text-size-adjust: 100%;
  48. /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
  49. }
  50. *,
  51. *:before,
  52. *:after {
  53. /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
  54. -webkit-box-sizing: border-box;
  55. /* Not needed for modern webkit but still used by Blackberry Browser 7.0; see http://caniuse.com/#search=box-sizing */
  56. -moz-box-sizing: border-box;
  57. /* Still needed for Firefox 28; see http://caniuse.com/#search=box-sizing */
  58. box-sizing: border-box;
  59. }
  60. body {
  61. background: #fff;
  62. }
  63. article,
  64. aside,
  65. details,
  66. figcaption,
  67. figure,
  68. footer,
  69. header,
  70. main,
  71. nav,
  72. section {
  73. display: block;
  74. }
  75. ol, ul {
  76. list-style: none;
  77. }
  78. table {
  79. /* tables still need 'cellspacing="0"' in the markup */
  80. border-collapse: separate;
  81. border-spacing: 0;
  82. }
  83. caption, th, td, th {
  84. font-weight: normal;
  85. text-align: left;
  86. }
  87. blockquote:before, blockquote:after,
  88. q:before, q:after {
  89. content: "";
  90. }
  91. blockquote, q {
  92. quotes: "" "";
  93. }
  94. a:focus {
  95. outline: thin dotted;
  96. }
  97. a:hover,
  98. a:active {
  99. outline: 0;
  100. }
  101. a img {
  102. border: 0;
  103. }
  104. /* =Rebuild
  105. ----------------------------------------------- */
  106. * html {
  107. font-size: 100%;
  108. }
  109. html {
  110. font-size: 16px;
  111. line-height: 1.5em;
  112. }
  113. body,
  114. button,
  115. input,
  116. select,
  117. textarea {
  118. color: #404040;
  119. font-family: Georgia, "Bitstream Charter", serif;
  120. font-size: 16px;
  121. font-weight: 400;
  122. }
  123. /* Headings */
  124. h1, h2, h3, h4, h5, h6 {
  125. clear: both;
  126. }
  127. hr {
  128. border: 1px solid #ccc;
  129. border-width: 0 0 1px 0;
  130. height: 0;
  131. margin-top: -1px;
  132. margin-bottom: 24px;
  133. padding-top: 24px;
  134. }
  135. /* Text elements */
  136. p {
  137. margin-bottom: 24px;
  138. }
  139. ul, ol {
  140. margin: 0 0 24px 36px;
  141. }
  142. ul {
  143. list-style: disc;
  144. }
  145. ol {
  146. list-style: decimal;
  147. }
  148. li > ul,
  149. li > ol {
  150. margin-bottom: 0;
  151. margin-left: 24px;
  152. }
  153. dt {
  154. font-weight: 600;
  155. }
  156. dd {
  157. margin: 0 24px 24px;
  158. }
  159. b, strong {
  160. font-weight: 600;
  161. }
  162. dfn, cite, em, i {
  163. font-style: italic;
  164. }
  165. blockquote {
  166. margin: 0 24px;
  167. }
  168. address {
  169. margin: 0 0 24px;
  170. }
  171. pre {
  172. background: rgba(119, 119, 119, 0.5);
  173. font-family: "Courier 10 Pitch", Courier, monospace;
  174. font-size: 0.9375em;
  175. line-height: 1.6em;
  176. margin-top: -2px;
  177. margin-bottom: 24px;
  178. max-width: 100%;
  179. overflow: auto;
  180. padding: 24px;
  181. }
  182. code, kbd, tt, var {
  183. font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  184. font-size: 0.875em;
  185. line-height: 1.71429em;
  186. }
  187. abbr, acronym {
  188. border-bottom: 1px dotted #666;
  189. cursor: help;
  190. }
  191. mark, ins {
  192. background: #fff9c0;
  193. text-decoration: none;
  194. }
  195. sup,
  196. sub {
  197. font-size: 75%;
  198. height: 0;
  199. line-height: 0;
  200. position: relative;
  201. vertical-align: baseline;
  202. }
  203. sup {
  204. bottom: 1ex;
  205. }
  206. sub {
  207. top: .5ex;
  208. }
  209. small {
  210. font-size: 75%;
  211. }
  212. big {
  213. font-size: 125%;
  214. }
  215. figure {
  216. margin: 0;
  217. }
  218. table {
  219. margin: 0 0 24px;
  220. width: 100%;
  221. }
  222. th {
  223. font-weight: bold;
  224. }
  225. img {
  226. height: auto;
  227. /* Make sure images are scaled correctly. */
  228. max-width: 100%;
  229. /* Adhere to container width. */
  230. }
  231. /* Alignment */
  232. .alignleft {
  233. display: inline;
  234. float: left;
  235. margin-right: 24px;
  236. }
  237. .alignright {
  238. display: inline;
  239. float: right;
  240. margin-left: 24px;
  241. }
  242. .aligncenter {
  243. clear: both;
  244. display: block;
  245. margin: 0 auto;
  246. }
  247. /* Text meant only for screen readers */
  248. .screen-reader-text {
  249. clip: rect(1px, 1px, 1px, 1px);
  250. position: absolute !important;
  251. }
  252. .screen-reader-text:focus {
  253. background-color: #fff;
  254. border: 1px solid #000;
  255. -webkit-box-shadow: rgba(0, 0, 0, 0.6) 2px 2px 10px;
  256. -moz-box-shadow: rgba(0, 0, 0, 0.6) 2px 2px 10px;
  257. box-shadow: rgba(0, 0, 0, 0.6) 2px 2px 10px;
  258. clip: auto !important;
  259. display: inline-block;
  260. font-weight: 600;
  261. line-height: 24px;
  262. padding: 24px;
  263. z-index: 100000;
  264. position: absolute !important;
  265. top: 24px;
  266. left: 24px;
  267. }
  268. /* Clearing */
  269. .clear:before,
  270. .clear:after {
  271. content: '';
  272. display: table;
  273. }
  274. .clear:after {
  275. clear: both;
  276. }
  277. .entry-content:before,
  278. .entry-content:after {
  279. content: '';
  280. display: table;
  281. }
  282. .entry-content:after {
  283. clear: both;
  284. }
  285. .comment-content:before,
  286. .comment-content:after {
  287. content: '';
  288. display: table;
  289. }
  290. .comment-content:after {
  291. clear: both;
  292. }
  293. .site-header:before,
  294. .site-header:after {
  295. content: '';
  296. display: table;
  297. }
  298. .site-header:after {
  299. clear: both;
  300. }
  301. .site-content:before,
  302. .site-content:after {
  303. content: '';
  304. display: table;
  305. }
  306. .site-content:after {
  307. clear: both;
  308. }
  309. .site-footer:before,
  310. .site-footer:after {
  311. content: '';
  312. display: table;
  313. }
  314. .site-footer:after {
  315. clear: both;
  316. }
  317. /* =Forms
  318. ----------------------------------------------- */
  319. button,
  320. input,
  321. select,
  322. textarea {
  323. margin: 0;
  324. /* Addresses margins set differently in IE6/7, F3, S5, Chrome */
  325. vertical-align: baseline;
  326. /* Improves appearance and consistency in all browsers */
  327. *vertical-align: middle;
  328. /* Improves appearance and consistency in all browsers */
  329. }
  330. button,
  331. input[type="button"],
  332. input[type="reset"],
  333. input[type="submit"] {
  334. border: 1px solid #ccc;
  335. border-color: #ccc #ccc #bbb #ccc;
  336. border-radius: 3px;
  337. background: #e6e6e6;
  338. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
  339. color: rgba(0, 0, 0, 0.8);
  340. cursor: pointer;
  341. /* Improves usability and consistency of cursor style between image-type 'input' and others */
  342. -webkit-appearance: button;
  343. /* Corrects inability to style clickable 'input' types in iOS */
  344. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
  345. }
  346. button:hover,
  347. input[type="button"]:hover,
  348. input[type="reset"]:hover,
  349. input[type="submit"]:hover {
  350. border-color: #ccc #bbb #aaa #bbb;
  351. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
  352. }
  353. button:focus,
  354. input[type="button"]:focus,
  355. input[type="reset"]:focus,
  356. input[type="submit"]:focus,
  357. button:active,
  358. input[type="button"]:active,
  359. input[type="reset"]:active,
  360. input[type="submit"]:active {
  361. border-color: #aaa #bbb #bbb #bbb;
  362. box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
  363. }
  364. input[type="checkbox"],
  365. input[type="radio"] {
  366. padding: 0;
  367. /* Addresses excess padding in IE8/9 */
  368. }
  369. input[type="search"] {
  370. -webkit-appearance: textfield;
  371. /* Addresses appearance set to searchfield in S5, Chrome */
  372. -webkit-box-sizing: content-box;
  373. /* Addresses box sizing set to border-box in S5, Chrome (include -moz to future-proof) */
  374. -moz-box-sizing: content-box;
  375. box-sizing: content-box;
  376. }
  377. input[type="search"]::-webkit-search-decoration {
  378. /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
  379. -webkit-appearance: none;
  380. }
  381. button::-moz-focus-inner,
  382. input::-moz-focus-inner {
  383. /* Corrects inner padding and border displayed oddly in FF3 www.sitepen.com/blog/2008/05/14/the-devils-in-the-details-fixing-dojos-toolbar-buttons/ */
  384. border: 0;
  385. padding: 0;
  386. }
  387. input[type="text"],
  388. input[type="email"],
  389. input[type="url"],
  390. input[type="password"],
  391. input[type="search"],
  392. textarea {
  393. color: #666;
  394. border: 1px solid #ccc;
  395. border-radius: 3px;
  396. -webkit-appearance: none;
  397. }
  398. input[type="text"]:focus,
  399. input[type="email"]:focus,
  400. input[type="url"]:focus,
  401. input[type="password"]:focus,
  402. input[type="search"]:focus,
  403. textarea:focus {
  404. color: #111;
  405. }
  406. input[type="text"],
  407. input[type="email"],
  408. input[type="url"],
  409. input[type="password"],
  410. input[type="search"] {
  411. padding: 3px;
  412. }
  413. textarea {
  414. overflow: auto;
  415. /* Removes default vertical scrollbar in IE6/7/8/9 */
  416. padding-left: 3px;
  417. vertical-align: top;
  418. /* Improves readability and alignment in all browsers */
  419. width: 98%;
  420. }
  421. * html {
  422. font-size: 100%;
  423. }
  424. html {
  425. font-size: 16px;
  426. line-height: 1.7em;
  427. }
  428. .menu-toggle:before,
  429. .format-link .entry-title a:after,
  430. .social-links ul a:before,
  431. .flex-direction-nav a:before {
  432. text-rendering: auto;
  433. -webkit-font-smoothing: antialiased;
  434. -moz-osx-font-smoothing: grayscale;
  435. font-family: "Genericons";
  436. font-size: 24px;
  437. font-style: normal;
  438. font-weight: normal;
  439. line-height: 1;
  440. text-decoration: none;
  441. vertical-align: text-bottom;
  442. }
  443. .sticky,
  444. .bypostauthor {}
  445. /* =Global */
  446. body {
  447. background: #eeeeee;
  448. color: #333333;
  449. font-family: Lato, Helvetica, Arial, sans-serif;
  450. font-size: 16px;
  451. font-weight: 300;
  452. line-height: 27px;
  453. }
  454. /* Alignment */
  455. .alignleft {
  456. display: inline;
  457. float: left;
  458. margin: 14px 27px 14px 0;
  459. }
  460. .alignright {
  461. display: inline;
  462. float: right;
  463. margin: 14px 0 14px 27px;
  464. }
  465. .aligncenter {
  466. clear: both;
  467. display: block;
  468. margin: 14px auto;
  469. }
  470. .alignnone {
  471. margin-top: 14px;
  472. margin-bottom: 14px;
  473. }
  474. /* Headings */
  475. h1 {
  476. font-size: 28px;
  477. font-weight: normal;
  478. letter-spacing: 1px;
  479. margin: 27px 0;
  480. text-transform: uppercase;
  481. }
  482. h2 {
  483. font-size: 20px;
  484. font-weight: normal;
  485. letter-spacing: 1px;
  486. margin: 27px 0;
  487. text-transform: uppercase;
  488. }
  489. h3 {
  490. font-size: 20px;
  491. font-weight: normal;
  492. letter-spacing: 1px;
  493. margin: 27px 0;
  494. text-transform: uppercase;
  495. }
  496. h4 {
  497. font-size: 16px;
  498. font-weight: normal;
  499. letter-spacing: 1px;
  500. margin: 27px 0;
  501. text-transform: uppercase;
  502. }
  503. h5 {
  504. font-size: 16px;
  505. font-weight: normal;
  506. letter-spacing: 1px;
  507. margin: 27px 0;
  508. text-transform: uppercase;
  509. }
  510. h6 {
  511. font-size: 13px;
  512. font-weight: normal;
  513. letter-spacing: 1px;
  514. margin: 27px 0;
  515. text-transform: uppercase;
  516. }
  517. hr {
  518. background-color: #eeeeee;
  519. height: 1px;
  520. margin-bottom: 26px;
  521. padding: 0;
  522. }
  523. /* Text elements */
  524. p {
  525. margin-bottom: 27px;
  526. }
  527. ul {
  528. margin: 0 0 27px 27px;
  529. list-style: disc;
  530. }
  531. ul ul {
  532. list-style: square;
  533. }
  534. ul ul ul {
  535. list-style: circle;
  536. }
  537. ol {
  538. margin: 0 0 27px 27px;
  539. list-style: decimal;
  540. }
  541. ol ol {
  542. list-style: lower-alpha;
  543. }
  544. ol ol ol {
  545. list-style: lower-roman;
  546. }
  547. li > ul,
  548. li > ol {
  549. margin-bottom: 0;
  550. margin-left: 27px;
  551. }
  552. dt {
  553. font-weight: 400;
  554. }
  555. dd {
  556. margin: 14px 0 14px 27px;
  557. }
  558. b, strong {
  559. font-weight: bold;
  560. }
  561. dfn, cite, em, i {
  562. font-style: italic;
  563. }
  564. blockquote {
  565. font-size: 1.25em;
  566. line-height: 1.36em;
  567. border-left: 3px solid #eeeeee;
  568. color: #999999;
  569. font-style: italic;
  570. line-height: 1.5;
  571. margin: 0 0 27px;
  572. padding-left: 24px;
  573. }
  574. blockquote blockquote {
  575. font-size: inherit;
  576. }
  577. blockquote cite {
  578. display: block;
  579. font-size: inherit;
  580. font-weight: inherit;
  581. font-style: inherit;
  582. text-align: right;
  583. width: 100%;
  584. }
  585. button,
  586. input[type="button"],
  587. input[type="reset"],
  588. input[type="submit"] {
  589. background: white;
  590. border: 3px solid #eeeeee;
  591. -webkit-box-sizing: border-box;
  592. -moz-box-sizing: border-box;
  593. box-sizing: border-box;
  594. -webkit-box-shadow: none;
  595. -moz-box-shadow: none;
  596. box-shadow: none;
  597. color: #999999;
  598. -webkit-transition: all 0.3s ease-in-out;
  599. -moz-transition: all 0.3s ease-in-out;
  600. -o-transition: all 0.3s ease-in-out;
  601. transition: all 0.3s ease-in-out;
  602. font-family: Lato, Helvetica, Arial, sans-serif;
  603. letter-spacing: 2px;
  604. text-transform: uppercase;
  605. padding: 10px 14px;
  606. text-shadow: none;
  607. }
  608. button:hover, button:focus, button:active,
  609. input[type="button"]:hover,
  610. input[type="button"]:focus,
  611. input[type="button"]:active,
  612. input[type="reset"]:hover,
  613. input[type="reset"]:focus,
  614. input[type="reset"]:active,
  615. input[type="submit"]:hover,
  616. input[type="submit"]:focus,
  617. input[type="submit"]:active {
  618. border-color: #f68060;
  619. -webkit-box-shadow: none;
  620. -moz-box-shadow: none;
  621. box-shadow: none;
  622. color: #f68060;
  623. -webkit-transition: all 0.3s ease-in-out;
  624. -moz-transition: all 0.3s ease-in-out;
  625. -o-transition: all 0.3s ease-in-out;
  626. transition: all 0.3s ease-in-out;
  627. }
  628. input[type="text"],
  629. input[type="email"],
  630. input[type="url"],
  631. input[type="password"],
  632. input[type="search"] {
  633. border: 1px solid #eeeeee;
  634. -webkit-box-sizing: border-box;
  635. -moz-box-sizing: border-box;
  636. box-sizing: border-box;
  637. max-width: 100%;
  638. padding: 12px;
  639. }
  640. input[type="text"]:active, input[type="text"]:focus,
  641. input[type="email"]:active,
  642. input[type="email"]:focus,
  643. input[type="url"]:active,
  644. input[type="url"]:focus,
  645. input[type="password"]:active,
  646. input[type="password"]:focus,
  647. input[type="search"]:active,
  648. input[type="search"]:focus {
  649. background: white;
  650. border-color: #d4d4d4;
  651. outline: none;
  652. }
  653. textarea {
  654. border: 1px solid #eeeeee;
  655. -webkit-box-sizing: border-box;
  656. -moz-box-sizing: border-box;
  657. box-sizing: border-box;
  658. max-width: 100%;
  659. padding: 12px;
  660. }
  661. textarea:active, textarea:focus {
  662. border-color: #d4d4d4;
  663. outline: none;
  664. }
  665. address {
  666. font-style: italic;
  667. margin-bottom: 27px;
  668. }
  669. pre {
  670. background: rgba(0, 0, 0, 0.03);
  671. font-family: "Courier 10 Pitch", Courier, monospace;
  672. font-size: 0.8125em;
  673. line-height: 2.09231em;
  674. margin-bottom: 27px;
  675. padding: 27px;
  676. overflow: auto;
  677. max-width: 100%;
  678. }
  679. code, kbd, tt, var {
  680. font: 13px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  681. font-size: 0.8125em;
  682. line-height: 2.09231em;
  683. }
  684. abbr, acronym {
  685. border-bottom: 1px dotted #eeeeee;
  686. cursor: help;
  687. margin-bottom: 26px;
  688. }
  689. mark, ins {
  690. background: #fff9c0;
  691. text-decoration: none;
  692. }
  693. sup,
  694. sub {
  695. font-size: 0.8125em;
  696. line-height: 2.09231em;
  697. height: 0;
  698. line-height: 0;
  699. position: relative;
  700. vertical-align: baseline;
  701. }
  702. sup {
  703. bottom: 1ex;
  704. }
  705. sub {
  706. top: 0.5ex;
  707. }
  708. small {
  709. font-size: 0.8125em;
  710. line-height: 2.09231em;
  711. }
  712. big {
  713. font-size: 1.25em;
  714. line-height: 1.36em;
  715. }
  716. figure {
  717. margin: 0;
  718. }
  719. table {
  720. margin-bottom: 27px;
  721. width: 100%;
  722. }
  723. td, th {
  724. border-bottom: 1px solid #eeeeee;
  725. border-collapse: collapse;
  726. padding: 7px 3px 6px;
  727. }
  728. th {
  729. border-bottom-width: 3px;
  730. font-weight: bold;
  731. letter-spacing: 2px;
  732. padding-bottom: 4px;
  733. text-transform: uppercase;
  734. }
  735. img {
  736. height: auto;
  737. max-width: 100%;
  738. }
  739. /* Links */
  740. a {
  741. color: #f68060;
  742. -webkit-transition: all 0.2s ease-in-out;
  743. -moz-transition: all 0.2s ease-in-out;
  744. -o-transition: all 0.2s ease-in-out;
  745. transition: all 0.2s ease-in-out;
  746. text-decoration: none;
  747. }
  748. a:visited {
  749. color: #f68060;
  750. }
  751. a:hover, a:focus, a:active {
  752. color: #f68060;
  753. -webkit-transition: all 0.2s ease-in-out;
  754. -moz-transition: all 0.2s ease-in-out;
  755. -o-transition: all 0.2s ease-in-out;
  756. transition: all 0.2s ease-in-out;
  757. }
  758. /* Show or hide a11y text */
  759. /* Clearing */
  760. /* =Layout */
  761. .site {
  762. background: white;
  763. margin: 0 auto;
  764. padding: 27px;
  765. }
  766. .has-site-logo .site {
  767. padding-top: 14px;
  768. }
  769. .site-footer {
  770. font-size: 0.8125em;
  771. line-height: 2.09231em;
  772. border-top: 3px solid #eeeeee;
  773. color: #999999;
  774. clear: both;
  775. letter-spacing: 1px;
  776. margin: 24px 0 0;
  777. padding: 14px 0 0;
  778. text-align: center;
  779. text-transform: uppercase;
  780. width: 100%;
  781. }
  782. .site-footer a {
  783. color: #999999;
  784. text-decoration: none;
  785. }
  786. .site-footer a:hover {
  787. color: #f68060;
  788. }
  789. .site-footer .sep {
  790. clear: both;
  791. display: block;
  792. margin: 0;
  793. height: 0;
  794. visibility: hidden;
  795. }
  796. .site-content .widget-area {
  797. border-top: 3px solid #eeeeee;
  798. margin-top: 27px;
  799. padding-top: 24px;
  800. }
  801. /* =Header */
  802. .site-header {
  803. border-bottom: 3px solid #eeeeee;
  804. margin: 0 0 27px;
  805. padding: 0 0 24px;
  806. position: relative;
  807. z-index: 5;
  808. }
  809. .site-logo {
  810. display: inline-block;
  811. margin-right: 14px;
  812. width: auto;
  813. max-height: 70px;
  814. vertical-align: middle;
  815. }
  816. .custom-header {
  817. border-radius: 5px;
  818. display: block;
  819. margin: 0 auto;
  820. margin-bottom: 27px;
  821. }
  822. .site-branding {
  823. clear: none;
  824. float: left;
  825. margin-bottom: 14px;
  826. max-width: 60%;
  827. position: relative;
  828. z-index: 5;
  829. }
  830. .site-title {
  831. font-size: 1.75em;
  832. line-height: 1;
  833. clear: none;
  834. display: inline-block;
  835. letter-spacing: 3px;
  836. margin: 0;
  837. position: relative;
  838. z-index: 2;
  839. }
  840. .site-title a {
  841. color: #333333;
  842. text-decoration: none;
  843. }
  844. .has-site-logo .site-title {
  845. vertical-align: middle;
  846. }
  847. .site-description {
  848. display: none;
  849. }
  850. /* =Menu */
  851. .main-navigation {
  852. display: block;
  853. font-weight: normal;
  854. letter-spacing: 2px;
  855. position: relative;
  856. text-transform: uppercase;
  857. z-index: 1;
  858. }
  859. .has-site-logo .main-navigation {
  860. height: 70px;
  861. }
  862. .has-site-logo .main-navigation.toggled {
  863. height: auto;
  864. }
  865. .main-navigation ul {
  866. clear: both;
  867. list-style: none;
  868. margin: 0;
  869. padding-left: 0;
  870. }
  871. .main-navigation li {
  872. display: block;
  873. position: relative;
  874. }
  875. .main-navigation li:hover > a {
  876. color: #f68060;
  877. }
  878. .main-navigation a {
  879. border-bottom: 1px solid #eeeeee;
  880. color: #999999;
  881. display: block;
  882. padding: 13px 0 14px;
  883. text-decoration: none;
  884. }
  885. .main-navigation ul:first-child > li:last-of-type a {
  886. border-bottom: 0;
  887. }
  888. .current_page_item a,
  889. .current-menu-item a {
  890. color: #f68060;
  891. }
  892. /* Small menu */
  893. .menu-toggle,
  894. .main-navigation.toggled .nav-menu {
  895. display: block;
  896. }
  897. .menu-toggle {
  898. border: 1px solid #eeeeee;
  899. clear: none;
  900. float: right;
  901. padding: 5px 7px;
  902. position: relative;
  903. }
  904. .menu-toggle:before {
  905. content: "\f419";
  906. display: inline-block;
  907. font-size: 16px;
  908. margin-right: 5px;
  909. padding-bottom: 2px;
  910. vertical-align: middle;
  911. }
  912. .toggled .menu-toggle {
  913. border-color: #f68060;
  914. color: #f68060;
  915. }
  916. .main-navigation ul:first-child {
  917. display: none;
  918. }
  919. .main-navigation ul ul li a {
  920. padding-left: 14px;
  921. }
  922. .main-navigation ul ul ul li a {
  923. padding-left: 28px;
  924. }
  925. .main-navigation ul ul ul ul li a {
  926. padding-left: 42px;
  927. }
  928. /* =Content */
  929. .hentry {
  930. border-bottom: 1px solid #eeeeee;
  931. margin: 0 0 53px;
  932. padding: 0 0 27px;
  933. position: relative;
  934. }
  935. .site-main .hentry:last-of-type {
  936. border-bottom: 0;
  937. }
  938. .byline,
  939. .updated {
  940. display: none;
  941. }
  942. .single .byline,
  943. .group-blog .byline {
  944. display: inline;
  945. }
  946. .attachment-sketch-featured {
  947. border-radius: 3px;
  948. margin: 14px 0 0;
  949. opacity: 1;
  950. -webkit-transition: all 0.3s ease-in-out;
  951. -moz-transition: all 0.3s ease-in-out;
  952. -o-transition: all 0.3s ease-in-out;
  953. transition: all 0.3s ease-in-out;
  954. }
  955. .hentry:hover .attachment-sketch-featured {
  956. opacity: 0.7;
  957. -webkit-transition: all 0.3s ease-in-out;
  958. -moz-transition: all 0.3s ease-in-out;
  959. -o-transition: all 0.3s ease-in-out;
  960. transition: all 0.3s ease-in-out;
  961. }
  962. .entry-footer,
  963. .entry-meta,
  964. .portfolio-entry-meta {
  965. font-size: 0.8125em;
  966. line-height: 2.09231em;
  967. color: #999999;
  968. font-weight: normal;
  969. letter-spacing: 1px;
  970. margin: 0 0 27px;
  971. text-transform: uppercase;
  972. }
  973. .entry-footer a,
  974. .entry-meta a,
  975. .portfolio-entry-meta a {
  976. color: #999999;
  977. }
  978. .entry-footer a:hover,
  979. .entry-meta a:hover,
  980. .portfolio-entry-meta a:hover {
  981. color: #f68060;
  982. }
  983. .entry-title,
  984. .portfolio-entry-title {
  985. font-size: 1.75em;
  986. line-height: 1.10em;
  987. line-height: 1.21429em;
  988. margin: 7px 0;
  989. word-wrap: break-word;
  990. }
  991. .entry-title a,
  992. .portfolio-entry-title a {
  993. color: #999999;
  994. text-decoration: none;
  995. }
  996. .entry-title a:hover,
  997. .portfolio-entry-title a:hover {
  998. color: #f68060;
  999. }
  1000. .sep {
  1001. margin: 0 3px;
  1002. }
  1003. .page-links {
  1004. clear: both;
  1005. margin: 27px 0;
  1006. word-spacing: 7px;
  1007. }
  1008. .page-title {
  1009. border-bottom: 1px solid #eeeeee;
  1010. color: #999999;
  1011. font-size: 1.25em;
  1012. line-height: 1.36em;
  1013. letter-spacing: 2px;
  1014. margin: 0;
  1015. padding-bottom: 13px;
  1016. }
  1017. .page-header {
  1018. margin-bottom: 27px;
  1019. }
  1020. .taxonomy-description {
  1021. font-style: italic;
  1022. margin-top: 27px;
  1023. }
  1024. /* =Portfolio */
  1025. .page-template-portfolio-page-php .site-header {
  1026. border-bottom: 0;
  1027. margin-bottom: 0;
  1028. }
  1029. .page-template-portfolio-page-php.paged .site-header {
  1030. border-bottom: 3px solid #eeeeee;
  1031. margin: 0 0 27px;
  1032. }
  1033. body[class*="jetpack-portfolio"].archive .site-header {
  1034. margin-bottom: 14px;
  1035. }
  1036. .page-template-fullwidth-page-php .site-content,
  1037. .page-template-fullwidth-page-php .content-area,
  1038. .page-template-fullwidth-page-php .site-main,
  1039. body[class*="jetpack-portfolio"] .site-content,
  1040. body[class*="jetpack-portfolio"] .content-area,
  1041. body[class*="jetpack-portfolio"] .site-main,
  1042. .no-sidebar .site-content,
  1043. .no-sidebar .content-area,
  1044. .no-sidebar .site-main {
  1045. margin: 0 auto;
  1046. }
  1047. .single-jetpack-portfolio .content-area,
  1048. .single-jetpack-portfolio .site-main {
  1049. float: none;
  1050. margin: 0 auto;
  1051. }
  1052. .portfolio-featured-image img,
  1053. .single-jetpack-portfolio .entry-thumbnail img {
  1054. display: block;
  1055. margin: 0 auto 27px;
  1056. }
  1057. .page-template-portfolio-page-php .page-content:before,
  1058. .page-template-portfolio-page-php .page-content:after,
  1059. .project-navigation-wrapper .page-content:before,
  1060. .project-navigation-wrapper .page-content:after,
  1061. .page-template-portfolio-template-php .page-content:before,
  1062. .page-template-portfolio-template-php .page-content:after,
  1063. body[class*="jetpack-portfolio"].archive .page-content:before,
  1064. body[class*="jetpack-portfolio"].archive .page-content:after {
  1065. content: "";
  1066. display: table;
  1067. }
  1068. .page-template-portfolio-page-php .page-content:after,
  1069. .project-navigation-wrapper .page-content:after,
  1070. .page-template-portfolio-template-php .page-content:after,
  1071. body[class*="jetpack-portfolio"].archive .page-content:after {
  1072. clear: both;
  1073. }
  1074. .page-template-portfolio-page-php .page-content,
  1075. .project-navigation-wrapper .page-content,
  1076. .page-template-portfolio-template-php .page-content,
  1077. body[class*="jetpack-portfolio"].archive .page-content {
  1078. border-bottom: 3px solid #eeeeee;
  1079. margin-bottom: 24px;
  1080. padding-bottom: 27px;
  1081. }
  1082. .page-template-portfolio-page-php .projects,
  1083. .project-navigation-wrapper .projects,
  1084. .page-template-portfolio-template-php .projects,
  1085. body[class*="jetpack-portfolio"].archive .projects {
  1086. clear: both;
  1087. width: 100%;
  1088. }
  1089. .page-template-portfolio-page-php .entry-thumbnail,
  1090. .project-navigation-wrapper .entry-thumbnail,
  1091. .page-template-portfolio-template-php .entry-thumbnail,
  1092. body[class*="jetpack-portfolio"].archive .entry-thumbnail {
  1093. border-radius: 3px;
  1094. display: block;
  1095. width: 100%;
  1096. }
  1097. .page-template-portfolio-page-php .entry-thumbnail.no-thumbnail,
  1098. .project-navigation-wrapper .entry-thumbnail.no-thumbnail,
  1099. .page-template-portfolio-template-php .entry-thumbnail.no-thumbnail,
  1100. body[class*="jetpack-portfolio"].archive .entry-thumbnail.no-thumbnail {
  1101. background: #eeeeee;
  1102. }
  1103. .page-template-portfolio-page-php .entry-thumbnail .edit-link a,
  1104. .project-navigation-wrapper .entry-thumbnail .edit-link a,
  1105. .page-template-portfolio-template-php .entry-thumbnail .edit-link a,
  1106. body[class*="jetpack-portfolio"].archive .entry-thumbnail .edit-link a {
  1107. font-size: 0.8125em;
  1108. line-height: 2.09231em;
  1109. background: white;
  1110. border: 1px solid #eeeeee;
  1111. border-radius: 3px;
  1112. color: #999999;
  1113. display: block;
  1114. font-weight: normal;
  1115. letter-spacing: 1px;
  1116. opacity: 0;
  1117. padding: 0 5px;
  1118. position: absolute;
  1119. top: 14px;
  1120. right: 14px;
  1121. text-transform: uppercase;
  1122. visibility: hidden;
  1123. -webkit-transition: opacity 0.3s ease-in-out;
  1124. -moz-transition: opacity 0.3s ease-in-out;
  1125. -o-transition: opacity 0.3s ease-in-out;
  1126. transition: opacity 0.3s ease-in-out;
  1127. }
  1128. .page-template-portfolio-page-php .site-content,
  1129. .page-template-portfolio-page-php .content-area,
  1130. .page-template-portfolio-page-php .site-main,
  1131. .project-navigation-wrapper .site-content,
  1132. .project-navigation-wrapper .content-area,
  1133. .project-navigation-wrapper .site-main,
  1134. .page-template-portfolio-template-php .site-content,
  1135. .page-template-portfolio-template-php .content-area,
  1136. .page-template-portfolio-template-php .site-main,
  1137. body[class*="jetpack-portfolio"].archive .site-content,
  1138. body[class*="jetpack-portfolio"].archive .content-area,
  1139. body[class*="jetpack-portfolio"].archive .site-main {
  1140. margin: 0 auto;
  1141. }
  1142. .page-template-portfolio-page-php .jetpack-portfolio,
  1143. .project-navigation-wrapper .jetpack-portfolio,
  1144. .page-template-portfolio-template-php .jetpack-portfolio,
  1145. body[class*="jetpack-portfolio"].archive .jetpack-portfolio {
  1146. list-style: none;
  1147. margin-bottom: 14px;
  1148. opacity: 1;
  1149. padding: 0;
  1150. -webkit-transition: opacity 0.3s ease-in-out;
  1151. -moz-transition: opacity 0.3s ease-in-out;
  1152. -o-transition: opacity 0.3s ease-in-out;
  1153. transition: opacity 0.3s ease-in-out;
  1154. }
  1155. .page-template-portfolio-page-php .jetpack-portfolio img,
  1156. .project-navigation-wrapper .jetpack-portfolio img,
  1157. .page-template-portfolio-template-php .jetpack-portfolio img,
  1158. .jetpack-portfolio-shortcode .portfolio-featured-image img,
  1159. body[class*="jetpack-portfolio"].archive .jetpack-portfolio img {
  1160. border-radius: 3px;
  1161. display: block;
  1162. margin: 0 auto;
  1163. }
  1164. .page-template-portfolio-page-php .jetpack-portfolio:hover,
  1165. .project-navigation-wrapper .jetpack-portfolio:hover,
  1166. .page-template-portfolio-template-php .jetpack-portfolio:hover,
  1167. body[class*="jetpack-portfolio"].archive .jetpack-portfolio:hover {
  1168. opacity: 0.7;
  1169. -webkit-transition: opacity 0.3s ease-in-out;
  1170. -moz-transition: opacity 0.3s ease-in-out;
  1171. -o-transition: opacity 0.3s ease-in-out;
  1172. transition: opacity 0.3s ease-in-out;
  1173. }
  1174. .page-template-portfolio-page-php .jetpack-portfolio:hover a,
  1175. .project-navigation-wrapper .jetpack-portfolio:hover a,
  1176. .page-template-portfolio-template-php .jetpack-portfolio:hover a,
  1177. body[class*="jetpack-portfolio"].archive .jetpack-portfolio:hover a {
  1178. color: #f68060;
  1179. }
  1180. .page-template-portfolio-page-php .jetpack-portfolio:hover .edit-link a,
  1181. .project-navigation-wrapper .jetpack-portfolio:hover .edit-link a,
  1182. .page-template-portfolio-template-php .jetpack-portfolio:hover .edit-link a,
  1183. body[class*="jetpack-portfolio"].archive .jetpack-portfolio:hover .edit-link a {
  1184. color: #999999;
  1185. opacity: 1;
  1186. visibility: visible;
  1187. -webkit-transition: opacity 0.3s ease-in-out;
  1188. -moz-transition: opacity 0.3s ease-in-out;
  1189. -o-transition: opacity 0.3s ease-in-out;
  1190. transition: opacity 0.3s ease-in-out;
  1191. }
  1192. .page-template-portfolio-page-php .portfolio-entry-title,
  1193. .page-template-portfolio-page-php .portfolio-entry-meta,
  1194. .page-template-portfolio-page-php .entry-title,
  1195. .page-template-portfolio-page-php .entry-meta,
  1196. .project-navigation-wrapper .portfolio-entry-title,
  1197. .project-navigation-wrapper .portfolio-entry-meta,
  1198. .project-navigation-wrapper .entry-title,
  1199. .project-navigation-wrapper .entry-meta,
  1200. .page-template-portfolio-template-php .portfolio-entry-title,
  1201. .page-template-portfolio-template-php .portfolio-entry-meta,
  1202. .page-template-portfolio-template-php .entry-title,
  1203. .page-template-portfolio-template-php .entry-meta,
  1204. body[class*="jetpack-portfolio"].archive .portfolio-entry-title,
  1205. body[class*="jetpack-portfolio"].archive .portfolio-entry-meta,
  1206. body[class*="jetpack-portfolio"].archive .entry-title,
  1207. body[class*="jetpack-portfolio"].archive .entry-meta {
  1208. font-size: 0.8125em;
  1209. line-height: 1.546em;
  1210. letter-spacing: 1px;
  1211. margin: 14px 0;
  1212. text-align: center;
  1213. }
  1214. .portfolio-entry-content {
  1215. margin: 0 0 27px;
  1216. }
  1217. .page-template-portfolio-page-php .flexslider .jetpack-portfolio:hover,
  1218. .project-navigation-wrapper .flexslider .jetpack-portfolio:hover,
  1219. .page-template-portfolio-template-php .flexslider .jetpack-portfolio:hover,
  1220. body[class*="jetpack-portfolio"].archive .flexslider .jetpack-portfolio:hover,
  1221. .page-template-portfolio-page-php .flexslider .jetpack-portfolio:hover .attachment-sketch-featured,
  1222. .project-navigation-wrapper .flexslider .jetpack-portfolio:hover .attachment-sketch-featured,
  1223. .page-template-portfolio-template-php .flexslider .jetpack-portfolio:hover .attachment-sketch-featured,
  1224. body[class*="jetpack-portfolio"].archive .flexslider .jetpack-portfolio:hover .attachment-sketch-featured {
  1225. opacity: 1;
  1226. }
  1227. .page-template-portfolio-page-php .flexslider .jetpack-portfolio .entry-meta a,
  1228. .project-navigation-wrapper .flexslider .jetpack-portfolio .entry-meta a,
  1229. .page-template-portfolio-template-php .flexslider .jetpack-portfolio .entry-meta a,
  1230. body[class*="jetpack-portfolio"].archive .flexslider .jetpack-portfolio .entry-meta a,
  1231. .page-template-portfolio-page-php .flexslider .jetpack-portfolio:hover .entry-meta a,
  1232. .project-navigation-wrapper .flexslider .jetpack-portfolio:hover .entry-meta a,
  1233. .page-template-portfolio-template-php .flexslider .jetpack-portfolio:hover .entry-meta a,
  1234. body[class*="jetpack-portfolio"].archive .flexslider .jetpack-portfolio:hover .entry-meta a {
  1235. color: rgba(255,255,255,0.7);
  1236. }
  1237. .project-navigation-wrapper ul,
  1238. .project-navigation-wrapper li.previous,
  1239. .project-navigation-wrapper li.current,
  1240. .project-navigation-wrapper li.next {
  1241. list-style: none;
  1242. margin-left: 0;
  1243. padding: 0;
  1244. }
  1245. .project-navigation-wrapper li.current {
  1246. display: none;
  1247. opacity: 0.5;
  1248. -webkit-filter: grayscale(100%);
  1249. -moz-filter: grayscale(100%);
  1250. filter: grayscale(100%);
  1251. -webkit-backface-visibility: hidden;
  1252. }
  1253. .project-navigation-wrapper li.current a {
  1254. cursor: default;
  1255. }
  1256. .project-navigation-wrapper li.current .edit-link {
  1257. display: none;
  1258. }
  1259. .more-projects {
  1260. border-top: 3px solid #eeeeee;
  1261. color: #999999;
  1262. font-size: 1.25em;
  1263. line-height: 1.36em;
  1264. letter-spacing: 2px;
  1265. padding-top: 24px;
  1266. }
  1267. /* =Post Formats */
  1268. .format-link .entry-title a:after {
  1269. content: "\f442";
  1270. font-size: 32px;
  1271. margin-left: 5px;
  1272. }
  1273. /* =Media */
  1274. .entry-content img.wp-smiley,
  1275. .comment-content img.wp-smiley {
  1276. border: none;
  1277. margin-bottom: 0;
  1278. margin-top: 0;
  1279. padding: 0;
  1280. }
  1281. .wp-caption {
  1282. margin-bottom: 27px;
  1283. max-width: 100%;
  1284. }
  1285. .wp-caption img[class*="wp-image-"] {
  1286. display: block;
  1287. margin: 0 auto;
  1288. max-width: 100%;
  1289. }
  1290. .wp-caption-text {
  1291. font-size: 0.8125em;
  1292. line-height: 1.5675em;
  1293. margin: 14px 0;
  1294. padding: 0 1%;
  1295. }
  1296. .site-content .gallery {
  1297. margin-bottom: 27px;
  1298. }
  1299. .site-content .gallery a img {
  1300. height: auto;
  1301. max-width: 90%;
  1302. }
  1303. .site-content .gallery dd {
  1304. margin: 0;
  1305. }
  1306. /* Gallery column widths */
  1307. .gallery-columns-2 .gallery-item {
  1308. max-width: 50%;
  1309. }
  1310. .gallery-columns-3 .gallery-item {
  1311. max-width: 33.33%;
  1312. }
  1313. .gallery-columns-4 .gallery-item {
  1314. max-width: 25%;
  1315. }
  1316. .gallery-columns-5 .gallery-item {
  1317. max-width: 20%;
  1318. }
  1319. .gallery-columns-6 .gallery-item {
  1320. max-width: 16.66%;
  1321. }
  1322. .gallery-columns-7 .gallery-item {
  1323. max-width: 14.28%;
  1324. }
  1325. .gallery-columns-8 .gallery-item {
  1326. max-width: 12.5%;
  1327. }
  1328. .gallery-columns-9 .gallery-item {
  1329. max-width: 11.11%;
  1330. }
  1331. .site-content .gallery-columns-1.gallery a img {
  1332. max-width: 100%;
  1333. }
  1334. .gallery-item {
  1335. display: inline-block;
  1336. margin-bottom: 27px;
  1337. text-align: center;
  1338. vertical-align: top;
  1339. width: 100%;
  1340. }
  1341. .gallery-item img {
  1342. border: 1px solid #eeeeee;
  1343. border-radius: 3px;
  1344. padding: 3px;
  1345. }
  1346. .gallery-caption {
  1347. font-size: 0.8125em;
  1348. line-height: 2.09231em;
  1349. line-height: 2.09231em;
  1350. margin: 0 auto;
  1351. max-width: 90%;
  1352. }
  1353. /* Make sure embeds and iframes fit their containers */
  1354. embed,
  1355. iframe,
  1356. object {
  1357. max-width: 100%;
  1358. }
  1359. /* =Navigation */
  1360. .site-main .post-navigation,
  1361. .site-main .paging-navigation {
  1362. font-size: 0.8125em;
  1363. line-height: 2.09231em;
  1364. border-top: 1px solid #eeeeee;
  1365. border-bottom: 1px solid #eeeeee;
  1366. clear: both;
  1367. margin: 0;
  1368. letter-spacing: 2px;
  1369. line-height: 1.5;
  1370. overflow: hidden;
  1371. padding: 12px 0;
  1372. text-transform: uppercase;
  1373. width: 100%;
  1374. }
  1375. .site-main .post-navigation .nav-previous a,
  1376. .site-main .paging-navigation .nav-previous a {
  1377. float: left;
  1378. position: relative;
  1379. text-decoration: none;
  1380. width: 50%;
  1381. }
  1382. .site-main .post-navigation .nav-next a,
  1383. .site-main .paging-navigation .nav-next a {
  1384. float: right;
  1385. position: relative;
  1386. text-align: right;
  1387. text-decoration: none;
  1388. width: 50%;
  1389. }
  1390. .comment-navigation:before,
  1391. .comment-navigation:after {
  1392. content: "";
  1393. display: table;
  1394. }
  1395. .comment-navigation:after {
  1396. clear: both;
  1397. }
  1398. .site-main .comment-navigation {
  1399. font-size: 0.8125em;
  1400. line-height: 2.09231em;
  1401. border-top: 1px solid #eeeeee;
  1402. border-bottom: 1px solid #eeeeee;
  1403. clear: both;
  1404. letter-spacing: 2px;
  1405. line-height: 1.5;
  1406. margin: 27px 0;
  1407. padding: 12px 0;
  1408. text-transform: uppercase;
  1409. width: 100%;
  1410. }
  1411. .site-main .comment-navigation .nav-previous {
  1412. float: left;
  1413. position: relative;
  1414. text-align: left;
  1415. width: 50%;
  1416. }
  1417. .site-main .comment-navigation .nav-next {
  1418. float: right;
  1419. position: relative;
  1420. text-align: right;
  1421. width: 50%;
  1422. }
  1423. /* =Comments */
  1424. .comments-area {
  1425. border-top: 3px solid #eeeeee;
  1426. margin: 24px auto 0;
  1427. }
  1428. .comments-title,
  1429. .comment-reply-title {
  1430. font-size: 1.25em;
  1431. line-height: 1.36em;
  1432. color: #999999;
  1433. letter-spacing: 1px;
  1434. }
  1435. .comments-title small,
  1436. .comment-reply-title small {
  1437. float: right;
  1438. }
  1439. .comment-list,
  1440. .comment-list .children {
  1441. list-style: none;
  1442. }
  1443. .comment-list {
  1444. margin: 0;
  1445. }
  1446. .comment-list > .comment:first-of-type {
  1447. border-top: 0;
  1448. padding-top: 0;
  1449. }
  1450. .comment {
  1451. border-top: 1px solid #eeeeee;
  1452. margin-top: 26px;
  1453. padding-top: 27px;
  1454. }
  1455. .comment-meta {
  1456. text-transform: uppercase;
  1457. }
  1458. .comment-meta a {
  1459. color: #333333;
  1460. }
  1461. .comment-meta .comment-author img {
  1462. border-radius: 3px;
  1463. float: left;
  1464. }
  1465. .comment-meta .comment-author .fn {
  1466. display: block;
  1467. letter-spacing: 2px;
  1468. margin-left: 74px;
  1469. }
  1470. .comment-meta .comment-metadata {
  1471. color: #999999;
  1472. font-size: 0.8125em;
  1473. line-height: 2.09231em;
  1474. font-weight: normal;
  1475. letter-spacing: 1px;
  1476. margin-bottom: 27px;
  1477. margin-left: 74px;
  1478. }
  1479. .comment-meta .comment-metadata a {
  1480. color: #999999;
  1481. }
  1482. .comment-meta .comment-metadata a:hover {
  1483. color: #f68060;
  1484. }
  1485. .comments-area .edit-link:before {
  1486. content: " | ";
  1487. display: inline;
  1488. margin: 0 7px;
  1489. }
  1490. .comment-form label {
  1491. display: inline-block;
  1492. width: 109px;
  1493. }
  1494. .required {
  1495. color: #f68060;
  1496. }
  1497. .comment-form-author,
  1498. .comment-form-email,
  1499. .comment-form-url,
  1500. .comment-form-comment {
  1501. margin: 0 0 27px;
  1502. position: relative;
  1503. }
  1504. .comment-form-author label,
  1505. .comment-form-email label,
  1506. .comment-form-url label,
  1507. .comment-form-comment label {
  1508. font-size: 0.8125em;
  1509. line-height: 2.09231em;
  1510. font-weight: normal;
  1511. letter-spacing: 1px;
  1512. padding: 7px 14px;
  1513. position: absolute;
  1514. left: 0;
  1515. top: 7px;
  1516. text-transform: uppercase;
  1517. }
  1518. .comment-form-author input,
  1519. .comment-form-email input,
  1520. .comment-form-url input,
  1521. .comment-form-comment input {
  1522. display: block;
  1523. margin: 0 0 27px;
  1524. padding-left: 100px;
  1525. width: 100%;
  1526. }
  1527. .comment-form-author textarea,
  1528. .comment-form-email textarea,
  1529. .comment-form-url textarea,
  1530. .comment-form-comment textarea {
  1531. margin: 0 0 27px;
  1532. padding: 54px 14px 7px;
  1533. clear: both;
  1534. width: 100%;
  1535. }
  1536. .says {
  1537. display: none;
  1538. }
  1539. .form-allowed-tags {
  1540. color: #999999;
  1541. }
  1542. .no-comments {
  1543. color: #999999;
  1544. font-style: italic;
  1545. margin: 27px 0;
  1546. text-align: center;
  1547. }
  1548. /* =Widgets */
  1549. .widget {
  1550. font-size: 0.8125em;
  1551. line-height: 2.09231em;
  1552. border-bottom: 1px solid #eeeeee;
  1553. margin: 0 0 26px;
  1554. padding: 0 0 27px;
  1555. position: relative;
  1556. overflow: hidden;
  1557. width: 100%;
  1558. }
  1559. .widget select {
  1560. max-width: -webkit-calc(100% - 48px);
  1561. max-width: calc(100% - 48px);
  1562. margin-left: 24px;
  1563. }
  1564. .widget a {
  1565. color: #f68060;
  1566. text-decoration: none;
  1567. }
  1568. .widget a:hover, .widget a:active, .widget a:focus {
  1569. color: #333333;
  1570. }
  1571. .widget ul {
  1572. list-style: none;
  1573. margin: 0;
  1574. }
  1575. .widget li {
  1576. border-top: 1px solid #eeeeee;
  1577. list-style: none;
  1578. margin: 0;
  1579. padding-top: 6px;
  1580. padding-bottom: 7px;
  1581. }
  1582. .widget-title {
  1583. font-size: 1.25em;
  1584. line-height: 1.36em;
  1585. font-weight: normal;
  1586. margin: 14px 0;
  1587. }
  1588. .widget-title a {
  1589. color: #333333;
  1590. }
  1591. /* Calendar widget */
  1592. #wp-calendar td, #wp-calendar th,
  1593. #wp-calendar th {
  1594. text-align: center;
  1595. }
  1596. #wp-calendar caption {
  1597. font-weight: 700;
  1598. margin: 14px 0;
  1599. text-align: center;
  1600. }
  1601. #wp-calendar a {
  1602. color: #f68060;
  1603. text-decoration: none;
  1604. }
  1605. /* Recent Comments */
  1606. .widget_recent_comments td, .widget_recent_comments th {
  1607. border: 0;
  1608. }
  1609. /* Tags */
  1610. .tags-links:before,
  1611. .tags-links:after {
  1612. content: "";
  1613. display: table;
  1614. }
  1615. .tags-links:after {
  1616. clear: both;
  1617. }
  1618. .wp_widget_tag_cloud a,
  1619. .tags-links a,
  1620. .tagcloud a {
  1621. border: 1px solid #eeeeee;
  1622. color: #999999;
  1623. display: inline-block;
  1624. font-size: inherit !important;
  1625. letter-spacing: 1px;
  1626. margin: 0 7px 7px 0 !important;
  1627. padding: 0 7px;
  1628. text-transform: uppercase;
  1629. }
  1630. .wp_widget_tag_cloud a:hover,
  1631. .tags-links a:hover,
  1632. .tagcloud a:hover {
  1633. border-color: #f68060;
  1634. color: #f68060;
  1635. }
  1636. /* Custom Menu, Pages & Categories */
  1637. .widget_nav_menu ul ul,
  1638. .widget_categories ul ul,
  1639. .widget_pages ul ul {
  1640. margin-top: 6px;
  1641. margin-left: 2.0em;
  1642. }
  1643. .widget_nav_menu ul ul li:first-child,
  1644. .widget_categories ul ul li:first-child,
  1645. .widget_pages ul ul li:first-child {
  1646. margin-top: 0;
  1647. }
  1648. .widget_nav_menu li.menu-item-has-children,
  1649. .widget_pages li.page_item_has_children {
  1650. padding-bottom: 0;
  1651. }
  1652. .widget_categories ul.children {
  1653. margin-bottom: -7px;
  1654. }
  1655. /* =Jetpack */
  1656. /* Globally hidden elements when Infinite Scroll is supported and in use. */
  1657. .infinite-scroll .paging-navigation,
  1658. .infinite-scroll.neverending .site-footer {
  1659. display: none;
  1660. }
  1661. /* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
  1662. .infinity-end.neverending .site-footer {
  1663. display: block;
  1664. }
  1665. #infinite-footer {
  1666. z-index: 999;
  1667. }
  1668. #infinite-footer .container {
  1669. background: white;
  1670. border-top: 0;
  1671. color: #999999;
  1672. font-style: italic;
  1673. position: relative;
  1674. }
  1675. #infinite-footer .container a {
  1676. color: #999999;
  1677. }
  1678. #infinite-footer .container a:hover {
  1679. color: #f68060;
  1680. }
  1681. #infinite-footer .blog-info a,
  1682. #infinite-footer .blog-credits {
  1683. font-size: 0.8125em;
  1684. line-height: 2.09231em;
  1685. font-style: normal;
  1686. font-weight: normal;
  1687. letter-spacing: 1px;
  1688. text-transform: uppercase;
  1689. }
  1690. .infinite-loader {
  1691. clear: both;
  1692. margin: 0 auto 14px;
  1693. padding-top: 27px;
  1694. width: 28px;
  1695. height: 43px;
  1696. }
  1697. #infinite-handle {
  1698. clear: both;
  1699. margin: 0;
  1700. width: 100%;
  1701. }
  1702. #infinite-handle span {
  1703. background: white;
  1704. border-top: 1px solid #eeeeee;
  1705. border-bottom: 1px solid #eeeeee;
  1706. color: #f68060;
  1707. font-size: 0.8125em;
  1708. line-height: 2.09231em;
  1709. -webkit-transition: all 0.3s ease-in-out;
  1710. -moz-transition: all 0.3s ease-in-out;
  1711. -o-transition: all 0.3s ease-in-out;
  1712. transition: all 0.3s ease-in-out;
  1713. border-radius: 0;
  1714. display: block;
  1715. float: none;
  1716. font-weight: normal;
  1717. letter-spacing: 2px;
  1718. margin: 0 auto;
  1719. text-align: center;
  1720. text-transform: uppercase;
  1721. width: 100%;
  1722. }
  1723. #infinite-handle span:hover {
  1724. -webkit-transition: all 0.3s ease-in-out;
  1725. -moz-transition: all 0.3s ease-in-out;
  1726. -o-transition: all 0.3s ease-in-out;
  1727. transition: all 0.3s ease-in-out;
  1728. }
  1729. div.sharedaddy div.sd-block {
  1730. padding: 13px 0 14px !important;
  1731. }
  1732. /* Contact Forms */
  1733. .site-content .contact-form input[type="radio"],
  1734. .site-content .contact-form input[type="checkbox"] {
  1735. margin-bottom: 6px;
  1736. margin-right: .3em;
  1737. vertical-align: middle;
  1738. }
  1739. .site-content .contact-form label.checkbox,
  1740. .site-content .contact-form label.checkbox-multiple,
  1741. .site-content .contact-form label.radio {
  1742. font-weight: normal;
  1743. font-style: normal;
  1744. margin-bottom: 4px;
  1745. float: none;
  1746. font-size: inherit;
  1747. }
  1748. .site-content .contact-form label {
  1749. margin-bottom: 4px;
  1750. }
  1751. .site-content .contact-form > div {
  1752. margin-bottom: 14px;
  1753. }
  1754. .site-content .contact-form textarea,
  1755. .site-content .contact-form input[type='text'],
  1756. .site-content .contact-form input[type='email'],
  1757. .site-content .contact-form input[type='url'],
  1758. .site-content .contact-form select {
  1759. margin-bottom: 4px;
  1760. max-width: 100%;
  1761. }
  1762. /* =Social Links */
  1763. .social-links {
  1764. clear: both;
  1765. margin: 14px auto;
  1766. }
  1767. .social-links ul {
  1768. list-style: none;
  1769. margin: 0;
  1770. padding: 0;
  1771. }
  1772. .social-links ul li {
  1773. display: inline-block;
  1774. list-style: none;
  1775. margin: 0;
  1776. }
  1777. .social-links ul a {
  1778. display: inline-block;
  1779. text-decoration: none;
  1780. }
  1781. .social-links ul a:before {
  1782. background: #cccccc;
  1783. border-radius: 3px;
  1784. color: white;
  1785. content: "\f415";
  1786. display: block;
  1787. line-height: 1;
  1788. margin-left: 4px;
  1789. position: relative;
  1790. transition: top 0.3s ease-in-out;
  1791. padding: 6px 4px 6px 6px;
  1792. text-align: center;
  1793. -webkit-transition: all 0.1s ease-in-out;
  1794. -moz-transition: all 0.1s ease-in-out;
  1795. -o-transition: all 0.1s ease-in-out;
  1796. transition: all 0.1s ease-in-out;
  1797. }
  1798. .social-links ul a:hover {
  1799. text-decoration: none;
  1800. }
  1801. .social-links ul a:hover:before {
  1802. background: #f68060;
  1803. text-decoration: none;
  1804. -webkit-transition: all 0.1s ease-in-out;
  1805. -moz-transition: all 0.1s ease-in-out;
  1806. -o-transition: all 0.1s ease-in-out;
  1807. transition: all 0.1s ease-in-out;
  1808. }
  1809. .social-links ul a[href*='wordpress.org']:before,
  1810. .social-links ul a[href*='wordpress.com']:before {
  1811. content: '\f205';
  1812. }
  1813. .social-links ul a[href*='facebook.com']:before {
  1814. content: '\f204';
  1815. }
  1816. .social-links ul a[href*='twitter.com']:before {
  1817. content: '\f202';
  1818. }
  1819. .social-links ul a[href*='dribbble.com']:before {
  1820. content: '\f201';
  1821. }
  1822. .social-links ul a[href*='plus.google.com']:before {
  1823. content: '\f206';
  1824. }
  1825. .social-links ul a[href*='pinterest.']:before {
  1826. content: '\f209';
  1827. }
  1828. .social-links ul a[href*='github.com']:before {
  1829. content: '\f200';
  1830. }
  1831. .social-links ul a[href*='tumblr.com']:before {
  1832. content: '\f214';
  1833. }
  1834. .social-links ul a[href*='youtube.com']:before {
  1835. content: '\f213';
  1836. }
  1837. .social-links ul a[href*='flickr.com']:before {
  1838. content: '\f211';
  1839. }
  1840. .social-links ul a[href*='vimeo.com']:before {
  1841. content: '\f212';
  1842. }
  1843. .social-links ul a[href*='instagram.com']:before {
  1844. content: '\f215';
  1845. }
  1846. .social-links ul a[href*='codepen.io']:before {
  1847. content: '\f216';
  1848. }
  1849. .social-links ul a[href*='linkedin.com']:before {
  1850. content: '\f207';
  1851. }
  1852. .social-links ul a[href*='foursquare.com']:before {
  1853. content: '\f226';
  1854. }
  1855. .social-links ul a[href*='reddit.com']:before {
  1856. content: '\f222';
  1857. }
  1858. .social-links ul a[href*='digg.com']:before {
  1859. content: '\f221';
  1860. }
  1861. .social-links ul a[href*='getpocket.com']:before {
  1862. content: '\f224';
  1863. }
  1864. .social-links ul a[href*='path.com']:before {
  1865. content: '\f219';
  1866. }
  1867. .social-links ul a[href*='stumbleupon.com']:before {
  1868. content: '\f223';
  1869. }
  1870. .social-links ul a[href*='spotify.com']:before {
  1871. content: '\f515';
  1872. }
  1873. .social-links ul a[href*='twitch.tv']:before {
  1874. content: '\f516';
  1875. }
  1876. .social-links ul a[href*='dropbox.com']:before {
  1877. content: '\f225';
  1878. }
  1879. .social-links ul a[href*='/feed']:before {
  1880. content: '\f413';
  1881. }
  1882. .social-links ul a[href*='skype']:before {
  1883. content: '\f220';
  1884. }
  1885. .social-links ul a[href*='mailto']:before {
  1886. content: '\f410';
  1887. }
  1888. .flexslider .hentry {
  1889. margin: 0 auto;
  1890. padding: 0;
  1891. position: relative;
  1892. width: 100%;
  1893. }
  1894. .flexslider .entry-title {
  1895. font-size: 0.8125em;
  1896. line-height: 1.7em;
  1897. margin: 0;
  1898. text-align: left;
  1899. }
  1900. .flexslider .entry-title a,
  1901. .flexslider .entry-title a:hover,
  1902. .flexslider:hover .entry-title a {
  1903. color: white;
  1904. }
  1905. .flexslider:hover .entry-meta a {
  1906. color: rgba(255,255,255,0.7);
  1907. }
  1908. .flexslider .entry-meta {
  1909. font-size: 0.8125em;
  1910. line-height: 2.09231em;
  1911. color: rgba(255, 255, 255, 0.7);
  1912. display: none;
  1913. letter-spacing: 2px;
  1914. margin: 0;
  1915. text-align: left;
  1916. text-transform: uppercase;
  1917. }
  1918. .flexslider .entry-meta a,
  1919. .flexslider .entry-meta a:hover {
  1920. color: rgba(255,255,255,0.7);
  1921. opacity: 1;
  1922. }
  1923. .flexslider .entry-header {
  1924. background: rgba(51, 51, 51, 0.7);
  1925. border-bottom-left-radius: 5px;
  1926. max-width: 75%;
  1927. padding: 7px;
  1928. position: absolute;
  1929. bottom: 0;
  1930. left: 0;
  1931. z-index: 1;
  1932. }
  1933. .page-template-portfolio-page-php .flexslider .entry-thumbnail {
  1934. background: #eeeeee;
  1935. border-radius: 5px;
  1936. display: block;
  1937. padding-top: 36.6636% !important;
  1938. position: relative;
  1939. width: 100%;
  1940. height: 0;
  1941. }
  1942. .flexslider .entry-thumbnail img {
  1943. border-radius: 5px;
  1944. position: absolute;
  1945. top: 0;
  1946. left: 0;
  1947. z-index: 1;
  1948. }
  1949. /* FlexSlider Necessary Styles */
  1950. .flexslider {
  1951. border-radius: 5px;
  1952. margin: 0 0 27px;
  1953. overflow: hidden;
  1954. padding: 0;
  1955. position: relative;
  1956. width: 100%;
  1957. }
  1958. .flexslider li, .flexslider ul, .flexslider ol {
  1959. list-style: none;
  1960. margin: 0;
  1961. }
  1962. .flexslider .slides > li {
  1963. display: none;
  1964. margin: 0;
  1965. -webkit-backface-visibility: hidden;
  1966. }
  1967. .flexslider .slides > li:only-child {
  1968. display: block;
  1969. }
  1970. .flexslider .slides img {
  1971. width: 100%;
  1972. display: block;
  1973. margin: 0 auto;
  1974. }
  1975. .flex-pauseplay span {
  1976. text-transform: capitalize;
  1977. }
  1978. .slides:before,
  1979. .slides:after {
  1980. content: "";
  1981. display: table;
  1982. }
  1983. .slides:after {
  1984. clear: both;
  1985. }
  1986. /* No JavaScript Fallback */
  1987. .no-js .slides > li:first-child {
  1988. display: block;
  1989. }
  1990. .flex-viewport-wrapper {
  1991. display: block;
  1992. margin: 0 auto;
  1993. }
  1994. .flex-viewport {
  1995. border-radius: 5px;
  1996. margin: 0 auto;
  1997. overflow: visible !important;
  1998. position: relative;
  1999. -webkit-transition: all 1s ease;
  2000. -moz-transition: all 1s ease;
  2001. -o-transition: all 1s ease;
  2002. transition: all 1s ease;
  2003. max-width: 100%;
  2004. }
  2005. .loading .flex-viewport-wrapper {
  2006. max-height: 400px;
  2007. }
  2008. .flexslider .slides {
  2009. zoom: 1;
  2010. }
  2011. .carousel li {
  2012. margin-right: 0;
  2013. }
  2014. /* Direction Nav */
  2015. .flex-direction-nav {
  2016. display: none;
  2017. }
  2018. .flex-direction-nav a {
  2019. background: rgba(51, 51, 51, 0.7);
  2020. border-radius: 5px;
  2021. color: white;
  2022. display: block;
  2023. width: 38px;
  2024. height: 38px;
  2025. margin: -31px 0 0;
  2026. position: absolute;
  2027. bottom: 14px;
  2028. z-index: 10;
  2029. overflow: hidden;
  2030. opacity: 0;
  2031. cursor: pointer;
  2032. color: rgba(0, 0, 0, 0.8);
  2033. -webkit-transition: all 0.3s ease;
  2034. -moz-transition: all 0.3s ease;
  2035. transition: all 0.3s ease;
  2036. }
  2037. .flex-direction-nav .flex-disabled {
  2038. opacity: 0;
  2039. cursor: default;
  2040. }
  2041. .flex-direction-nav a:before {
  2042. font-size: 36px;
  2043. display: inline-block;
  2044. color: white;
  2045. content: "\f430";
  2046. text-align: center;
  2047. }
  2048. .flex-direction-nav a.flex-next:before {
  2049. content: "\f429";
  2050. }
  2051. .flex-direction-nav .flex-prev {
  2052. opacity: 1;
  2053. right: 59px;
  2054. }
  2055. .flex-direction-nav .flex-next {
  2056. opacity: 1;
  2057. right: 14px;
  2058. }
  2059. /* Media Queries */
  2060. @media screen and (max-width: 50em) {
  2061. .jetpack-portfolio-shortcode .portfolio-entry {
  2062. width: 100% !important;
  2063. }
  2064. }
  2065. @media screen and (min-width: 75em) {
  2066. .site {
  2067. margin: 27px auto;
  2068. max-width: 1200px;
  2069. padding: 54px;
  2070. }
  2071. .has-site-logo .site {
  2072. padding-top: 27px;
  2073. }
  2074. }
  2075. @media screen and (min-width: 60em) {
  2076. .page-template-portfolio-page-php .entry-thumbnail .edit-link a,
  2077. .project-navigation-wrapper .entry-thumbnail .edit-link a,
  2078. .page-template-portfolio-template-php .entry-thumbnail .edit-link a,
  2079. body[class*="jetpack-portfolio"].archive .entry-thumbnail .edit-link a {
  2080. bottom: 14px;
  2081. top: auto;
  2082. }
  2083. }
  2084. @media screen and (min-width: 50em) {
  2085. .project-navigation-wrapper li.current {
  2086. display: block;
  2087. }
  2088. .flex-direction-nav {
  2089. display: block;
  2090. }
  2091. .flexslider .entry-header {
  2092. padding: 14px;
  2093. }
  2094. .flexslider .entry-title {
  2095. font-size: 1.25em;
  2096. line-height: 1.36em;
  2097. }
  2098. .flexslider .entry-meta {
  2099. display: block;
  2100. }
  2101. .flexslider .entry-header {
  2102. padding: 27px;
  2103. }
  2104. .flex-direction-nav a {
  2105. bottom: 27px;
  2106. }
  2107. .flex-direction-nav .flex-prev {
  2108. right: -45px;
  2109. }
  2110. .flex-direction-nav .flex-next {
  2111. right: -95px;
  2112. text-align: right;
  2113. }
  2114. .flexslider:hover .flex-prev {
  2115. opacity: 1;
  2116. right: 72px;
  2117. }
  2118. .flexslider:hover .flex-next {
  2119. opacity: 1;
  2120. right: 27px;
  2121. }
  2122. .flexslider:hover .flex-next:hover,
  2123. .flexslider:hover .flex-prev:hover {
  2124. opacity: 1;
  2125. }
  2126. .content-area {
  2127. float: left;
  2128. margin: 0 -30% 0 0;
  2129. width: 100%;
  2130. }
  2131. .site-main {
  2132. margin: 0 30% 0 0;
  2133. }
  2134. .site-content .widget-area {
  2135. border-top: 0;
  2136. float: right;
  2137. margin-top: 0;
  2138. overflow: hidden;
  2139. padding-top: 0;
  2140. width: 25%;
  2141. }
  2142. .site-info {
  2143. float: left;
  2144. line-height: 1.7;
  2145. max-width: 65%;
  2146. text-align: left;
  2147. }
  2148. .social-links {
  2149. clear: none;
  2150. float: right;
  2151. margin: 0;
  2152. max-width: 30%;
  2153. text-align: right;
  2154. }
  2155. .project-navigation-wrapper .jetpack-portfolio,
  2156. .page-template-portfolio-page-php .projects .jetpack-portfolio,
  2157. body[class*="jetpack-portfolio"].archive .jetpack-portfolio {
  2158. border: 0;
  2159. float: left;
  2160. margin-right: 2%;
  2161. width: 32%;
  2162. }
  2163. .project-navigation-wrapper .jetpack-portfolio:nth-of-type(3n),
  2164. .page-template-portfolio-page-php .jetpack-portfolio:nth-of-type(3n),
  2165. body[class*="jetpack-portfolio"].archive .jetpack-portfolio:nth-of-type(3n) {
  2166. clear: right;
  2167. margin-right: 0;
  2168. }
  2169. .project-navigation-wrapper .jetpack-portfolio:nth-of-type(3n+1),
  2170. .page-template-portfolio-page-php .jetpack-portfolio:nth-of-type(3n+1),
  2171. body[class*="jetpack-portfolio"].archive .jetpack-portfolio:nth-of-type(3n+1) {
  2172. clear: left;
  2173. }
  2174. .page-template-portfolio-page-php .featured-posts .jetpack-portfolio:nth-of-type(3n+1),
  2175. .project-navigation-wrapper .more-projects .jetpack-portfolio:nth-of-type(3n),
  2176. .project-navigation-wrapper .jetpack-portfolio:nth-of-type(3n+1) {
  2177. clear: none;
  2178. }
  2179. .project-navigation-wrapper .entry-thumbnail,
  2180. .page-template-portfolio-page-php .entry-thumbnail,
  2181. body[class*="jetpack-portfolio"].archive .entry-thumbnail {
  2182. height: 0;
  2183. overflow: hidden;
  2184. padding-top: 75%;
  2185. position: relative;
  2186. }
  2187. .project-navigation-wrapper .entry-thumbnail img,
  2188. .page-template-portfolio-page-php .entry-thumbnail img,
  2189. body[class*="jetpack-portfolio"].archive .entry-thumbnail img {
  2190. position: absolute;
  2191. top: 0;
  2192. left: 0;
  2193. }
  2194. .project-navigation-wrapper .entry-thumbnail.sketch-landscape,
  2195. .page-template-portfolio-page-php .entry-thumbnail.sketch-landscape,
  2196. body[class*="jetpack-portfolio"].archive .entry-thumbnail.sketch-landscape {
  2197. padding-top: 75%;
  2198. }
  2199. .project-navigation-wrapper .entry-thumbnail.sketch-portrait,
  2200. .page-template-portfolio-page-php .entry-thumbnail.sketch-portrait,
  2201. body[class*="jetpack-portfolio"].archive .entry-thumbnail.sketch-portrait {
  2202. padding-top: 133.333%;
  2203. }
  2204. .project-navigation-wrapper .entry-thumbnail.sketch-square,
  2205. .page-template-portfolio-page-php .entry-thumbnail.sketch-square,
  2206. body[class*="jetpack-portfolio"].archive .entry-thumbnail.sketch-square {
  2207. padding-top: 100%;
  2208. }
  2209. .project-navigation-wrapper li {
  2210. clear: none;
  2211. }
  2212. .project-navigation-wrapper li.next .jetpack-portfolio {
  2213. margin-right: 0;
  2214. }
  2215. h1 {
  2216. font-size: 36px;
  2217. font-weight: normal;
  2218. letter-spacing: 1px;
  2219. margin: 27px 0;
  2220. text-transform: uppercase;
  2221. }
  2222. h2 {
  2223. font-size: 28px;
  2224. font-weight: normal;
  2225. letter-spacing: 1px;
  2226. margin: 27px 0;
  2227. text-transform: uppercase;
  2228. }
  2229. h3 {
  2230. font-size: 20px;
  2231. font-weight: normal;
  2232. letter-spacing: 1px;
  2233. margin: 27px 0;
  2234. text-transform: uppercase;
  2235. }
  2236. h4 {
  2237. font-size: 16px;
  2238. font-weight: normal;
  2239. letter-spacing: 1px;
  2240. margin: 27px 0;
  2241. text-transform: uppercase;
  2242. }
  2243. h5 {
  2244. font-size: 16px;
  2245. font-weight: normal;
  2246. letter-spacing: 1px;
  2247. margin: 27px 0;
  2248. text-transform: uppercase;
  2249. }
  2250. h6 {
  2251. font-size: 13px;
  2252. font-weight: normal;
  2253. letter-spacing: 1px;
  2254. margin: 27px 0;
  2255. text-transform: uppercase;
  2256. }
  2257. .entry-content {
  2258. font-size: 1.25em;
  2259. line-height: 1.36em;
  2260. line-height: 1.7em;
  2261. }
  2262. /* Search */
  2263. .widget_search .search-submit {
  2264. display: none;
  2265. }
  2266. }
  2267. @media screen and (min-width: 35em) {
  2268. .site-branding {
  2269. max-width: 80%;
  2270. }
  2271. .has-site-logo .site-title {
  2272. max-width: 60%;
  2273. }
  2274. }
  2275. /* This ensures most tablet-sized devices will see the toggle menu */
  2276. @media screen and ( min-width: 1281px ) {
  2277. .menu-toggle {
  2278. display: none;
  2279. }
  2280. .site-logo {
  2281. max-height: 100px;
  2282. }
  2283. .has-site-logo .main-navigation {
  2284. height: 100px;
  2285. }
  2286. .has-site-logo .main-navigation > div,
  2287. .has-site-logo .main-navigation > ul {
  2288. position: relative;
  2289. top: 50%;
  2290. -moz-transform: translateY(-50%);
  2291. -webkit-transform: translateY(-50%);
  2292. transform: translateY(-50%);
  2293. }
  2294. .main-navigation {
  2295. font-size: 0.8125em;
  2296. line-height: 2.09231em;
  2297. clear: none;
  2298. float: right;
  2299. max-width: 50%;
  2300. text-align: right;
  2301. }
  2302. .main-navigation ul:first-child {
  2303. display: block;
  2304. }
  2305. .main-navigation ul li {
  2306. display: inline-block;
  2307. }
  2308. .main-navigation ul li:hover > ul,
  2309. .main-navigation ul li.focus > ul {
  2310. display: block;
  2311. opacity: 1;
  2312. visibility: visible;
  2313. -webkit-transition: all 0.3s ease-in-out;
  2314. -moz-transition: all 0.3s ease-in-out;
  2315. -o-transition: all 0.3s ease-in-out;
  2316. transition: all 0.3s ease-in-out;
  2317. }
  2318. .main-navigation ul a {
  2319. border-bottom: 0;
  2320. padding: 5px 0 5px 14px;
  2321. }
  2322. .main-navigation ul ul {
  2323. background: white;
  2324. border: 1px solid #eeeeee;
  2325. display: none;
  2326. -webkit-transition: all 0.3s ease-in-out;
  2327. -moz-transition: all 0.3s ease-in-out;
  2328. -o-transition: all 0.3s ease-in-out;
  2329. transition: all 0.3s ease-in-out;
  2330. float: left;
  2331. opacity: 0;
  2332. padding: 0 7px;
  2333. position: absolute;
  2334. top: 100%;
  2335. left: 0;
  2336. text-align: left;
  2337. visibility: hidden;
  2338. z-index: 99999;
  2339. }
  2340. .main-navigation ul ul li {
  2341. border-bottom: 1px solid #eeeeee;
  2342. padding: 5px 5px 4px;
  2343. }
  2344. .main-navigation ul ul li:last-of-type {
  2345. border-bottom: 0;
  2346. }
  2347. .main-navigation ul ul li a {
  2348. line-height: 1.5;
  2349. padding: 5px;
  2350. width: 180px;
  2351. }
  2352. .main-navigation ul ul ul {
  2353. left: 100%;
  2354. top: 0;
  2355. }
  2356. .main-navigation ul ul li a,
  2357. .main-navigation ul ul ul li a,
  2358. .main-navigation ul ul ul ul li a {
  2359. padding-left: 5px;
  2360. }
  2361. }