style.css 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217
  1. /*!
  2. Theme Name: daw
  3. Theme URI: https://davidawindham.com/
  4. Author: windhamdavid
  5. Description: Something Else
  6. Version: 2.0
  7. License URI: http://www.gnu.org/licenses/gpl-2.0.html
  8. Thanks:
  9. normalize.css v3.0.1 * MIT License
  10. Bootstrap v3.2.0 * MIT License
  11. Font Awesome 4.2.0 * MIT License
  12. Font Mfizz 2.1 * MIT Lincense
  13. Font Computer Modern * SIL Open Font License (OFL) - https://en.wikipedia.org/wiki/Donald_Knuth
  14. Animate.css * MIT Lincense
  15. _s | * GPL License
  16. */
  17. html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}
  18. html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{font-family:inherit;font-style:inherit;background:transparent;border:0;margin:0;padding:0;outline:0;vertical-align: baseline;}
  19. html{overflow-y: scroll;-webkit-text-size-adjust:100%;-ms-text-size-adjust: 100%;}
  20. body{line-height:1;}
  21. *,*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
  22. article,aside,details,figcaption,figure,footer,header,main,nav,section{display:block;}
  23. ol,ul{list-style: none;}
  24. blockquote,q{quotes: "" "";}
  25. blockquote:before,blockquote:after,q:before,q:after{content:'';}
  26. del {text-decoration:line-through;}
  27. table{border-collapse:collapse;border-spacing:0;}
  28. a:focus {outline:thin dotted;}
  29. a img {border: 0;}
  30. .clear {clear: both;}
  31. /*============================================
  32. Body
  33. ==============================================*/
  34. body {
  35. background: rgba(242,242,242,.7);
  36. }
  37. body.page {
  38. background: rgba(72, 76, 87, 1);
  39. }
  40. body.page .site-title a {
  41. color:#fff;
  42. }
  43. body.desk {
  44. background-color: #616674;
  45. }
  46. body.desk .site-title a {
  47. color:#fff;
  48. }
  49. body.desk h1#desk {
  50. color:#fff;
  51. font-size:28px;
  52. }
  53. body.single {
  54. background: rgba(72,76,87,1);
  55. }
  56. body.single .site-title a {
  57. color:#fff;
  58. }
  59. body.archive {
  60. background: rgba(72,76,87,1);
  61. }
  62. body.archive .site-title a {
  63. color:#fff;
  64. }
  65. body.search {
  66. background: rgba(72,76,87,1);
  67. }
  68. body.search .site-title a {
  69. color:#fff;
  70. }
  71. body.sitemap {
  72. background-color: #616674;
  73. }
  74. body.sitemap .site-title a {
  75. color:#fff;
  76. }
  77. body.contact {
  78. background-color: #F6F6F6;
  79. }
  80. body.contact .site-title a {
  81. color:#000 !important; /* beat .light{color:#fcfcfc!important} — contact has a light bg */
  82. }
  83. /*============================================
  84. Typography
  85. ==============================================*/
  86. @font-face {
  87. font-family: 'Computer Modern';
  88. src: local("☺"),
  89. url('fonts/cmunrm.woff') format('woff');
  90. font-weight: normal;
  91. font-style: normal;
  92. }
  93. @font-face {
  94. font-family: 'Computer Modern';
  95. src: local("☺"),
  96. url('fonts/cmunbx.woff') format('woff');
  97. font-weight: bold;
  98. font-style: normal;
  99. }
  100. @font-face {
  101. font-family: 'Computer Modern';
  102. src: local("☺"),
  103. url('fonts/cmunsl.woff') format('woff');
  104. font-weight: normal;
  105. font-style: italic;
  106. }
  107. @font-face {
  108. font-family: 'CM Sans';
  109. src: local("☺"),
  110. url('fonts/cmunsx.woff') format('woff');
  111. font-weight: normal;
  112. font-style: normal;
  113. }
  114. @font-face {
  115. font-family: 'CM Concrete';
  116. src: local("☺"),
  117. url('fonts/cmunobx.woff') format('woff');
  118. font-weight: normal;
  119. font-style: normal;
  120. }
  121. @font-face {
  122. font-family: 'CM Type';
  123. src: local("☺"),
  124. url('fonts/cmunobx.woff') format('woff');
  125. font-weight: normal;
  126. font-style: normal;
  127. }
  128. .cm {
  129. font-family: "Computer Modern";
  130. }
  131. .cm-sans {
  132. font-family: "CM Sans";
  133. }
  134. .cm-concrete {
  135. font-family: "CM Concrete";
  136. }
  137. .cm-type {
  138. font-family: "CM Type";
  139. }
  140. .courier {
  141. font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
  142. }
  143. .georgia {
  144. font-family: Georgia, Times, "Times New Roman", serif;
  145. }
  146. .helvetica {
  147. font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  148. }
  149. * {
  150. -webkit-font-smoothing: antialiased !important;
  151. text-rendering: optimizeLegibility !important;
  152. line-height: 1.42857143;
  153. }
  154. input,button,select,textarea {
  155. font-family: inherit;
  156. font-size: inherit;
  157. line-height: inherit;
  158. }
  159. .firstcharacter {
  160. float: left;
  161. color: #000;
  162. font-size: 58px;
  163. line-height: 34px;
  164. padding-top: 4px;
  165. padding-right: 6px;
  166. padding-left: 0px;
  167. font-family: Georgia;
  168. }
  169. .tight {
  170. margin: 3px 0;
  171. }
  172. .light {
  173. color:#fcfcfc !important;
  174. }
  175. .darken {
  176. color:#333
  177. }
  178. .dim {
  179. color: #737373;
  180. }
  181. .dull {
  182. color: #535353;
  183. }
  184. .right {
  185. text-align: right;
  186. }
  187. a {
  188. text-decoration: none;
  189. }
  190. em {
  191. font-style: italic;
  192. }
  193. i {
  194. font-style: italic;
  195. }
  196. b {
  197. font-weight: bold;
  198. }
  199. .big {
  200. font-size: 29px;
  201. font-weight: bold;
  202. letter-spacing: -1px;
  203. }
  204. .super {
  205. margin: 40px 0 0;
  206. font-size: 43px;
  207. font-weight: bold;
  208. letter-spacing: -2px;
  209. }
  210. .super-duper {
  211. font-size: 60px;
  212. font-weight: bold;
  213. letter-spacing: -2px;
  214. }
  215. h5.contact {
  216. margin: 0 0 5px !important;
  217. }
  218. h4.spread {
  219. line-height: 24px;
  220. }
  221. .email a {
  222. color: #777;
  223. }
  224. /*============================================
  225. Grid
  226. ==============================================*/
  227. .container {
  228. padding-right: 15px;
  229. padding-left: 15px;
  230. margin-right: auto;
  231. margin-left: auto;
  232. word-wrap: break-word;
  233. }
  234. @media (max-width: 667px) {
  235. body {
  236. }
  237. .single {
  238. padding: 10px 0px;
  239. background: none !important;
  240. box-shadow: none !important;
  241. }
  242. .archive {
  243. padding: 10px 0px;
  244. }
  245. .super-duper {
  246. font-size: 63px;
  247. }
  248. #caro {
  249. min-height: 400px;
  250. }
  251. #caro #svg-imac {
  252. height: 220px !important;
  253. }
  254. #caro #svg-device {
  255. display: none;
  256. }
  257. #caro #sv {
  258. height: 100px !important;
  259. }
  260. #caro #svg-mac {
  261. height: 150px !important;
  262. }
  263. #brain {
  264. display:none;
  265. }
  266. .entry-content blockquote {
  267. margin: 0 15px 15px !important;
  268. font-size:.5em !important;
  269. padding:10px;
  270. border-radius:10px;
  271. }
  272. }
  273. @media (max-width: 768px) and (min-width: 668px) {
  274. article.single {
  275. padding: 70px 20px 70px;
  276. }
  277. }
  278. @media (min-width: 768px) {
  279. .container {
  280. width: 760px;
  281. }
  282. .site-title {
  283. font-size: 25px;
  284. }
  285. article.single {
  286. padding: 70px 40px 70px;
  287. }
  288. }
  289. @media (min-width: 992px) {
  290. .container {
  291. width: 970px;
  292. }
  293. article.single {
  294. padding: 70px 80px 140px;
  295. }
  296. }
  297. @media (min-width: 1200px) {
  298. .container {
  299. width: 1170px;
  300. }
  301. article.single {
  302. padding: 70px 100px 140px;
  303. }
  304. }
  305. @media (min-width: 1310px) {
  306. .container {
  307. width: 1280px;
  308. max-width: 1280px;
  309. }
  310. }
  311. @media (min-width: 1400px) {
  312. .container {
  313. width: 1380px;
  314. max-width: 1380px;
  315. }
  316. }
  317. @media print {
  318. * {
  319. color: #000 !important;
  320. text-shadow: none !important;
  321. background: transparent !important;
  322. -webkit-box-shadow: none !important;
  323. box-shadow: none !important;
  324. }
  325. }
  326. /*============================================
  327. Loader / Transit
  328. ==============================================*/
  329. #loader {
  330. position: fixed;
  331. width: 100%;
  332. height: 100%;
  333. top: 0;
  334. left: 0;
  335. font-size: 150px;
  336. text-align: center;
  337. vertical-align: middle;
  338. color: #222;
  339. z-index: 200000;
  340. background-color: #222;
  341. }
  342. .loading-animation {
  343. width: 250px;
  344. height: 250px;
  345. position: absolute;
  346. top: 0;
  347. bottom: 0;
  348. right: 0;
  349. left: 0;
  350. margin: auto;
  351. }
  352. .loading-animation svg {
  353. position:absolute;
  354. top:0;
  355. left:0;
  356. -webkit-transform-origin:center center;
  357. -ms-transform-origin:center center;
  358. -o-transform-origin:center center;
  359. transform-origin:center center;
  360. -webkit-transition:all 0.3s;
  361. -o-transition:all 0.3s;
  362. transition:all 0.3s;
  363. -webkit-transform:rotateY(0deg);
  364. -ms-transform:rotateY(0deg);
  365. -o-transform:rotateY(0deg);
  366. transform:rotateY(0deg);
  367. }
  368. .loading-animation path {
  369. fill:none;
  370. stroke:#fff;
  371. stroke-width:2;
  372. -webkit-transition:all .3s;
  373. -o-transition:all .3s;
  374. transition:all .3s;
  375. }
  376. .loading-animation .l1 path {
  377. fill:rgba(242,242,242,.1);
  378. stroke-dasharray:450;
  379. stroke-dashoffset:900;
  380. -webkit-animation:LOADING1 4s linear 0s infinite;
  381. -o-animation:LOADING1 4s linear 0s infinite;
  382. animation:LOADING1 4s linear 0s infinite;
  383. }
  384. .loading-animation .l2 path {
  385. fill:rgba(242,242,242,.1);
  386. stroke-dasharray:340;
  387. stroke-dashoffset:340;
  388. -webkit-animation:LOADING2 3s linear 0s infinite;
  389. -o-animation:LOADING2 3s linear 0s infinite;
  390. animation:LOADING2 3s linear 0s infinite;
  391. }
  392. .loading-animation .l3 path {
  393. fill:none;
  394. stroke-width:1;
  395. stroke-dasharray:33;
  396. stroke-dashoffset:33;
  397. -webkit-animation:LOADING3 2s linear 0s infinite;
  398. -o-animation:LOADING3 2s linear 0s infinite;
  399. animation:LOADING3 2s linear 0s infinite;
  400. }
  401. @-webkit-keyframes LOADING1 {
  402. 0%{stroke-dashoffset:-900;}
  403. 50%{stroke-dashoffset:0;}
  404. 100%{stroke-dashoffset:900;}
  405. }
  406. @-moz-keyframes LOADING1 {
  407. 0%{stroke-dashoffset:-900;}
  408. 50%{stroke-dashoffset:0;}
  409. 100%{stroke-dashoffset:900;}
  410. }
  411. @-o-keyframes LOADING1 {
  412. 0%{stroke-dashoffset:-900;}
  413. 50%{stroke-dashoffset:0;}
  414. 100%{stroke-dashoffset:900;}
  415. }
  416. @keyframes LOADING1 {
  417. 0%{stroke-dashoffset:-900;}
  418. 50%{stroke-dashoffset:0;}
  419. 100%{stroke-dashoffset:900;}
  420. }
  421. @-webkit-keyframes LOADING2 {
  422. 0%{stroke-dashoffset:340;}
  423. 50%{stroke-dashoffset:0;}
  424. 100%{stroke-dashoffset:-340;}
  425. }
  426. @-moz-keyframes LOADING2 {
  427. 0%{stroke-dashoffset:340;}
  428. 50%{stroke-dashoffset:0;}
  429. 100%{stroke-dashoffset:-340;}
  430. }
  431. @-o-keyframes LOADING2 {
  432. 0%{stroke-dashoffset:340;}
  433. 50%{stroke-dashoffset:0;}
  434. 100%{stroke-dashoffset:-340;}
  435. }
  436. @keyframes LOADING2 {
  437. 0%{stroke-dashoffset:340;}
  438. 50%{stroke-dashoffset:0;}
  439. 100%{stroke-dashoffset:-340;}
  440. }
  441. @-webkit-keyframes LOADING3 {
  442. 0%{stroke-dashoffset:-230;}
  443. 50%{stroke-dashoffset:0;}
  444. 100%{stroke-dashoffset:230;}
  445. }
  446. @-moz-keyframes LOADING3 {
  447. 0%{stroke-dashoffset:-230;}
  448. 50%{stroke-dashoffset:0;}
  449. 100%{stroke-dashoffset:230;}
  450. }
  451. @-o-keyframes LOADING3 {
  452. 0%{stroke-dashoffset:-230;}
  453. 50%{stroke-dashoffset:0;}
  454. 100%{stroke-dashoffset:230;}
  455. }
  456. @keyframes LOADING3 {
  457. 0%{stroke-dashoffset:-230;}
  458. 50%{stroke-dashoffset:0;}
  459. 100%{stroke-dashoffset:230;}
  460. }
  461. .svg-wrap .l1 {
  462. -webkit-animation:TURN 3s linear 0s infinite;
  463. -o-animation:TURN 3s linear 0s infinite;
  464. animation:TURN 3s linear 0s infinite;
  465. }
  466. .svg-wrap .l2 {
  467. -webkit-animation:TURN 2s linear 0s infinite;
  468. -o-animation:TURN 2s linear 0s infinite;
  469. animation:TURN 2s linear 0s infinite;
  470. }
  471. .svg-wrap .l3 {
  472. -webkit-animation:TURN 4.5s linear 0s infinite;
  473. -o-animation:TURN 4.5s linear 0s infinite;
  474. animation:TURN 4.5s linear 0s infinite;
  475. }
  476. @-webkit-keyframes TURN {
  477. 0%{-webkit-transform:rotateY(0deg);opacity:1}
  478. 25%{-webkit-transform:rotateY(90deg);opacity:.6}
  479. 50%{-webkit-transform:rotateY(180deg);opacity:1}
  480. 75%{-webkit-transform:rotateY(270deg);opacity:.6}
  481. 100%{-webkit-transform:rotateY(360deg);opacity:1}}
  482. @-webkit-keyframes TURNBACK {
  483. 0%{-webkit-transform:rotateY(360deg);opacity:1}
  484. 25%{-webkit-transform:rotateY(270deg);opacity:.6}
  485. 50%{-webkit-transform:rotateY(180deg);opacity:1}
  486. 75%{-webkit-transform:rotateY(90deg);opacity:.6}
  487. 100%{-webkit-transform:rotateY(0deg);opacity:1}}
  488. /*============================================
  489. Navbar
  490. ==============================================*/
  491. .navbar {
  492. -webkit-transition: background-color 0.3s;
  493. -moz-transition: background-color 0.3s;
  494. transition: background-color 0.3s;
  495. -webkit-transform: translate3d(0, 0, 0);
  496. -moz-transform: translate3d(0, 0, 0);
  497. -ms-transform: translate3d(0, 0, 0);
  498. -o-transform: translate3d(0, 0, 0);
  499. transform: translate3d(0, 0, 0);
  500. }
  501. .navbar.fixed {
  502. position: fixed;
  503. top: -85px;
  504. -webkit-transition: all .3s ease-in-out;
  505. -moz-transition: all .3s ease-in-out;
  506. transition: all .3s ease-in-out;
  507. }
  508. .navbar.visible {
  509. -webkit-transform: translate3d(0, 100%, 0);
  510. -moz-transform: translate3d(0, 100%, 0);
  511. -ms-transform: translate3d(0, 100%, 0);
  512. -o-transform: translate3d(0, 100%, 0);
  513. transform: translate3d(0, 100%, 0);
  514. background-color: rgba(72, 76, 87, 0.7);
  515. }
  516. #nav {
  517. width: 100%;
  518. }
  519. .nav-toggle.active span {
  520. background-color: transparent;
  521. }
  522. .nav-toggle.active span:before, .nav-toggle.active span:after {
  523. top: 0;
  524. }
  525. .nav-toggle.active span:before {
  526. transform: rotate(45deg);
  527. -webkit-transform: rotate(45deg);
  528. -o-transform: rotate(45deg);
  529. }
  530. .nav-toggle.active span:after {
  531. transform: rotate(-45deg);
  532. -webkit-transform: rotate(-45deg);
  533. -o-transform: rotate(-45deg);
  534. }
  535. .entry-content ol {
  536. padding: 0 25px;
  537. list-style: decimal outside;
  538. }
  539. #archives li {
  540. list-style: none;
  541. margin: 2px 8px;
  542. float: left;
  543. }
  544. /*============================================
  545. Header
  546. ==============================================*/
  547. .site-title {
  548. float: right;
  549. padding: 15px 0;
  550. font-family: 'Playfair Display', serif;
  551. font-weight: 400;
  552. }
  553. .site-title a {
  554. color: #fff;
  555. text-decoration: none;
  556. border: none;
  557. outline: none;
  558. }
  559. img.dw {
  560. float: right;
  561. margin: 15px 0;
  562. }
  563. .logo {
  564. margin: 0 auto;
  565. vertical-align: top;
  566. }
  567. /*============================================
  568. Footer
  569. ==============================================*/
  570. .footer {
  571. padding: 90px 0 30px;
  572. }
  573. .footer-home {
  574. padding: 90px 0 50px;
  575. }
  576. .footer a {
  577. color: #777777;
  578. }
  579. .footer a:hover {
  580. color: #FFFFFF;
  581. text-decoration: none;
  582. }
  583. p.cc {
  584. float: right;
  585. font-size: 14px;
  586. margin: 2px 20px 30px 10px;
  587. }
  588. /*============================================
  589. Footer — home (ported from /work)
  590. ==============================================*/
  591. /* fonts scoped to the home footer for now (Inter / Playfair Display / Gaegu) */
  592. @font-face {
  593. font-family: 'Inter';
  594. font-style: normal;
  595. font-weight: 400;
  596. font-display: swap;
  597. src: url('fonts/Inter-Regular.woff2') format('woff2');
  598. }
  599. @font-face {
  600. font-family: 'Inter';
  601. font-style: normal;
  602. font-weight: 600;
  603. font-display: swap;
  604. src: url('fonts/Inter-SemiBold.woff2') format('woff2');
  605. }
  606. @font-face {
  607. font-family: 'Playfair Display';
  608. font-style: normal;
  609. font-weight: 400;
  610. font-display: swap;
  611. src: url('fonts/playfair-display-v20-latin-regular.woff2') format('woff2');
  612. }
  613. @font-face {
  614. font-family: 'Playfair Display';
  615. font-style: normal;
  616. font-weight: 700;
  617. font-display: swap;
  618. src: url('fonts/playfair-display-v20-latin-700.woff2') format('woff2');
  619. }
  620. @font-face {
  621. font-family: 'Playfair Display';
  622. font-style: normal;
  623. font-weight: 900;
  624. font-display: swap;
  625. src: url('fonts/playfair-display-v20-latin-900.woff2') format('woff2');
  626. }
  627. @font-face {
  628. font-family: 'Gaegu';
  629. font-style: normal;
  630. font-weight: 300;
  631. font-display: swap;
  632. src: url('fonts/gaegu-v15-latin-300.woff2') format('woff2');
  633. }
  634. #dw-footer {
  635. background-color: #484c57;
  636. color: #dadada;
  637. font-family: 'Inter', sans-serif;
  638. margin: 6rem 0 0;
  639. padding: 6rem 0 4rem;
  640. }
  641. #dw-footer h5 {
  642. font-family: 'Playfair Display', serif;
  643. font-weight: 900;
  644. font-size: 1.3rem;
  645. line-height: 1.2;
  646. color: #dadada;
  647. margin: 0;
  648. }
  649. #dw-footer address {
  650. font-style: normal;
  651. line-height: 1.9;
  652. }
  653. #dw-footer a {
  654. position: relative;
  655. color: #dadada;
  656. fill: #dadada;
  657. text-decoration: none;
  658. }
  659. #dw-footer a:hover {
  660. color: #25c2a0;
  661. fill: #25c2a0;
  662. }
  663. #dw-footer .br-widget {
  664. margin: 4rem 0 0;
  665. }
  666. #dw-footer .br-widget:first-child {
  667. margin-top: 0;
  668. }
  669. #dw-footer ul.footer-links {
  670. list-style: none;
  671. margin: 0;
  672. padding: 0;
  673. }
  674. #dw-footer ul.footer-links li {
  675. margin: 0 0 .35rem;
  676. padding: 0 0 .35rem;
  677. }
  678. #dw-footer ul.footer-links li:last-child {
  679. margin-bottom: 0;
  680. }
  681. /* sliding underline on hover (left-to-right) */
  682. #dw-footer .br-widget a:before,
  683. #dw-footer .footer-end a:before {
  684. content: '';
  685. position: absolute;
  686. bottom: 0;
  687. right: 0;
  688. height: 1px;
  689. width: 0;
  690. background: currentColor;
  691. transition: width 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  692. }
  693. #dw-footer .br-widget a:hover:before,
  694. #dw-footer .footer-end a:hover:before {
  695. left: 0;
  696. right: initial;
  697. width: 100%;
  698. }
  699. #dw-footer .footer-end {
  700. margin-top: 4rem;
  701. padding-top: 2rem;
  702. }
  703. #dw-footer .footer-end .copyright {
  704. font-size: 12px;
  705. color: #9a9ea8;
  706. }
  707. #dw-footer .footer-end .gaegu {
  708. font-family: 'Gaegu', serif;
  709. font-weight: 300;
  710. margin-bottom: 0;
  711. }
  712. #dw-footer ul.footer-social {
  713. list-style: none;
  714. display: flex;
  715. gap: 16px;
  716. justify-content: flex-end;
  717. margin: .5rem 0 0;
  718. padding: 0;
  719. }
  720. #dw-footer ul.footer-social li {
  721. margin: 0;
  722. padding: 0;
  723. }
  724. #dw-footer ul.footer-social .dw-icon-2x {
  725. width: 22px;
  726. height: 22px;
  727. }
  728. @media (max-width: 767.98px) {
  729. #dw-footer .footer-end .gaegu,
  730. #dw-footer ul.footer-social {
  731. justify-content: flex-start;
  732. }
  733. #dw-footer .footer-end .col-md-6.text-md-end {
  734. text-align: left;
  735. }
  736. }
  737. /*============================================
  738. Intro
  739. ==============================================*/
  740. @keyframes blink {
  741. 0% { opacity: 0; }
  742. 25% { opacity: 1; }
  743. 50% { opacity: 1; }
  744. 100% { opacity: 0; }
  745. }
  746. @-webkit-keyframes blink {
  747. 0% { opacity: 0; }
  748. 25% { opacity: 1; }
  749. 50% { opacity: 1; }
  750. 100% { opacity: 0; }
  751. }
  752. @-ms-keyframes blink {
  753. 0% { opacity: 0; }
  754. 25% { opacity: 1; }
  755. 50% { opacity: 1; }
  756. 100% { opacity: 0; }
  757. }
  758. @-moz-keyframes blink {
  759. 0% { opacity: 0; }
  760. 25% { opacity: 1; }
  761. 50% { opacity: 1; }
  762. 100% { opacity: 0; }
  763. }
  764. [contenteditable] {outline: none;}
  765. #caro {
  766. min-height: 400px;
  767. }
  768. .hide-svg {
  769. visibility: hidden;
  770. }
  771. .fade-svg {
  772. -webkit-animation: fadeOut 1s;
  773. -moz-animation: fadeOut 1s;
  774. -o-animation: fadeOut 1s;
  775. animation: fadeOut 1s;
  776. }
  777. .show-svg {
  778. -webkit-animation: fadeIn 1s;
  779. -moz-animation: fadeIn 1s;
  780. -o-animation: fadeIn 1s;
  781. animation: fadeIn 1s;
  782. }
  783. #caro #svg-imac {
  784. height: 290px;
  785. }
  786. #caro #svg-imac.bg {
  787. background: transparent url('img/web.gif') no-repeat 28% 15%;
  788. background-size:95%;
  789. }
  790. #caro #svg-device {
  791. float:right;
  792. margin-top:-115px;
  793. height: 190px;
  794. }
  795. #caro #sv {
  796. height: 220px;
  797. }
  798. #caro #svg-mac {
  799. height: 290px;
  800. }
  801. #studio-caro {
  802. -webkit-transition: all 1s ease;
  803. -moz-transition: all 1s ease;
  804. -o-transition: all 1s ease;
  805. transition: all 1s ease;
  806. }
  807. .caro-grad {
  808. background:#404040;
  809. }
  810. .caro-grad2 {
  811. background: #000000;
  812. }
  813. .caro-grad3 {
  814. background: #ffffff;
  815. }
  816. .caro-grad5 {
  817. background: none;
  818. }
  819. .blur {
  820. -webkit-filter: blur(5px);
  821. -ms-filter: blur(5px);
  822. filter: blur(5px);
  823. }
  824. @-webkit-keyframes vidblur {
  825. 0% {-webkit-filter: blur(0px) saturate(0) hue-rotate(0deg);}
  826. 100% {-webkit-filter: blur(4px) saturate(2) hue-rotate(100deg);}
  827. }
  828. @-webkit-keyframes vidunblur {
  829. 0% {-webkit-filter: blur(4px) saturate(2) hue-rotate(100deg);;}
  830. 100% {-webkit-filter: blur(0px) saturate(0) hue-rotate(0deg);}
  831. }
  832. #tv.blur {
  833. -webkit-animation: vidblur 4s;
  834. animation: vidblur 4s;
  835. }
  836. #tv.unblur {
  837. -webkit-animation: vidunblur 4s;
  838. animation: vidunblur 4s;
  839. }
  840. .about {
  841. padding: 20px 0 50px;
  842. }
  843. table.icons tbody > tr {
  844. margin: 0px;
  845. padding: 0px;
  846. }
  847. table.icons tbody > tr > td {
  848. border:none;
  849. padding: 0px;
  850. }
  851. @media (min-width: 768px) {
  852. }
  853. form .actions button{
  854. margin: 20px 0;
  855. }
  856. .updates {
  857. background: rgba(237, 237, 237, 0.85);
  858. box-shadow: 0 0 25px rgba(0, 0, 0, .9);
  859. border-radius: 10px;
  860. padding: 0px 0 20px;
  861. display: none !important;
  862. }
  863. .updates a {
  864. color: #333;
  865. }
  866. .updates h5 {
  867. margin: 0;
  868. color: #999;
  869. }
  870. article.home {
  871. border-radius: 5px;
  872. }
  873. /*============================================
  874. Studio
  875. ==============================================*/
  876. .studio-tools{
  877. border-left: 1px solid #cecece;
  878. margin: 28px 0px;
  879. padding: 0 10px;
  880. }
  881. .studio-subnav {
  882. margin: 28px 0px;
  883. padding: 10px;
  884. }
  885. .studio-subnav a {
  886. color: #000;
  887. text-decoration: none;
  888. }
  889. .studio-subnav li.active a {
  890. color: #FF0000;
  891. text-decoration: none;
  892. border: none;
  893. }
  894. .studio-subnav a:hover {
  895. color: #FF0000;
  896. text-decoration: none;
  897. border: none;
  898. }
  899. #studio-tab h4 {
  900. line-height: 24px;
  901. }
  902. article.studio {
  903. background: #fff;
  904. padding: 0 15px 10px;
  905. margin:0 0 20px;
  906. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  907. }
  908. .studio-thumbnail {
  909. max-height:180px;
  910. overflow:hidden;
  911. }
  912. img.studio-thumb {
  913. box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  914. -webkit-filter: saturate(0) opacity(0.6);
  915. filter: saturate(0) opacity(0.6);
  916. -webkit-transition: all 1s;
  917. transition: all 1s;
  918. }
  919. img.studio-thumb:hover {
  920. -webkit-filter: saturate(1) opacity(1);
  921. filter: saturate(1) opacity(1);
  922. }
  923. /*============================================
  924. Art
  925. ==============================================*/
  926. .art-gallery {
  927. background: #313131;
  928. }
  929. body.art .site-title a {
  930. color: #FFFFFF;
  931. }
  932. .art a {
  933. color: #2F3446;
  934. }
  935. .art a:hover {
  936. color: #cecece;
  937. text-decoration: none;
  938. }
  939. .art a:active {
  940. color: #FFFFFF;
  941. text-decoration: none;
  942. }
  943. .art-image {
  944. border: 10px solid #FFFFFF;
  945. max-height: 800px;
  946. margin: auto;
  947. }
  948. .art-gallery .controls {
  949. position: relative;
  950. bottom: 0;
  951. }
  952. .art-gallery .prev-next {
  953. margin: 10px 0 10px;
  954. }
  955. .studio .entry-content {
  956. height: 120px;
  957. }
  958. /*============================================
  959. Now
  960. ==============================================*/
  961. .desk ul.now-doing li{
  962. color: #4e4e4e;
  963. line-height: 1.4em;
  964. margin: 0 0 5px 0;
  965. }
  966. /*============================================
  967. Desk
  968. ==============================================*/
  969. .desk {
  970. background:#ffffff;
  971. padding:50px;
  972. box-shadow:0 0 5px rgba(0,0,0,.1)
  973. }
  974. .desk li {
  975. color: #777
  976. }
  977. h1#now {
  978. color: #ffffff;
  979. }
  980. /*============================================
  981. Music
  982. ==============================================*/
  983. .albums {
  984. position: relative;
  985. display: flex;
  986. flex-wrap: wrap;
  987. gap: 6px;
  988. }
  989. .albums:after {
  990. content: "";
  991. display: table;
  992. clear: both;
  993. }
  994. .album {
  995. width: 150px;
  996. height: auto;
  997. position: relative;
  998. font-size: 12px;
  999. -webkit-transition: -webkit-transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  1000. -moz-transition: -moz-transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  1001. -o-transition: -o-transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  1002. transition: transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  1003. -webkit-perspective: 600px;
  1004. perspective: 600px;
  1005. }
  1006. .album img {
  1007. width: 100%;
  1008. aspect-ratio: 1 / 1;
  1009. object-fit: cover;
  1010. display: block;
  1011. }
  1012. .album h1, .album h2, .album h3 {
  1013. font-size: 13px;
  1014. line-height: 15px;
  1015. }
  1016. .album .front, .album .back {
  1017. float: none;
  1018. width: 100%;
  1019. height: auto;
  1020. -webkit-transform-style: preserve-3d;
  1021. transform-style: preserve-3d;
  1022. -webkit-transition: -webkit-transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  1023. -moz-transition: -moz-transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  1024. -o-transition: -o-transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  1025. transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  1026. }
  1027. .album .front {
  1028. z-index: 1;
  1029. -webkit-transform: rotateY(0deg);
  1030. -moz-transform: rotateY(0deg);
  1031. -ms-transform: rotateY(0deg);
  1032. -o-transform: rotateY(0deg);
  1033. transform: rotateY(0deg);
  1034. }
  1035. .album .front .alpha {
  1036. -webkit-transition: opacity 0.4s ease-in-out;
  1037. -moz-transition: opacity 0.4s ease-in-out;
  1038. -o-transition: opacity 0.4s ease-in-out;
  1039. transition: opacity 0.4s ease-in-out;
  1040. display: block;
  1041. content: '';
  1042. height: 100%;
  1043. width: 100%;
  1044. position: absolute;
  1045. top: 0;
  1046. left: 0;
  1047. background: rgba(255, 255, 255, 0.85);
  1048. opacity: 0;
  1049. }
  1050. .album .back {
  1051. position: absolute;
  1052. top: 0;
  1053. left: 0;
  1054. z-index: 0;
  1055. text-align: center;
  1056. font-family: sans-serif;
  1057. padding: 10px;
  1058. opacity: 0;
  1059. -webkit-box-sizing: border-box;
  1060. -moz-box-sizing: border-box;
  1061. box-sizing: border-box;
  1062. -webkit-backface-visibility: hidden;
  1063. backface-visibility: hidden;
  1064. -webkit-transform: rotateY(-180deg);
  1065. -moz-transform: rotateY(-180deg);
  1066. -ms-transform: rotateY(-180deg);
  1067. -o-transform: rotateY(-180deg);
  1068. transform: rotateY(-180deg);
  1069. }
  1070. .album.flip {
  1071. -webkit-transform: scale(1.1, 1.1);
  1072. -moz-transform: scale(1.1, 1.1);
  1073. -ms-transform: scale(1.1, 1.1);
  1074. -o-transform: scale(1.1, 1.1);
  1075. transform: scale(1.1, 1.1);
  1076. z-index: 10;
  1077. }
  1078. .album.flip .front {
  1079. -webkit-transform: rotateY(180deg);
  1080. -moz-transform: rotateY(180deg);
  1081. -ms-transform: rotateY(180deg);
  1082. -o-transform: rotateY(180deg);
  1083. transform: rotateY(180deg);
  1084. }
  1085. .album.flip .front .alpha {
  1086. opacity: 1;
  1087. }
  1088. .album.flip .back {
  1089. z-index: 2;
  1090. opacity: 1;
  1091. -webkit-transform: rotateY(0deg);
  1092. -moz-transform: rotateY(0deg);
  1093. -ms-transform: rotateY(0deg);
  1094. -o-transform: rotateY(0deg);
  1095. transform: rotateY(0deg);
  1096. }
  1097. .album {
  1098. width: 20%;
  1099. -webkit-text-size-adjust: none;
  1100. }
  1101. #music li.list-group-item {
  1102. padding: 5px 15px;
  1103. font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  1104. font-size: 12px;
  1105. }
  1106. #music.entry-content ul {
  1107. margin:0 0 24px;
  1108. }
  1109. @media screen and (max-width: 768px) {
  1110. .album h1, .album h2, .album h3 {
  1111. font-size: 13px;
  1112. line-height: 15px;
  1113. }
  1114. .album {
  1115. width: 25%;
  1116. }
  1117. }
  1118. @media screen and (min-width: 992px) {
  1119. .album h1, .album h2, .album h3 {
  1120. font-size: 15px;
  1121. line-height: 17px;
  1122. }
  1123. }
  1124. div#player{
  1125. width: 100%;
  1126. color: #555555;
  1127. font-family: 'PT Sans', sans-serif;
  1128. font-weight: 700;
  1129. font-size: 12px;
  1130. }
  1131. #song-information{
  1132. text-align: left;
  1133. margin: 0 0 10px;
  1134. }
  1135. #controls{
  1136. float: left;
  1137. }
  1138. #amplitude-volume-slider{
  1139. width: 90%;
  1140. float: right;
  1141. }
  1142. #amplitude-play-pause{
  1143. width: 15px;
  1144. height: 17px;
  1145. margin: 0 5px 0 0;
  1146. cursor: pointer;
  1147. float: right;
  1148. }
  1149. #amplitude-current-time{
  1150. font-family: 'PT Sans', sans-serif;
  1151. font-size: 14px;
  1152. font-weight: 400;
  1153. }
  1154. .amplitude-paused{
  1155. background-image: url('img/small-gray-play.png');
  1156. background-repeat: no-repeat;
  1157. }
  1158. .amplitude-playing{
  1159. background-image: url('img/small-gray-pause.png');
  1160. background-repeat: no-repeat;
  1161. }
  1162. #amplitude-now-playing-name{
  1163. }
  1164. #amplitude-now-playing-listeners{
  1165. }
  1166. #amplitude-now-playing-bitrate{
  1167. }
  1168. /*============================================
  1169. Anatlyics
  1170. ==============================================*/
  1171. .widget {
  1172. background:#000 !important;
  1173. }
  1174. .map {
  1175. height:500px;
  1176. }
  1177. /*============================================
  1178. ==============================================
  1179. General Content
  1180. ==============================================
  1181. ==============================================*/
  1182. .screen-reader {
  1183. text-indent: -10000px;
  1184. top:auto;
  1185. width:1px;
  1186. height:1px;
  1187. overflow:hidden;
  1188. }
  1189. .divider {
  1190. border-bottom: 1px solid #cecece;
  1191. width:100%;
  1192. margin: 30px 0 30px;
  1193. }
  1194. #content {
  1195. margin-bottom: 36px;
  1196. margin-top: 100px;
  1197. }
  1198. #content,
  1199. #content input,
  1200. #content textarea {
  1201. color: #111;
  1202. }
  1203. #content p,
  1204. #content ul,
  1205. #content ol,
  1206. #content dd,
  1207. #content pre,
  1208. #content hr {
  1209. margin-bottom: 24px;
  1210. }
  1211. #content ul ul,
  1212. #content ol ol,
  1213. #content ul ol,
  1214. #content ol ul {
  1215. margin-bottom: 0;
  1216. }
  1217. #content pre,
  1218. #content kbd,
  1219. #content tt,
  1220. #content var {
  1221. font-size: 15px;
  1222. line-height: 21px;
  1223. }
  1224. #content code {
  1225. font-size: 13px;
  1226. }
  1227. #content dt,
  1228. #content th {
  1229. color: #000;
  1230. }
  1231. #content h1,
  1232. #content h2,
  1233. #content h3,
  1234. #content h4,
  1235. #content h5,
  1236. #content h6 {
  1237. color: #000;
  1238. line-height: 1.5em;
  1239. margin: 0 0 16px 0;
  1240. }
  1241. #content table {
  1242. border: 1px solid #e7e7e7;
  1243. margin: 0 -1px 24px 0;
  1244. text-align: left;
  1245. width: 100%;
  1246. }
  1247. #content tr th,
  1248. #content thead th {
  1249. color: #888;
  1250. font-size: 12px;
  1251. font-weight: bold;
  1252. line-height: 18px;
  1253. padding: 9px 24px;
  1254. }
  1255. #content tr td {
  1256. border-top: 1px solid #e7e7e7;
  1257. padding: 6px 24px;
  1258. }
  1259. #content tr.odd td {
  1260. background: #f2f7fc;
  1261. }
  1262. .hentry {
  1263. margin: 0 0 30px 0;
  1264. }
  1265. .home .sticky {
  1266. background: #f2f7fc;
  1267. border-top: 4px solid #000;
  1268. margin-left: -20px;
  1269. margin-right: -20px;
  1270. padding: 18px 20px;
  1271. }
  1272. .single .hentry {
  1273. margin: 0 0 36px 0;
  1274. }
  1275. .page-title {
  1276. color: #000;
  1277. font-size: 14px;
  1278. font-weight: bold;
  1279. margin: 0 0 36px 0;
  1280. }
  1281. .page-title span {
  1282. color: #333;
  1283. font-size: 16px;
  1284. font-style: italic;
  1285. font-weight: normal;
  1286. }
  1287. .entry-caption-parent .page-title span {
  1288. color: #777;
  1289. font-size: 12px;
  1290. font-style: italic;
  1291. font-weight: normal;
  1292. }
  1293. .nav-previous span.meta-nav {
  1294. color: #555;
  1295. font-size: 18px;
  1296. font-weight: normal;
  1297. }
  1298. .nav-next span.meta-nav {
  1299. color: #555;
  1300. font-size: 16px;
  1301. font-weight: normal;
  1302. }
  1303. .page-title a:link,
  1304. .page-title a:visited {
  1305. color: #888;
  1306. text-decoration: none;
  1307. }
  1308. .page-title a:active,
  1309. .page-title a:hover {
  1310. color: #2a6496;
  1311. }
  1312. #content .entry-title {
  1313. color: #000;
  1314. font-size: 26px;
  1315. font-weight: bold;
  1316. line-height: 1.3em;
  1317. margin: 20px 0 20px;
  1318. }
  1319. h2.entry-title {
  1320. color: #999;
  1321. }
  1322. .entry-title a:link,
  1323. .entry-title a:visited {
  1324. color: #000;
  1325. text-decoration: none;
  1326. }
  1327. .entry-title a:active,
  1328. .entry-title a:hover {
  1329. color: #2a6496;
  1330. }
  1331. .entry-meta {
  1332. color: #888;
  1333. font-size: 12px;
  1334. }
  1335. .entry-meta abbr,
  1336. .entry-utility abbr {
  1337. border: none;
  1338. }
  1339. .entry-meta abbr:hover,
  1340. .entry-utility abbr:hover {
  1341. border-bottom: 1px dotted #666;
  1342. }
  1343. .entry-content,
  1344. .entry-summary {
  1345. clear: both;
  1346. padding: 18px 0 20px;
  1347. }
  1348. .entry-content p {
  1349. font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
  1350. }
  1351. /* Block page content (templates/page.html) — light card over the dark page bg.
  1352. Scoped to the group wrapper so it doesn't double up with the nested
  1353. .wp-block-post-content.entry-content. */
  1354. .wp-block-group.entry-content {
  1355. background: #dadada;
  1356. padding: 96px; /* 1in APA-style margins on all sides (96px = 1in) */
  1357. border-radius: 6px;
  1358. }
  1359. .signature {
  1360. float: right;
  1361. margin: 10px 150px 40px 0px;
  1362. }
  1363. span.author {
  1364. display:none;
  1365. }
  1366. #inside h3 {
  1367. font: 16px "Courier New", Courier, mono;
  1368. line-height: 10px;
  1369. margin: 0 0 10px 0;
  1370. }
  1371. #inside p {
  1372. margin: 0 0 10px 0;
  1373. line-height: 20px;
  1374. }
  1375. #content .entry-summary p:last-child {
  1376. margin-bottom: 12px;
  1377. }
  1378. .entry-content fieldset {
  1379. margin: 0 0 24px 0;
  1380. padding: 24px;
  1381. }
  1382. .entry-content fieldset legend {
  1383. background: #fff;
  1384. color: #000;
  1385. font-weight: bold;
  1386. padding: 0 24px;
  1387. }
  1388. .entry-content input {
  1389. margin: 0 0 20px 0;
  1390. }
  1391. .entry-content input.file,
  1392. .entry-content input.button {
  1393. margin-right: 24px;
  1394. }
  1395. .entry-content label {
  1396. color: #888;
  1397. font-size: 12px;
  1398. }
  1399. .entry-content select {
  1400. margin: 0 0 24px 0;
  1401. }
  1402. .entry-content sup,
  1403. .entry-content sub {
  1404. font-size: 10px;
  1405. }
  1406. .entry-content blockquote {
  1407. border-left:none;
  1408. font-style:italic;
  1409. margin: 0 0px 20px;
  1410. color:#333;
  1411. background:#eeeeeec7;
  1412. padding:20px;
  1413. }
  1414. blockquote p {
  1415. margin: 0 0 12px !important;
  1416. }
  1417. .wp-block-image figcaption {
  1418. display: block !important;
  1419. }
  1420. .entry-content blockquote cite {
  1421. text-align:right;
  1422. margin-bottom:0;
  1423. }
  1424. .entry-content blockquote cite p {
  1425. text-align:right;
  1426. margin-bottom:0 !important;
  1427. }
  1428. .entry-content blockquote.left {
  1429. float: left;
  1430. margin-left: 0;
  1431. margin-right: 24px;
  1432. text-align: right;
  1433. width: 33%;
  1434. }
  1435. .entry-content blockquote.right {
  1436. float: right;
  1437. margin-left: 24px;
  1438. margin-right: 0;
  1439. text-align: left;
  1440. width: 33%;
  1441. }
  1442. body.page .edit-link {
  1443. clear: both;
  1444. display: block;
  1445. }
  1446. .entry-meta a,
  1447. .entry-utility a {
  1448. color: #888;
  1449. }
  1450. .entry-meta a:hover,
  1451. .entry-utility a:hover {
  1452. color: #ff4b33;
  1453. }
  1454. #content .video-player {
  1455. padding: 0;
  1456. }
  1457. .date {
  1458. float: right;
  1459. margin: 0px 0 20px 50px;
  1460. color: #777;
  1461. font: 14px/18px "Courier New", Courier, mono;
  1462. }
  1463. #content ul li li {
  1464. padding: 0 0 0 20px;
  1465. }
  1466. .list-group-horizontal .list-group-item {
  1467. display: inline-block;
  1468. }
  1469. .list-group-horizontal .list-group-item {
  1470. margin-bottom: 0;
  1471. margin-left:-2px;
  1472. margin-right: 0;
  1473. }
  1474. .list-group-horizontal .list-group-item:first-child {
  1475. border-top-right-radius:0;
  1476. border-bottom-left-radius:4px;
  1477. }
  1478. .list-group-horizontal .list-group-item:last-child {
  1479. border-top-right-radius:4px;
  1480. border-bottom-left-radius:0;
  1481. }
  1482. .archive-page {
  1483. background:#fff;
  1484. box-shadow: 0 0 5px rgba(0,0,0,.1);
  1485. padding: 70px 100px 140px;
  1486. }
  1487. .single-card .entry-title {
  1488. margin-bottom:5px !important;
  1489. }
  1490. article.studio {
  1491. background: #fff;
  1492. padding: 0 15px 10px;
  1493. margin:0 0 20px;
  1494. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  1495. }
  1496. .archive-thumbnail {
  1497. max-height:180px;
  1498. overflow:hidden;
  1499. }
  1500. img.archive-thumb {
  1501. box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  1502. -webkit-filter: saturate(1) opacity(1);
  1503. filter: saturate(1) opacity(1);
  1504. -webkit-transition: all 1s;
  1505. transition: all 1s;
  1506. }
  1507. img.archive-thumb:hover {
  1508. -webkit-filter: saturate(3) opacity(1) invert(.8);
  1509. filter: saturate(3) opacity(1) invert(.8);
  1510. }
  1511. /*============================================
  1512. Meta
  1513. ==============================================*/
  1514. .meta {
  1515. font-size: 11px;
  1516. }
  1517. .categories-fb {
  1518. text-align: right;
  1519. }
  1520. span.fb {
  1521. width: 16px;
  1522. height: 16px;
  1523. margin-left: 5px;
  1524. padding: 3px 4px 2px 5px;
  1525. background-image: url(img/fb1.png) ;
  1526. background-position: 0 16px;
  1527. position: relative;
  1528. -webkit-transition: all ease 0.3s;
  1529. -moz-transition: all ease 0.3s;
  1530. -o-transition: all ease 0.3s;
  1531. transition: all ease 0.3s;
  1532. }
  1533. span.fb:hover {
  1534. background-position: 0 0;
  1535. }
  1536. /*============================================
  1537. Comments
  1538. ==============================================*/
  1539. .commentbubble {
  1540. font-family:"CM Type";
  1541. font-size: 13px;
  1542. color: #777;
  1543. margin: 0px 15px 0 0;
  1544. }
  1545. .comment {
  1546. padding: 10px;
  1547. }
  1548. .comments-area {
  1549. background: rgba(242,242,242,.7);
  1550. padding: 15px;
  1551. margin: 60px 0 0 0;
  1552. }
  1553. #content .comments-area p {
  1554. margin: 0 0 8px;
  1555. font-size: 13px;
  1556. }
  1557. #content .comments-area .reply {
  1558. margin: 5px 8px 0px;
  1559. padding: 2px 9px;
  1560. background: rgba(242,242,242,.5);
  1561. font-size: 11px;
  1562. }
  1563. .comments-title {
  1564. margin-bottom: 48px;
  1565. font-size: 16px;
  1566. line-height: 1.5;
  1567. font-weight: normal;
  1568. }
  1569. .comments-area ul {
  1570. margin: 0px 0px;
  1571. list-style: none;
  1572. }
  1573. .comments-area h3 {
  1574. margin: 0 0 0;
  1575. }
  1576. .comments-meta {
  1577. font-size: 10px;
  1578. }
  1579. .comments-area article {
  1580. margin: 24px 0;
  1581. }
  1582. .comments-area article header {
  1583. margin: 0 0 48px;
  1584. overflow: hidden;
  1585. position: relative;
  1586. }
  1587. .comments-area article header img {
  1588. float: left;
  1589. padding: 0;
  1590. line-height: 0;
  1591. }
  1592. .comments-area article header cite,
  1593. .comments-area article header time {
  1594. display: block;
  1595. margin-left: 85px;
  1596. }
  1597. .comments-area article header cite {
  1598. font-style: normal;
  1599. font-size: 15px;
  1600. }
  1601. .comments-area cite b {
  1602. font-weight: normal;
  1603. }
  1604. .comments-area article header time {
  1605. text-decoration: none;
  1606. font-size: 12px;
  1607. color: #5e5e5e;
  1608. }
  1609. .comments-area article header a {
  1610. text-decoration: none;
  1611. color: #5e5e5e;
  1612. }
  1613. .comments-area article header a:hover {
  1614. color: #21759b;
  1615. }
  1616. .comments-area article header cite a {
  1617. color: #444;
  1618. }
  1619. .comments-area article header cite a:hover {
  1620. text-decoration: underline;
  1621. }
  1622. .commentlist .pingback {
  1623. line-height: 1.714285714;
  1624. margin-bottom: 24px;
  1625. }
  1626. li.comment.even {
  1627. background: #fff;
  1628. }
  1629. li.comment.odd {
  1630. background: #f3f3f3;
  1631. }
  1632. li.comment.thread-even {
  1633. background: #f5f5f5;
  1634. }
  1635. li.comment.thread-odd {
  1636. background: #fff;
  1637. }
  1638. .comment-meta {
  1639. font-size: 11px;
  1640. line-height: 12px;
  1641. }
  1642. .comment-meta a {
  1643. color: #777;
  1644. float: right;
  1645. margin-top: -15px;
  1646. }
  1647. /*====== Comment form ======*/
  1648. .required {
  1649. color: red;
  1650. }
  1651. .form-submit {
  1652. display: none;
  1653. }
  1654. .comment-form-author,
  1655. .comment-form-email,
  1656. .comment-form-url {
  1657. width: 50%;
  1658. }
  1659. /*============================================
  1660. Media
  1661. ==============================================*/
  1662. .video-container {
  1663. position: relative;
  1664. padding-bottom: 56.25%;
  1665. padding-top: 30px; height: 0; overflow: hidden;
  1666. }
  1667. .video-container iframe,
  1668. .video-container object,
  1669. .video-container embed {
  1670. position: absolute;
  1671. top: 0;
  1672. left: 0;
  1673. width: 100%;
  1674. height: 100%;
  1675. }
  1676. .category-gallery .size-thumbnail img {
  1677. border: 10px solid #f1f1f1;
  1678. margin-bottom: 0;
  1679. }
  1680. .category-gallery .gallery-thumb {
  1681. float: left;
  1682. margin-right: 20px;
  1683. margin-top: -4px;
  1684. }
  1685. .home #content .category-gallery .entry-utility {
  1686. padding-top: 4px;
  1687. }
  1688. /*===== Attachments =====*/
  1689. .single-attachment .hentry {
  1690. margin: 0px;
  1691. }
  1692. .attachment .entry-content .entry-caption {
  1693. font-size: 140%;
  1694. margin-top: 24px;
  1695. }
  1696. #content .entry-caption-attachment h2.entry-title {
  1697. margin: 0 0 5px;
  1698. font-weight: normal;
  1699. }
  1700. #content .entry-caption-parent p.page-title {
  1701. margin: -30px 0 0 0;
  1702. font: normal 13px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  1703. }
  1704. #content .entry-caption-parent p.page-title a {
  1705. color: #555;
  1706. }
  1707. #content .entry-caption-attachment p {
  1708. font-size: 14px;
  1709. text-indent: 0px;
  1710. line-height: 15px;
  1711. margin-bottom: 0px;
  1712. }
  1713. .attachment .entry-content .nav-previous a:before {
  1714. content: '\2190\00a0';
  1715. }
  1716. .attachment .entry-content .nav-next a:after {
  1717. content: '\00a0\2192';
  1718. }
  1719. /*===== Images ======*/
  1720. img.avatar {
  1721. width: 50px;
  1722. height: 50px;
  1723. -webkit-border-radius: 30px;
  1724. -moz-border-radius: 30px;
  1725. border-radius: 30px;
  1726. }
  1727. img.me {
  1728. height: 70px;
  1729. margin: 0 10px 0 0;
  1730. padding: 0 5px;
  1731. float: left;
  1732. -webkit-border-radius: 50%;
  1733. -moz-border-radius: 50%;
  1734. border-radius: 50%;
  1735. -webkit-filter: grayscale(1);
  1736. filter:grayscale(1);
  1737. }
  1738. .entry-content img {
  1739. max-width: 100%;
  1740. height: auto;
  1741. }
  1742. #content .home img {
  1743. border: 15px solid #000;
  1744. }
  1745. #content .alignleft,
  1746. #content img.alignleft {
  1747. display: inline;
  1748. float: left;
  1749. margin-right: 24px;
  1750. margin-top: 4px;
  1751. }
  1752. #content .alignright,
  1753. #content img.alignright {
  1754. display: inline;
  1755. float: right;
  1756. margin-left: 24px;
  1757. margin-top: 4px;
  1758. }
  1759. #content .aligncenter,
  1760. #content img.aligncenter {
  1761. clear: both;
  1762. margin-left: auto;
  1763. margin-right: auto;
  1764. }
  1765. #content img.alignleft,
  1766. #content img.alignright,
  1767. #content img.aligncenter {
  1768. margin-bottom: 12px;
  1769. }
  1770. #content img.alignfull,
  1771. #content img.alignwide
  1772. {
  1773. max-width: 100vw;
  1774. width: 100vw;
  1775. }
  1776. #content .wp-caption {
  1777. color: #737373;
  1778. line-height: 18px;
  1779. margin-bottom: 20px;
  1780. padding: 4px;
  1781. text-align: center;
  1782. }
  1783. #content .wp-caption img {
  1784. margin: 5px 5px 0;
  1785. }
  1786. #content .wp-caption p.wp-caption-text {
  1787. color: #888;
  1788. font-size: 10px;
  1789. margin: 5px;
  1790. }
  1791. #content .attachment img {
  1792. display: block;
  1793. margin: 0 auto;
  1794. }
  1795. .gallery { margin: 0 auto 18px; }
  1796. .gallery .gallery-item {
  1797. float: left;
  1798. margin-top: 0;
  1799. text-align: center;
  1800. width: 33%;
  1801. }
  1802. .gallery-columns-2 .gallery-item { width: 50%; }
  1803. .gallery-columns-4 .gallery-item { width: 25%; }
  1804. .gallery img {
  1805. box-shadow: 0px 0px 4px #999;
  1806. border: 5px solid #000;
  1807. padding: 8px;
  1808. background: #555;
  1809. }
  1810. .gallery img:hover {
  1811. background: #777;
  1812. }
  1813. .gallery-columns-2 .attachment-medium {
  1814. max-width: 92%;
  1815. height: auto;
  1816. }
  1817. .gallery-columns-4 .attachment-thumbnail {
  1818. max-width: 84%;
  1819. height: auto;
  1820. }
  1821. .gallery .gallery-caption {
  1822. color: #888;
  1823. font-size: 12px;
  1824. margin: 0 0 12px;
  1825. }
  1826. .gallery dl, .gallery dt { margin: 0; }
  1827. .gallery br+br { display: none; }
  1828. /*============================================
  1829. Pagination
  1830. ==============================================*/
  1831. .navigation {
  1832. color: #888;
  1833. font-size: 12px;
  1834. line-height: 18px;
  1835. overflow: hidden;
  1836. clear: both;
  1837. }
  1838. .navigation a:link,
  1839. .navigation a:visited {
  1840. color: #888;
  1841. text-decoration: none;
  1842. }
  1843. .navigation a:active,
  1844. .navigation a:hover {
  1845. color: #ff4b33;
  1846. }
  1847. .nav-previous {
  1848. color: #333;
  1849. font-size: 17px;
  1850. float: left;
  1851. width: 50%;
  1852. margin: 0 0 15px 0;
  1853. }
  1854. .nav-next {
  1855. color: #333;
  1856. font-size: 17px;
  1857. float: right;
  1858. text-align: right;
  1859. width: 50%;
  1860. }
  1861. .paged #nav-above,
  1862. .single #nav-above {
  1863. display: block;
  1864. }
  1865. #nav-below {
  1866. margin: 50px 0 0px;
  1867. padding: 20px 10px 0;
  1868. border-top: 1px solid #cecece;
  1869. }
  1870. .pagination {
  1871. margin-top: 40px;
  1872. padding: 20px 0 0;
  1873. }
  1874. .pagination a {
  1875. padding: 4px 5px;
  1876. color: #fff;
  1877. font-weight: bold;
  1878. font-size: 16px;
  1879. }
  1880. .pagination a:active {
  1881. padding: 4px 5px;
  1882. background: #707071;
  1883. color:#fff;
  1884. }
  1885. .pagination a:hover {
  1886. padding: 4px 5px;
  1887. background: #fff;
  1888. color: #ec0000;
  1889. }
  1890. .pagination a.next,
  1891. .pagination a.prev {
  1892. padding: 4px 7px 25px;
  1893. margin-top:-7px;
  1894. color: #ec0000;
  1895. font-weight: bold;
  1896. font-size: 27px;
  1897. }
  1898. .pagination .current {
  1899. padding: 4px 5px;
  1900. background: #fff;
  1901. color: #ec0000;
  1902. font-weight: bold;
  1903. font-size: 16px;
  1904. }
  1905. .page-numbers {
  1906. padding: 4px 5px;
  1907. font-weight: bold;
  1908. font-size: 16px;
  1909. }
  1910. /*============================================
  1911. 404
  1912. ==============================================*/
  1913. .not-search {
  1914. margin: 30px;
  1915. padding: 10px;
  1916. height: 80px;
  1917. zoom: 180%;
  1918. }
  1919. .not-search button {
  1920. line-height: 20px;
  1921. }
  1922. /*===== Structure =====*/
  1923. .a:hover {
  1924. color: #1d8;
  1925. }
  1926. .leader {
  1927. padding: 100px 0 0;
  1928. }
  1929. .dark {
  1930. background: #222;
  1931. }
  1932. .bottom {
  1933. padding-top: 50px;
  1934. }
  1935. .centered {
  1936. float: none;
  1937. margin: 0 auto;
  1938. }
  1939. .border-left {
  1940. border-left: 1px solid #333;
  1941. }
  1942. article#main {
  1943. padding: 0px;
  1944. }
  1945. article#main .entry-content {
  1946. padding: 15px;
  1947. }
  1948. article h2 {
  1949. font-size: 28px;
  1950. }
  1951. article.single {
  1952. background: #fff;
  1953. box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  1954. }
  1955. article.blurb {
  1956. background: #fff;
  1957. padding: 10px 15px;
  1958. margin:25px 0;
  1959. box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  1960. }
  1961. .post {
  1962. margin-bottom: 40px;
  1963. }
  1964. article p {
  1965. text-indent: 12px;
  1966. }
  1967. article p img {
  1968. text-indent: 0px;
  1969. margin: 15px 0 15px -12px;
  1970. }
  1971. p.nobreak {
  1972. margin: 0 0 10px !important;
  1973. }
  1974. span.quiet {
  1975. display: none;
  1976. }
  1977. span.right {
  1978. float: right;
  1979. }
  1980. .entry-content ul {
  1981. margin: 10px 20px;
  1982. }
  1983. .entry-content ul.sitemap {
  1984. margin: 0;
  1985. }
  1986. .form-row.checkbox {
  1987. font-size: 0.85em;
  1988. }
  1989. /*============================================
  1990. Code - Sunburst Theme
  1991. ==============================================*/
  1992. pre {
  1993. background-color: #000 !important;
  1994. word-wrap: break-word;
  1995. margin: 0 0 20px 0;
  1996. padding: 10px;
  1997. color: #fff !important;
  1998. font-size: 14px;
  1999. }
  2000. pre, code {
  2001. font-family: 'Monaco', courier, monospace;
  2002. }
  2003. pre .comment {
  2004. color: #AEAEAE; font-style: italic;
  2005. }
  2006. pre .constant {
  2007. color: #3387CC;
  2008. }
  2009. pre .storage {
  2010. color: #99CF50;
  2011. }
  2012. pre .string, pre .entity.name.class, pre .comment.docstring {
  2013. color: #65B042;
  2014. }
  2015. pre .string.regexp {
  2016. color: #E9C062;
  2017. }
  2018. pre .string.constant {
  2019. color: #DDF2A4;
  2020. }
  2021. pre .constant.hex-color {
  2022. color: #DD7B3B;
  2023. }
  2024. pre .support, pre .tag.script, pre .function.call {
  2025. color: #dad085;
  2026. }
  2027. pre .support.css-property {
  2028. color: #C5AF75;
  2029. }
  2030. pre .support.tag.style {
  2031. color: #fff;
  2032. }
  2033. pre .keyword, pre .selector {
  2034. color: #E28964;
  2035. }
  2036. pre .keyword.namespace {
  2037. color: #3387CC;
  2038. font-weight: bold;
  2039. }
  2040. pre .inherited-class {
  2041. font-style: italic;
  2042. }
  2043. pre .entity, pre .variable.instance, pre .support.namespace, pre .support.tag, pre .support.tag-name {
  2044. color: #89BDFF;
  2045. }
  2046. pre .entity.name.id {
  2047. color: #8693A5;
  2048. }
  2049. *[data-language="c"] .function.call {
  2050. color: #8DA6CE;
  2051. }
  2052. pre .variable, pre .variable.global {
  2053. color: #3E87E3;
  2054. }
  2055. pre .variable.class {
  2056. }
  2057. .wp-block-video video {
  2058. max-width:100% !important;
  2059. width:100% !important;
  2060. height:auto !important;
  2061. }
  2062. figcaption {
  2063. text-align:right;
  2064. color: #777777;
  2065. font-size:13px;
  2066. }
  2067. ul.tags {
  2068. font-size:14px;
  2069. }
  2070. .chess-html {
  2071. padding: 0 5px 0 5px;
  2072. }
  2073. p.powerdby {
  2074. display:none;
  2075. }
  2076. .nav {
  2077. display:block;
  2078. }
  2079. .site-title {
  2080. float: right !important;
  2081. }
  2082. .navbar-right {
  2083. float: right !important;
  2084. margin-right: 0px;
  2085. }
  2086. .navbar .container {
  2087. display: block;
  2088. }
  2089. a {
  2090. color:#67000a;
  2091. }
  2092. a:hover {
  2093. color:#1a8;
  2094. }
  2095. .about a {
  2096. color:#ff4557;
  2097. }
  2098. li a {
  2099. font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  2100. font-size: .9em;
  2101. }
  2102. ul.bookmarks {
  2103. font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
  2104. font-size: .9em;
  2105. }
  2106. .entry-title {
  2107. font-weight:600;
  2108. }
  2109. .navbar.visible {
  2110. background: rgba(72, 76, 87, 0.7); /* footer color (#484c57), translucent */
  2111. backdrop-filter: blur(6px);
  2112. }
  2113. .offcanvas {
  2114. background: #2b2e35d7;
  2115. }
  2116. ul.nav .list-group-item a {
  2117. color: #fff;
  2118. font-family: 'Playfair Display', serif;
  2119. font-weight: 700;
  2120. font-size: 1.2rem;
  2121. }
  2122. ul.nav .list-group-item a:hover {
  2123. color: #25c2a0;
  2124. }
  2125. ul.nav .list-group-item {
  2126. border:none;
  2127. background: none;
  2128. color: #fff;
  2129. }
  2130. ul.nav .list-group-item:first-child {
  2131. border-top-left-radius:0;
  2132. border-bottom-left-radius:0;
  2133. }
  2134. ul.nav .list-group-item:last-child {
  2135. border-top-right-radius:0;
  2136. border-bottom-right-radius:0;
  2137. }
  2138. ul.nav ul li {
  2139. margin-left: 15px;
  2140. }
  2141. figure {
  2142. margin: 1em 0px;
  2143. }
  2144. .wp-block-pullquote {
  2145. font-size: 24px;
  2146. margin: 10px 50px;
  2147. }