style.css 58 KB

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