style.css 45 KB

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