style.css 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628
  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. position: relative; /* positioning context for the .dw-studio-action buttons */
  886. }
  887. /* Per-tab action buttons (Learn More, View all projects) pinned to the bottom-right
  888. of the content card, so every actionable item on the Studio page lands in the
  889. same corner. Only the active pane's button shows. */
  890. .dw-studio-action {
  891. position: absolute;
  892. right: 2.5rem;
  893. bottom: 1.5rem;
  894. margin: 0;
  895. }
  896. /* Subnav column background: rounded on the bottom only so its square top stays
  897. snug against the hero slider above; padding-bottom gives the Projects button room. */
  898. .studio-subnav-col {
  899. border-radius: 0 0 6px 6px;
  900. padding-bottom: 1.5rem;
  901. }
  902. /* Projects page button under the tabs — light, to contrast with the dark subnav column */
  903. /* Studio tab copy — now full-width (the Tools third column was removed); give it
  904. breathing room all around and a larger type size. */
  905. #studio-tab .tab-pane .entry-content {
  906. padding: 2.5rem;
  907. }
  908. #studio-tab .tab-pane .entry-content h4 {
  909. font-size: 1.3rem !important; /* beat the .fs-5 !important utility on the copy */
  910. line-height: 1.6;
  911. }
  912. .studio-subnav a {
  913. color: #000;
  914. text-decoration: none;
  915. }
  916. .studio-subnav li.active a {
  917. color: #FF0000;
  918. text-decoration: none;
  919. border: none;
  920. }
  921. .studio-subnav a:hover {
  922. color: #FF0000;
  923. text-decoration: none;
  924. border: none;
  925. }
  926. #studio-tab h4 {
  927. line-height: 24px;
  928. }
  929. article.studio {
  930. background: #fff;
  931. padding: 14px 15px 10px; /* top padding = a little space beneath the featured image */
  932. margin:0 0 20px;
  933. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  934. }
  935. .studio-thumbnail {
  936. max-height:180px;
  937. overflow:hidden;
  938. }
  939. img.studio-thumb {
  940. box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  941. -webkit-filter: saturate(0) opacity(0.6);
  942. filter: saturate(0) opacity(0.6);
  943. -webkit-transition: all 1s;
  944. transition: all 1s;
  945. }
  946. img.studio-thumb:hover {
  947. -webkit-filter: saturate(1) opacity(1);
  948. filter: saturate(1) opacity(1);
  949. }
  950. /* Projects page — same dark-blue body (body.page) + light content card + 1280
  951. width as the desk / block pages. body.projects comes from page_bodyclass(). */
  952. body.projects .container.leader {
  953. width: auto;
  954. max-width: 1280px;
  955. }
  956. body.projects h1 {
  957. color: #fff;
  958. }
  959. .projects-card {
  960. background: #dadada;
  961. padding: 96px;
  962. border-radius: 6px;
  963. }
  964. /* Uniform card height: fix the thumbnail height (crop-to-fill) so every card is the
  965. same total height regardless of the image's aspect ratio; clip any long excerpt. */
  966. .projects-card .studio-thumbnail {
  967. height: 180px;
  968. }
  969. .projects-card img.studio-thumb {
  970. width: 100%;
  971. height: 100%;
  972. object-fit: cover;
  973. }
  974. .projects-card .studio .entry-content {
  975. overflow: hidden;
  976. }
  977. /* Projects cards shown in the Studio hero slide (data-id 9). The slide is styled
  978. as the top half of the #dadada .studio-lower card below it: same width + #dadada
  979. bg, rounded top corners, square bottom to meet .studio-lower's square top flush.
  980. The hero stage is transparent (caro-grad5) so the dark body shows around it, just
  981. as it does around .studio-lower. min-height fills to the hero's 40vh so the two
  982. halves stay flush (100px = the .leader top padding above the slide). */
  983. .dw-studio-projects-slide {
  984. background: #dadada;
  985. border-radius: 6px 6px 0 0;
  986. padding: 1.5rem 1.5rem 0.5rem;
  987. min-height: calc(40vh - 100px);
  988. }
  989. .dw-studio-projects-title {
  990. margin: 0 0 1rem;
  991. font-weight: 700;
  992. font-size: 2rem;
  993. color: #232323;
  994. }
  995. .dw-studio-projects-slide .studio-thumbnail {
  996. height: 150px;
  997. }
  998. .dw-studio-projects-slide img.studio-thumb {
  999. width: 100%;
  1000. height: 100%;
  1001. object-fit: cover;
  1002. }
  1003. .dw-studio-projects-slide .studio .entry-content {
  1004. overflow: hidden;
  1005. }
  1006. /*============================================
  1007. Art
  1008. ==============================================*/
  1009. body.art .site-title a {
  1010. color: #FFFFFF;
  1011. }
  1012. /* Art page — dark-theme card treatment to match the rest of the site. */
  1013. body.art h3 {
  1014. color: #dadada; /* "Art Projects" heading, same as the left-nav copy */
  1015. }
  1016. body.art .col-lg-3 a {
  1017. color: #dadada; /* left-nav copy, same tone as the footer copy */
  1018. }
  1019. body.art article.studio {
  1020. background: #dadada; /* card bg, like the #dadada cards on the other pages */
  1021. border-radius: 6px; /* small radius */
  1022. }
  1023. .art a {
  1024. color: #2F3446;
  1025. }
  1026. .art a:hover {
  1027. color: #cecece;
  1028. text-decoration: none;
  1029. }
  1030. .art a:active {
  1031. color: #FFFFFF;
  1032. text-decoration: none;
  1033. }
  1034. .art-image {
  1035. border: 10px solid #FFFFFF;
  1036. max-height: 800px;
  1037. margin: auto;
  1038. }
  1039. .art-gallery .controls {
  1040. position: relative;
  1041. bottom: 0;
  1042. }
  1043. .art-gallery .prev-next {
  1044. margin: 10px 0 10px;
  1045. }
  1046. .studio .entry-content {
  1047. height: 120px;
  1048. }
  1049. /*============================================
  1050. Now
  1051. ==============================================*/
  1052. .desk ul.now-doing li{
  1053. color: #4e4e4e;
  1054. line-height: 1.4em;
  1055. margin: 0 0 5px 0;
  1056. }
  1057. /*============================================
  1058. Desk
  1059. ==============================================*/
  1060. /* Desk content card — light card (1in APA-style padding) over the dark body.page bg,
  1061. matching the block pages' .wp-block-group.entry-content. body.desk .container.leader
  1062. sets the 1280 width (see above). */
  1063. body.desk .entry-content {
  1064. background:#dadada;
  1065. padding:96px;
  1066. border-radius:6px;
  1067. }
  1068. .desk li {
  1069. color: #777
  1070. }
  1071. /* Desk third column (Recently Edited / Bookmarks / Year / Topics / Tags): a clear
  1072. line of space between each section. Year/Topics/Tags render inline (their links are
  1073. direct children of ul.tags), at the same font size as the rest of the page. */
  1074. .desk-meta {
  1075. border-left: 0; /* right-hand sidebar — no divider on its left edge */
  1076. }
  1077. .desk-meta > ul {
  1078. margin-bottom: 1.25rem;
  1079. }
  1080. .desk-meta > ul:last-child {
  1081. margin-bottom: 0;
  1082. }
  1083. /* Desk actions row: search field inline with the Scroll / Archive buttons. The
  1084. hand-rolled .input-group is missing the child-flex rule that keeps the field and
  1085. submit button on one line, so scope that behaviour (+ joined border radii) here. */
  1086. .desk-actions .input-group {
  1087. flex-wrap: nowrap;
  1088. }
  1089. .desk-actions .input-group .form-control {
  1090. flex: 1 1 auto;
  1091. width: 1%;
  1092. min-width: 0;
  1093. margin: 0; /* cancel the .entry-content input 20px bottom margin that stretched the input-group (and the button) */
  1094. border-top-right-radius: 0;
  1095. border-bottom-right-radius: 0;
  1096. }
  1097. .desk-actions .input-group .btn {
  1098. display: flex;
  1099. align-items: center;
  1100. justify-content: center;
  1101. border-top-left-radius: 0;
  1102. border-bottom-left-radius: 0;
  1103. }
  1104. /*============================================
  1105. Music
  1106. ==============================================*/
  1107. .albums {
  1108. position: relative;
  1109. display: flex;
  1110. flex-wrap: wrap;
  1111. gap: 6px;
  1112. }
  1113. .albums:after {
  1114. content: "";
  1115. display: table;
  1116. clear: both;
  1117. }
  1118. .album {
  1119. width: 150px;
  1120. height: auto;
  1121. position: relative;
  1122. font-size: 12px;
  1123. -webkit-transition: -webkit-transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  1124. -moz-transition: -moz-transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  1125. -o-transition: -o-transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  1126. transition: transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  1127. -webkit-perspective: 600px;
  1128. perspective: 600px;
  1129. }
  1130. .album img {
  1131. width: 100%;
  1132. aspect-ratio: 1 / 1;
  1133. object-fit: cover;
  1134. display: block;
  1135. }
  1136. .album h1, .album h2, .album h3 {
  1137. font-size: 13px;
  1138. line-height: 15px;
  1139. }
  1140. .album .front, .album .back {
  1141. float: none;
  1142. width: 100%;
  1143. height: auto;
  1144. -webkit-transform-style: preserve-3d;
  1145. transform-style: preserve-3d;
  1146. -webkit-transition: -webkit-transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  1147. -moz-transition: -moz-transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  1148. -o-transition: -o-transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  1149. transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  1150. }
  1151. .album .front {
  1152. z-index: 1;
  1153. -webkit-transform: rotateY(0deg);
  1154. -moz-transform: rotateY(0deg);
  1155. -ms-transform: rotateY(0deg);
  1156. -o-transform: rotateY(0deg);
  1157. transform: rotateY(0deg);
  1158. }
  1159. .album .front .alpha {
  1160. -webkit-transition: opacity 0.4s ease-in-out;
  1161. -moz-transition: opacity 0.4s ease-in-out;
  1162. -o-transition: opacity 0.4s ease-in-out;
  1163. transition: opacity 0.4s ease-in-out;
  1164. display: block;
  1165. content: '';
  1166. height: 100%;
  1167. width: 100%;
  1168. position: absolute;
  1169. top: 0;
  1170. left: 0;
  1171. background: rgba(255, 255, 255, 0.85);
  1172. opacity: 0;
  1173. }
  1174. .album .back {
  1175. position: absolute;
  1176. top: 0;
  1177. left: 0;
  1178. z-index: 0;
  1179. text-align: center;
  1180. font-family: sans-serif;
  1181. padding: 10px;
  1182. opacity: 0;
  1183. -webkit-box-sizing: border-box;
  1184. -moz-box-sizing: border-box;
  1185. box-sizing: border-box;
  1186. -webkit-backface-visibility: hidden;
  1187. backface-visibility: hidden;
  1188. -webkit-transform: rotateY(-180deg);
  1189. -moz-transform: rotateY(-180deg);
  1190. -ms-transform: rotateY(-180deg);
  1191. -o-transform: rotateY(-180deg);
  1192. transform: rotateY(-180deg);
  1193. }
  1194. .album.flip {
  1195. -webkit-transform: scale(1.1, 1.1);
  1196. -moz-transform: scale(1.1, 1.1);
  1197. -ms-transform: scale(1.1, 1.1);
  1198. -o-transform: scale(1.1, 1.1);
  1199. transform: scale(1.1, 1.1);
  1200. z-index: 10;
  1201. }
  1202. .album.flip .front {
  1203. -webkit-transform: rotateY(180deg);
  1204. -moz-transform: rotateY(180deg);
  1205. -ms-transform: rotateY(180deg);
  1206. -o-transform: rotateY(180deg);
  1207. transform: rotateY(180deg);
  1208. }
  1209. .album.flip .front .alpha {
  1210. opacity: 1;
  1211. }
  1212. .album.flip .back {
  1213. z-index: 2;
  1214. opacity: 1;
  1215. -webkit-transform: rotateY(0deg);
  1216. -moz-transform: rotateY(0deg);
  1217. -ms-transform: rotateY(0deg);
  1218. -o-transform: rotateY(0deg);
  1219. transform: rotateY(0deg);
  1220. }
  1221. .album {
  1222. /* 5 per row, filling the full width — subtract the 4 × 6px flex gaps. */
  1223. width: calc((100% - 24px) / 5);
  1224. -webkit-text-size-adjust: none;
  1225. }
  1226. /* Music + Archive pages — light content card + 1280 leader width + white title over the
  1227. dark body.page bg, consistent with the desk / projects / block pages. */
  1228. body.music .container.leader,
  1229. body.archive .container.leader,
  1230. body.contact .container.leader,
  1231. body.sitemap .container.leader {
  1232. width: auto;
  1233. max-width: 1280px;
  1234. }
  1235. /* Neutralize the legacy single-article shell (white bg + drop-shadow + 70/140px
  1236. padding + 100px top margin) so the #dadada card sits directly under the title on
  1237. the dark body, spanning the full leader width — matching desk. Without box-shadow:none
  1238. the article.single shadow lingers and, with the bottom padding, draws a faint border
  1239. below the card. */
  1240. body.music article#content,
  1241. body.archive article#content {
  1242. background: transparent;
  1243. box-shadow: none;
  1244. margin-top: 0;
  1245. padding: 0;
  1246. }
  1247. .music-heading,
  1248. .archive-heading,
  1249. .contact-heading,
  1250. .sitemap-heading {
  1251. color: #fff;
  1252. font-size: 28px;
  1253. }
  1254. /* Year-to-year navigation below the date-archive card (date.php) — white links on
  1255. the dark body.archive bg, prev left / next right. */
  1256. .dw-year-nav {
  1257. display: flex;
  1258. justify-content: space-between;
  1259. align-items: center;
  1260. margin: 1.5rem 0 3rem;
  1261. font-family: 'Playfair Display', serif;
  1262. font-weight: 700;
  1263. font-size: 1.35rem;
  1264. }
  1265. .dw-year-nav a { color: #fff; }
  1266. .dw-year-nav a:hover { color: #1a8; }
  1267. #music.entry-content,
  1268. body.archive .entry-content {
  1269. background: #dadada;
  1270. padding: 96px;
  1271. border-radius: 6px;
  1272. }
  1273. /* Contact page — #content itself is the card (no inner .entry-content wrapper).
  1274. Override the legacy single-article 100px top margin so the card sits under the title. */
  1275. body.contact #content,
  1276. body.sitemap #content {
  1277. background: #dadada;
  1278. padding: 96px;
  1279. border-radius: 6px;
  1280. margin-top: 1.25rem;
  1281. margin-bottom: 3rem;
  1282. }
  1283. /* Search + 404 — block templates get the same dark body + white title-above +
  1284. #dadada card as the classic archive/contact/sitemap pages. (Only single posts
  1285. keep the title inside the card.) */
  1286. body.error404 {
  1287. background: rgba(72,76,87,1);
  1288. }
  1289. body.search main > .wp-block-group,
  1290. body.error404 main > .wp-block-group {
  1291. max-width: 1280px;
  1292. margin: 1.25rem auto 3rem;
  1293. padding-left: 96px;
  1294. padding-right: 96px;
  1295. background: #dadada;
  1296. border-radius: 6px;
  1297. }
  1298. body.search main > .wp-block-query-title,
  1299. body.error404 main > .wp-block-heading {
  1300. color: #fff;
  1301. max-width: 1280px;
  1302. margin: 1.25rem auto 0;
  1303. }
  1304. /* ===== Search results: two-column WP | TIL layout ========================= */
  1305. /* The search card lays the WP results and the TIL results (#dw-til-results,
  1306. filled by js/til-search.js) side by side, with the search box full-width on
  1307. top. If the TIL feature is removed, #dw-til-results simply isn't rendered and
  1308. the WP column grows to fill the row. */
  1309. body.search main > .wp-block-group {
  1310. display: flex;
  1311. flex-wrap: wrap;
  1312. align-items: flex-start;
  1313. gap: 0 3rem;
  1314. }
  1315. body.search main > .wp-block-group > .wp-block-search {
  1316. flex: 1 1 100%;
  1317. margin-bottom: 2.5rem;
  1318. }
  1319. body.search main > .wp-block-group > .wp-block-query,
  1320. body.search main > .wp-block-group > #dw-til-results {
  1321. flex: 1 1 300px;
  1322. min-width: 0;
  1323. margin: 0;
  1324. }
  1325. /* Tight, uniform result rows in both columns (was the block's spacing-40 pad). */
  1326. body.search .wp-block-post-template {
  1327. margin: 0;
  1328. padding: 0;
  1329. }
  1330. body.search li.wp-block-post {
  1331. margin: 0 0 1.5rem;
  1332. }
  1333. body.search li.wp-block-post > .wp-block-group {
  1334. padding: 0;
  1335. }
  1336. body.search .wp-block-post-title {
  1337. font-size: 1.35rem;
  1338. font-weight: 700;
  1339. line-height: 1.25;
  1340. margin: 0;
  1341. }
  1342. body.search .wp-block-post-excerpt {
  1343. margin: .35rem 0 0;
  1344. }
  1345. body.search .wp-block-post-excerpt__excerpt {
  1346. margin: 0;
  1347. color: #333;
  1348. }
  1349. /* Search-term highlight in both columns — WP excerpts (dw_highlight_search_excerpt)
  1350. and TIL snippets (js/til-search.js). */
  1351. body.search mark {
  1352. background: #ffe08a;
  1353. color: inherit;
  1354. padding: 0 2px;
  1355. }
  1356. /* --- TIL column (removable — see js/til-search.js) --- */
  1357. .dw-til-results { margin: 0; }
  1358. .dw-til-list { list-style: none; margin: 0; padding: 0; }
  1359. .dw-til-item { margin: 0 0 1.5rem; }
  1360. .dw-til-link { font-size: 1.35rem; font-weight: 700; line-height: 1.25; }
  1361. .dw-til-snippet { margin: .35rem 0 0; color: #333; }
  1362. /* ===== end search results two-column ===================================== */
  1363. /* Pagination — classic archives (.page-numbers from dw_paging_nav) + the block
  1364. query pagination (search/archive). Centered, de-Bootstrapped pill links. */
  1365. .pagination,
  1366. .wp-block-query-pagination {
  1367. display: flex;
  1368. flex-wrap: wrap;
  1369. justify-content: center;
  1370. align-items: center;
  1371. gap: .4rem;
  1372. margin: 2.5rem 0 0;
  1373. padding: 0;
  1374. list-style: none;
  1375. }
  1376. .pagination .page-numbers,
  1377. .wp-block-query-pagination a {
  1378. display: inline-flex;
  1379. align-items: center;
  1380. justify-content: center;
  1381. min-width: 2.1rem;
  1382. height: 2.1rem;
  1383. padding: 0 .55rem;
  1384. border-radius: 4px;
  1385. color: #484c57;
  1386. text-decoration: none;
  1387. line-height: 1;
  1388. }
  1389. .pagination .page-numbers.current,
  1390. .wp-block-query-pagination .page-numbers.current {
  1391. background: #484c57;
  1392. color: #fff;
  1393. }
  1394. .pagination a.page-numbers:hover,
  1395. .wp-block-query-pagination a:hover {
  1396. background: rgba(72, 76, 87, .12);
  1397. }
  1398. /* Block query pagination (Feed/Posts page, search): override the block's
  1399. space-between layout + text prev/next so it centers with ← → like the
  1400. classic dw_paging_nav pagination on the archives. */
  1401. nav.wp-block-query-pagination {
  1402. justify-content: center;
  1403. gap: .4rem;
  1404. }
  1405. .wp-block-query-pagination-numbers {
  1406. display: flex;
  1407. align-items: center;
  1408. gap: .4rem;
  1409. }
  1410. .wp-block-query-pagination-previous,
  1411. .wp-block-query-pagination-next {
  1412. font-size: 0;
  1413. }
  1414. .wp-block-query-pagination-previous::before {
  1415. content: "\2190";
  1416. font-size: 1rem;
  1417. }
  1418. .wp-block-query-pagination-next::after {
  1419. content: "\2192";
  1420. font-size: 1rem;
  1421. }
  1422. /* "Daveo Radio" CTA — playback now lives on /radio, so the Music page links there. */
  1423. /* Action buttons — WordPress-style outline in the site's dark blue (slate-deep),
  1424. a tighter radius than WP's default, and a subtle raised drop-shadow that presses
  1425. down on hover (translateY + shadow collapse). Shared by the music Daveo Radio
  1426. button and the desk Scroll / Archive / Load-More buttons (was a solid dark fill).
  1427. The search submit (inside .input-group) opts out below so it stays joined to the
  1428. field. */
  1429. .daveo-radio-btn,
  1430. .btn-dark {
  1431. background: transparent;
  1432. background-color: transparent;
  1433. color: #484c57;
  1434. border: 2px solid #484c57;
  1435. border-radius: 4px;
  1436. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.18);
  1437. transition: transform .1s ease, box-shadow .1s ease, color .15s ease, border-color .15s ease;
  1438. }
  1439. .daveo-radio-btn:hover,
  1440. .daveo-radio-btn:active,
  1441. .btn-dark:hover,
  1442. .btn-dark:active {
  1443. color: #25c2a0; /* footer link-hover green */
  1444. background-color: transparent;
  1445. border-color: #25c2a0;
  1446. transform: translateY(2px);
  1447. box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
  1448. }
  1449. .daveo-radio-btn {
  1450. display: inline-block;
  1451. padding: 0.7rem 1.5rem;
  1452. font-size: 1.05rem;
  1453. line-height: 1.2;
  1454. text-decoration: none;
  1455. white-space: nowrap;
  1456. }
  1457. /* Search submit stays joined to the input — keep it flat (no lift/shadow). */
  1458. .input-group .btn-dark {
  1459. box-shadow: none;
  1460. }
  1461. .input-group .btn-dark:hover,
  1462. .input-group .btn-dark:active {
  1463. transform: none;
  1464. box-shadow: none;
  1465. }
  1466. .daveo-radio-btn .dw-icon {
  1467. width: 1em;
  1468. height: 1em;
  1469. fill: currentColor;
  1470. vertical-align: -0.125em;
  1471. margin-right: 0.4rem;
  1472. }
  1473. #music li.list-group-item {
  1474. padding: 5px 15px;
  1475. font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  1476. font-size: 12px;
  1477. }
  1478. #music.entry-content ul {
  1479. margin:0 0 24px;
  1480. }
  1481. @media screen and (max-width: 768px) {
  1482. .album h1, .album h2, .album h3 {
  1483. font-size: 13px;
  1484. line-height: 15px;
  1485. }
  1486. .album {
  1487. width: 25%;
  1488. }
  1489. }
  1490. @media screen and (min-width: 992px) {
  1491. .album h1, .album h2, .album h3 {
  1492. font-size: 15px;
  1493. line-height: 17px;
  1494. }
  1495. }
  1496. div#player{
  1497. width: 100%;
  1498. color: #555555;
  1499. font-family: 'PT Sans', sans-serif;
  1500. font-weight: 700;
  1501. font-size: 12px;
  1502. }
  1503. #song-information{
  1504. text-align: left;
  1505. margin: 0 0 10px;
  1506. }
  1507. #controls{
  1508. float: left;
  1509. }
  1510. #amplitude-volume-slider{
  1511. width: 90%;
  1512. float: right;
  1513. }
  1514. #amplitude-play-pause{
  1515. width: 15px;
  1516. height: 17px;
  1517. margin: 0 5px 0 0;
  1518. cursor: pointer;
  1519. float: right;
  1520. }
  1521. #amplitude-current-time{
  1522. font-family: 'PT Sans', sans-serif;
  1523. font-size: 14px;
  1524. font-weight: 400;
  1525. }
  1526. .amplitude-paused{
  1527. background-image: url('img/small-gray-play.png');
  1528. background-repeat: no-repeat;
  1529. }
  1530. .amplitude-playing{
  1531. background-image: url('img/small-gray-pause.png');
  1532. background-repeat: no-repeat;
  1533. }
  1534. #amplitude-now-playing-name{
  1535. }
  1536. #amplitude-now-playing-listeners{
  1537. }
  1538. #amplitude-now-playing-bitrate{
  1539. }
  1540. /*============================================
  1541. Anatlyics
  1542. ==============================================*/
  1543. .widget {
  1544. background:#000 !important;
  1545. }
  1546. .map {
  1547. height:500px;
  1548. }
  1549. /*============================================
  1550. ==============================================
  1551. General Content
  1552. ==============================================
  1553. ==============================================*/
  1554. .screen-reader {
  1555. text-indent: -10000px;
  1556. top:auto;
  1557. width:1px;
  1558. height:1px;
  1559. overflow:hidden;
  1560. }
  1561. .divider {
  1562. border-bottom: 1px solid #cecece;
  1563. width:100%;
  1564. margin: 30px 0 30px;
  1565. }
  1566. #content {
  1567. margin-bottom: 36px;
  1568. margin-top: 100px;
  1569. }
  1570. #content,
  1571. #content input,
  1572. #content textarea {
  1573. color: #111;
  1574. }
  1575. #content p,
  1576. #content ul,
  1577. #content ol,
  1578. #content dd,
  1579. #content pre,
  1580. #content hr {
  1581. margin-bottom: 24px;
  1582. }
  1583. #content ul ul,
  1584. #content ol ol,
  1585. #content ul ol,
  1586. #content ol ul {
  1587. margin-bottom: 0;
  1588. }
  1589. #content pre,
  1590. #content kbd,
  1591. #content tt,
  1592. #content var {
  1593. font-size: 15px;
  1594. line-height: 21px;
  1595. }
  1596. #content code {
  1597. font-size: 13px;
  1598. }
  1599. #content dt,
  1600. #content th {
  1601. color: #000;
  1602. }
  1603. #content h1,
  1604. #content h2,
  1605. #content h3,
  1606. #content h4,
  1607. #content h5,
  1608. #content h6 {
  1609. color: #000;
  1610. line-height: 1.5em;
  1611. margin: 0 0 16px 0;
  1612. }
  1613. #content table {
  1614. border: 1px solid #e7e7e7;
  1615. margin: 0 -1px 24px 0;
  1616. text-align: left;
  1617. width: 100%;
  1618. }
  1619. #content tr th,
  1620. #content thead th {
  1621. color: #888;
  1622. font-size: 12px;
  1623. font-weight: bold;
  1624. line-height: 18px;
  1625. padding: 9px 24px;
  1626. }
  1627. #content tr td {
  1628. border-top: 1px solid #e7e7e7;
  1629. padding: 6px 24px;
  1630. }
  1631. #content tr.odd td {
  1632. background: #f2f7fc;
  1633. }
  1634. .hentry {
  1635. margin: 0 0 30px 0;
  1636. }
  1637. .home .sticky {
  1638. background: #f2f7fc;
  1639. border-top: 4px solid #000;
  1640. margin-left: -20px;
  1641. margin-right: -20px;
  1642. padding: 18px 20px;
  1643. }
  1644. .single .hentry {
  1645. margin: 0 0 36px 0;
  1646. }
  1647. .page-title {
  1648. color: #000;
  1649. font-size: 14px;
  1650. font-weight: bold;
  1651. margin: 0 0 36px 0;
  1652. }
  1653. .page-title span {
  1654. color: #333;
  1655. font-size: 16px;
  1656. font-style: italic;
  1657. font-weight: normal;
  1658. }
  1659. .entry-caption-parent .page-title span {
  1660. color: #777;
  1661. font-size: 12px;
  1662. font-style: italic;
  1663. font-weight: normal;
  1664. }
  1665. .nav-previous span.meta-nav {
  1666. color: #555;
  1667. font-size: 18px;
  1668. font-weight: normal;
  1669. }
  1670. .nav-next span.meta-nav {
  1671. color: #555;
  1672. font-size: 16px;
  1673. font-weight: normal;
  1674. }
  1675. .page-title a:link,
  1676. .page-title a:visited {
  1677. color: #888;
  1678. text-decoration: none;
  1679. }
  1680. .page-title a:active,
  1681. .page-title a:hover {
  1682. color: #2a6496;
  1683. }
  1684. #content .entry-title {
  1685. color: #000;
  1686. font-size: 26px;
  1687. font-weight: bold;
  1688. line-height: 1.3em;
  1689. margin: 20px 0 20px;
  1690. }
  1691. h2.entry-title {
  1692. color: #999;
  1693. }
  1694. .entry-title a:link,
  1695. .entry-title a:visited {
  1696. color: #000;
  1697. text-decoration: none;
  1698. }
  1699. .entry-title a:active,
  1700. .entry-title a:hover {
  1701. color: #2a6496;
  1702. }
  1703. .entry-meta {
  1704. color: #888;
  1705. font-size: 12px;
  1706. }
  1707. .entry-meta abbr,
  1708. .entry-utility abbr {
  1709. border: none;
  1710. }
  1711. .entry-meta abbr:hover,
  1712. .entry-utility abbr:hover {
  1713. border-bottom: 1px dotted #666;
  1714. }
  1715. .entry-content,
  1716. .entry-summary {
  1717. clear: both;
  1718. }
  1719. /* Break long URLs / unbroken strings so they can't force horizontal scroll on
  1720. phones (block pages don't inherit the .container word-wrap). */
  1721. .entry-content,
  1722. .entry-summary,
  1723. #content {
  1724. overflow-wrap: break-word;
  1725. }
  1726. .entry-content p {
  1727. font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
  1728. }
  1729. /* Block page content (templates/page.html) — light card over the dark page bg.
  1730. Scoped to the group wrapper so it doesn't double up with the nested
  1731. .wp-block-post-content.entry-content. */
  1732. .wp-block-group.entry-content {
  1733. background: #dadada;
  1734. padding: 96px; /* 1in APA-style margins on all sides (96px = 1in) */
  1735. border-radius: 6px;
  1736. }
  1737. /* Mobile: the 96px (1in) card padding leaves almost no content column on a phone
  1738. (~150px on a 375px viewport), which read as an "abnormally narrow" content area.
  1739. Drop every content card to 1.5rem below 768px. Covers the classic cards
  1740. (projects/desk/music/archive/contact/sitemap) and the block cards
  1741. (page/single .wp-block-group.entry-content + search/404). */
  1742. @media (max-width: 767.98px) {
  1743. .projects-card,
  1744. body.desk .entry-content,
  1745. #music.entry-content,
  1746. body.archive .entry-content,
  1747. body.contact #content,
  1748. body.sitemap #content,
  1749. .wp-block-group.entry-content {
  1750. padding: 1.5rem;
  1751. }
  1752. body.search main > .wp-block-group,
  1753. body.error404 main > .wp-block-group {
  1754. padding-left: 1.5rem;
  1755. padding-right: 1.5rem;
  1756. }
  1757. /* .leader zeroes horizontal padding (cards span the full centered width on
  1758. desktop). On a phone that pins cards to the screen edge and lets bare .row
  1759. negative margins (-0.75rem) bleed past the viewport → horizontal scroll.
  1760. Restore 15px gutters on mobile; the dark body then frames the card as it
  1761. does on desktop. */
  1762. .container.leader {
  1763. padding-left: 15px;
  1764. padding-right: 15px;
  1765. }
  1766. /* The flex navbar's single .container has no fixed width on mobile, so as a
  1767. flex item it shrinks to the title's width and its auto margins center it —
  1768. which centers "David A. Windham". Force full width so float:right pins the
  1769. title to the right edge, matching desktop. */
  1770. .navbar .container {
  1771. width: 100%;
  1772. }
  1773. }
  1774. /* Block templates (search / 404 / page.html): the navbar's site-title is
  1775. float:right, so it collapses the header and block <main> content would ride up
  1776. next to it. Clear the header the way the classic .container pages do, so every
  1777. page has the same top spacing. */
  1778. main.wp-block-group {
  1779. padding-top: 73px;
  1780. }
  1781. /* Block default pages (page.html): the page title sits above the card — white,
  1782. on the dark body.page bg — matching the archive/search/404 pages. */
  1783. body.page main > .wp-block-post-title {
  1784. color: #fff;
  1785. margin-bottom: 1.25rem;
  1786. }
  1787. .signature {
  1788. float: right;
  1789. margin: 10px 150px 40px 0px;
  1790. }
  1791. span.author {
  1792. display:none;
  1793. }
  1794. #inside h3 {
  1795. font: 16px "Courier New", Courier, mono;
  1796. line-height: 10px;
  1797. margin: 0 0 10px 0;
  1798. }
  1799. #inside p {
  1800. margin: 0 0 10px 0;
  1801. line-height: 20px;
  1802. }
  1803. #content .entry-summary p:last-child {
  1804. margin-bottom: 12px;
  1805. }
  1806. .entry-content fieldset {
  1807. margin: 0 0 24px 0;
  1808. padding: 24px;
  1809. }
  1810. .entry-content fieldset legend {
  1811. background: #fff;
  1812. color: #000;
  1813. font-weight: bold;
  1814. padding: 0 24px;
  1815. }
  1816. .entry-content input {
  1817. margin: 0 0 20px 0;
  1818. }
  1819. .entry-content input.file,
  1820. .entry-content input.button {
  1821. margin-right: 24px;
  1822. }
  1823. .entry-content label {
  1824. color: #888;
  1825. font-size: 12px;
  1826. }
  1827. .entry-content select {
  1828. margin: 0 0 24px 0;
  1829. }
  1830. .entry-content sup,
  1831. .entry-content sub {
  1832. font-size: 10px;
  1833. }
  1834. .entry-content blockquote {
  1835. border-left:none;
  1836. font-style:italic;
  1837. margin: 0 0px 20px;
  1838. color:#333;
  1839. background:#eeeeeec7;
  1840. padding:20px;
  1841. }
  1842. blockquote p {
  1843. margin: 0 0 12px !important;
  1844. }
  1845. .wp-block-image figcaption {
  1846. display: block !important;
  1847. }
  1848. .entry-content blockquote cite {
  1849. text-align:right;
  1850. margin-bottom:0;
  1851. }
  1852. .entry-content blockquote cite p {
  1853. text-align:right;
  1854. margin-bottom:0 !important;
  1855. }
  1856. .entry-content blockquote.left {
  1857. float: left;
  1858. margin-left: 0;
  1859. margin-right: 24px;
  1860. text-align: right;
  1861. width: 33%;
  1862. }
  1863. .entry-content blockquote.right {
  1864. float: right;
  1865. margin-left: 24px;
  1866. margin-right: 0;
  1867. text-align: left;
  1868. width: 33%;
  1869. }
  1870. body.page .edit-link {
  1871. clear: both;
  1872. display: block;
  1873. }
  1874. .entry-meta a,
  1875. .entry-utility a {
  1876. color: #888;
  1877. }
  1878. .entry-meta a:hover,
  1879. .entry-utility a:hover {
  1880. color: #ff4b33;
  1881. }
  1882. #content .video-player {
  1883. padding: 0;
  1884. }
  1885. .date {
  1886. float: right;
  1887. margin: 0px 0 20px 50px;
  1888. color: #777;
  1889. font: 14px/18px "Courier New", Courier, mono;
  1890. }
  1891. #content ul li li {
  1892. padding: 0 0 0 20px;
  1893. }
  1894. .list-group-horizontal .list-group-item {
  1895. display: inline-block;
  1896. }
  1897. .list-group-horizontal .list-group-item {
  1898. margin-bottom: 0;
  1899. margin-left:-2px;
  1900. margin-right: 0;
  1901. }
  1902. .list-group-horizontal .list-group-item:first-child {
  1903. border-top-right-radius:0;
  1904. border-bottom-left-radius:4px;
  1905. }
  1906. .list-group-horizontal .list-group-item:last-child {
  1907. border-top-right-radius:4px;
  1908. border-bottom-left-radius:0;
  1909. }
  1910. .archive-page {
  1911. background:#fff;
  1912. box-shadow: 0 0 5px rgba(0,0,0,.1);
  1913. padding: 70px 100px 140px;
  1914. }
  1915. .single-card .entry-title {
  1916. margin-bottom:5px !important;
  1917. }
  1918. article.studio {
  1919. background: #fff;
  1920. padding: 14px 15px 10px; /* top padding = a little space beneath the featured image */
  1921. margin:0 0 20px;
  1922. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  1923. }
  1924. .archive-thumbnail {
  1925. max-height:180px;
  1926. overflow:hidden;
  1927. }
  1928. img.archive-thumb {
  1929. box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  1930. -webkit-filter: saturate(1) opacity(1);
  1931. filter: saturate(1) opacity(1);
  1932. -webkit-transition: all 1s;
  1933. transition: all 1s;
  1934. }
  1935. img.archive-thumb:hover {
  1936. -webkit-filter: saturate(3) opacity(1) invert(.8);
  1937. filter: saturate(3) opacity(1) invert(.8);
  1938. }
  1939. /*============================================
  1940. Meta
  1941. ==============================================*/
  1942. .meta {
  1943. font-size: 11px;
  1944. }
  1945. .categories-fb {
  1946. text-align: right;
  1947. }
  1948. span.fb {
  1949. width: 16px;
  1950. height: 16px;
  1951. margin-left: 5px;
  1952. padding: 3px 4px 2px 5px;
  1953. background-image: url(img/fb1.png) ;
  1954. background-position: 0 16px;
  1955. position: relative;
  1956. -webkit-transition: all ease 0.3s;
  1957. -moz-transition: all ease 0.3s;
  1958. -o-transition: all ease 0.3s;
  1959. transition: all ease 0.3s;
  1960. }
  1961. span.fb:hover {
  1962. background-position: 0 0;
  1963. }
  1964. /*============================================
  1965. Comments
  1966. ==============================================*/
  1967. .commentbubble {
  1968. font-family:"CM Type";
  1969. font-size: 13px;
  1970. color: #777;
  1971. margin: 0px 15px 0 0;
  1972. }
  1973. .comment {
  1974. padding: 10px;
  1975. }
  1976. .comments-area {
  1977. background: rgba(242,242,242,.7);
  1978. padding: 15px;
  1979. margin: 60px 0 0 0;
  1980. }
  1981. #content .comments-area p {
  1982. margin: 0 0 8px;
  1983. font-size: 13px;
  1984. }
  1985. #content .comments-area .reply {
  1986. margin: 5px 8px 0px;
  1987. padding: 2px 9px;
  1988. background: rgba(242,242,242,.5);
  1989. font-size: 11px;
  1990. }
  1991. .comments-title {
  1992. margin-bottom: 48px;
  1993. font-size: 16px;
  1994. line-height: 1.5;
  1995. font-weight: normal;
  1996. }
  1997. .comments-area ul {
  1998. margin: 0px 0px;
  1999. list-style: none;
  2000. }
  2001. .comments-area h3 {
  2002. margin: 0 0 0;
  2003. }
  2004. .comments-meta {
  2005. font-size: 10px;
  2006. }
  2007. .comments-area article {
  2008. margin: 24px 0;
  2009. }
  2010. .comments-area article header {
  2011. margin: 0 0 48px;
  2012. overflow: hidden;
  2013. position: relative;
  2014. }
  2015. .comments-area article header img {
  2016. float: left;
  2017. padding: 0;
  2018. line-height: 0;
  2019. }
  2020. .comments-area article header cite,
  2021. .comments-area article header time {
  2022. display: block;
  2023. margin-left: 85px;
  2024. }
  2025. .comments-area article header cite {
  2026. font-style: normal;
  2027. font-size: 15px;
  2028. }
  2029. .comments-area cite b {
  2030. font-weight: normal;
  2031. }
  2032. .comments-area article header time {
  2033. text-decoration: none;
  2034. font-size: 12px;
  2035. color: #5e5e5e;
  2036. }
  2037. .comments-area article header a {
  2038. text-decoration: none;
  2039. color: #5e5e5e;
  2040. }
  2041. .comments-area article header a:hover {
  2042. color: #21759b;
  2043. }
  2044. .comments-area article header cite a {
  2045. color: #444;
  2046. }
  2047. .comments-area article header cite a:hover {
  2048. text-decoration: underline;
  2049. }
  2050. .commentlist .pingback {
  2051. line-height: 1.714285714;
  2052. margin-bottom: 24px;
  2053. }
  2054. li.comment.even {
  2055. background: #fff;
  2056. }
  2057. li.comment.odd {
  2058. background: #f3f3f3;
  2059. }
  2060. li.comment.thread-even {
  2061. background: #f5f5f5;
  2062. }
  2063. li.comment.thread-odd {
  2064. background: #fff;
  2065. }
  2066. .comment-meta {
  2067. font-size: 11px;
  2068. line-height: 12px;
  2069. }
  2070. .comment-meta a {
  2071. color: #777;
  2072. float: right;
  2073. margin-top: -15px;
  2074. }
  2075. /*====== Comment form ======*/
  2076. .required {
  2077. color: red;
  2078. }
  2079. .form-submit {
  2080. display: none;
  2081. }
  2082. .comment-form-author,
  2083. .comment-form-email,
  2084. .comment-form-url {
  2085. width: 50%;
  2086. }
  2087. /*============================================
  2088. Media
  2089. ==============================================*/
  2090. .video-container {
  2091. position: relative;
  2092. padding-bottom: 56.25%;
  2093. padding-top: 30px; height: 0; overflow: hidden;
  2094. }
  2095. .video-container iframe,
  2096. .video-container object,
  2097. .video-container embed {
  2098. position: absolute;
  2099. top: 0;
  2100. left: 0;
  2101. width: 100%;
  2102. height: 100%;
  2103. }
  2104. .category-gallery .size-thumbnail img {
  2105. border: 10px solid #f1f1f1;
  2106. margin-bottom: 0;
  2107. }
  2108. .category-gallery .gallery-thumb {
  2109. float: left;
  2110. margin-right: 20px;
  2111. margin-top: -4px;
  2112. }
  2113. .home #content .category-gallery .entry-utility {
  2114. padding-top: 4px;
  2115. }
  2116. /*===== Attachments =====*/
  2117. .single-attachment .hentry {
  2118. margin: 0px;
  2119. }
  2120. .attachment .entry-content .entry-caption {
  2121. font-size: 140%;
  2122. margin-top: 24px;
  2123. }
  2124. #content .entry-caption-attachment h2.entry-title {
  2125. margin: 0 0 5px;
  2126. font-weight: normal;
  2127. }
  2128. #content .entry-caption-parent p.page-title {
  2129. margin: -30px 0 0 0;
  2130. font: normal 13px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  2131. }
  2132. #content .entry-caption-parent p.page-title a {
  2133. color: #555;
  2134. }
  2135. #content .entry-caption-attachment p {
  2136. font-size: 14px;
  2137. text-indent: 0px;
  2138. line-height: 15px;
  2139. margin-bottom: 0px;
  2140. }
  2141. .attachment .entry-content .nav-previous a:before {
  2142. content: '\2190\00a0';
  2143. }
  2144. .attachment .entry-content .nav-next a:after {
  2145. content: '\00a0\2192';
  2146. }
  2147. /*===== Images ======*/
  2148. img.avatar {
  2149. width: 50px;
  2150. height: 50px;
  2151. -webkit-border-radius: 30px;
  2152. -moz-border-radius: 30px;
  2153. border-radius: 30px;
  2154. }
  2155. img.me {
  2156. height: 70px;
  2157. margin: 0 10px 0 0;
  2158. padding: 0 5px;
  2159. float: left;
  2160. -webkit-border-radius: 50%;
  2161. -moz-border-radius: 50%;
  2162. border-radius: 50%;
  2163. -webkit-filter: grayscale(1);
  2164. filter:grayscale(1);
  2165. }
  2166. .entry-content img {
  2167. max-width: 100%;
  2168. height: auto;
  2169. }
  2170. #content .home img {
  2171. border: 15px solid #000;
  2172. }
  2173. #content .alignleft,
  2174. #content img.alignleft {
  2175. display: inline;
  2176. float: left;
  2177. margin-right: 24px;
  2178. margin-top: 4px;
  2179. }
  2180. #content .alignright,
  2181. #content img.alignright {
  2182. display: inline;
  2183. float: right;
  2184. margin-left: 24px;
  2185. margin-top: 4px;
  2186. }
  2187. #content .aligncenter,
  2188. #content img.aligncenter {
  2189. clear: both;
  2190. margin-left: auto;
  2191. margin-right: auto;
  2192. }
  2193. #content img.alignleft,
  2194. #content img.alignright,
  2195. #content img.aligncenter {
  2196. margin-bottom: 12px;
  2197. }
  2198. #content img.alignfull,
  2199. #content img.alignwide
  2200. {
  2201. max-width: 100vw;
  2202. width: 100vw;
  2203. }
  2204. #content .wp-caption {
  2205. color: #737373;
  2206. line-height: 18px;
  2207. margin-bottom: 20px;
  2208. padding: 4px;
  2209. text-align: center;
  2210. }
  2211. #content .wp-caption img {
  2212. margin: 5px 5px 0;
  2213. }
  2214. #content .wp-caption p.wp-caption-text {
  2215. color: #888;
  2216. font-size: 10px;
  2217. margin: 5px;
  2218. }
  2219. #content .attachment img {
  2220. display: block;
  2221. margin: 0 auto;
  2222. }
  2223. .gallery { margin: 0 auto 18px; }
  2224. .gallery .gallery-item {
  2225. float: left;
  2226. margin-top: 0;
  2227. text-align: center;
  2228. width: 33%;
  2229. }
  2230. .gallery-columns-2 .gallery-item { width: 50%; }
  2231. .gallery-columns-4 .gallery-item { width: 25%; }
  2232. .gallery img {
  2233. box-shadow: 0px 0px 4px #999;
  2234. border: 5px solid #000;
  2235. padding: 8px;
  2236. background: #555;
  2237. }
  2238. .gallery img:hover {
  2239. background: #777;
  2240. }
  2241. .gallery-columns-2 .attachment-medium {
  2242. max-width: 92%;
  2243. height: auto;
  2244. }
  2245. .gallery-columns-4 .attachment-thumbnail {
  2246. max-width: 84%;
  2247. height: auto;
  2248. }
  2249. .gallery .gallery-caption {
  2250. color: #888;
  2251. font-size: 12px;
  2252. margin: 0 0 12px;
  2253. }
  2254. .gallery dl, .gallery dt { margin: 0; }
  2255. .gallery br+br { display: none; }
  2256. /*============================================
  2257. Pagination
  2258. ==============================================*/
  2259. .navigation {
  2260. color: #888;
  2261. font-size: 12px;
  2262. line-height: 18px;
  2263. overflow: hidden;
  2264. clear: both;
  2265. }
  2266. .navigation a:link,
  2267. .navigation a:visited {
  2268. color: #888;
  2269. text-decoration: none;
  2270. }
  2271. .navigation a:active,
  2272. .navigation a:hover {
  2273. color: #ff4b33;
  2274. }
  2275. .nav-previous {
  2276. color: #333;
  2277. font-size: 17px;
  2278. float: left;
  2279. width: 50%;
  2280. margin: 0 0 15px 0;
  2281. }
  2282. .nav-next {
  2283. color: #333;
  2284. font-size: 17px;
  2285. float: right;
  2286. text-align: right;
  2287. width: 50%;
  2288. }
  2289. .paged #nav-above,
  2290. .single #nav-above {
  2291. display: block;
  2292. }
  2293. #nav-below {
  2294. margin: 50px 0 0px;
  2295. padding: 20px 10px 0;
  2296. border-top: 1px solid #cecece;
  2297. }
  2298. /* (legacy pagination block removed 2026-07 — superseded by the flex
  2299. .pagination rules above; that block made prev/next red, 27px, and misaligned) */
  2300. /*============================================
  2301. 404
  2302. ==============================================*/
  2303. .not-search {
  2304. margin: 30px;
  2305. padding: 10px;
  2306. height: 80px;
  2307. zoom: 180%;
  2308. }
  2309. .not-search button {
  2310. line-height: 20px;
  2311. }
  2312. /*===== Structure =====*/
  2313. .a:hover {
  2314. color: #1d8;
  2315. }
  2316. .leader {
  2317. padding: 100px 0 0;
  2318. }
  2319. .dark {
  2320. background: #222;
  2321. }
  2322. .bottom {
  2323. padding-top: 50px;
  2324. }
  2325. .centered {
  2326. float: none;
  2327. margin: 0 auto;
  2328. }
  2329. .border-left {
  2330. border-left: 1px solid #333;
  2331. }
  2332. article#main {
  2333. padding: 0px;
  2334. }
  2335. article#main .entry-content {
  2336. padding: 15px;
  2337. }
  2338. article h2 {
  2339. font-size: 28px;
  2340. }
  2341. article.single {
  2342. background: #fff;
  2343. box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  2344. }
  2345. article.blurb {
  2346. background: #fff;
  2347. padding: 10px 15px;
  2348. margin:25px 0;
  2349. box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  2350. }
  2351. .post {
  2352. margin-bottom: 40px;
  2353. }
  2354. article p {
  2355. text-indent: 12px;
  2356. }
  2357. article p img {
  2358. text-indent: 0px;
  2359. margin: 15px 0 15px -12px;
  2360. }
  2361. p.nobreak {
  2362. margin: 0 0 10px !important;
  2363. }
  2364. span.quiet {
  2365. display: none;
  2366. }
  2367. span.right {
  2368. float: right;
  2369. }
  2370. .entry-content ul {
  2371. margin: 10px 20px;
  2372. }
  2373. .entry-content ul.sitemap {
  2374. margin: 0;
  2375. }
  2376. .form-row.checkbox {
  2377. font-size: 0.85em;
  2378. }
  2379. /*============================================
  2380. Code - Sunburst Theme
  2381. ==============================================*/
  2382. pre {
  2383. background-color: #000 !important;
  2384. word-wrap: break-word;
  2385. margin: 0 0 20px 0;
  2386. padding: 10px;
  2387. color: #fff !important;
  2388. font-size: 14px;
  2389. }
  2390. pre, code {
  2391. font-family: 'Monaco', courier, monospace;
  2392. }
  2393. pre .comment {
  2394. color: #AEAEAE; font-style: italic;
  2395. }
  2396. pre .constant {
  2397. color: #3387CC;
  2398. }
  2399. pre .storage {
  2400. color: #99CF50;
  2401. }
  2402. pre .string, pre .entity.name.class, pre .comment.docstring {
  2403. color: #65B042;
  2404. }
  2405. pre .string.regexp {
  2406. color: #E9C062;
  2407. }
  2408. pre .string.constant {
  2409. color: #DDF2A4;
  2410. }
  2411. pre .constant.hex-color {
  2412. color: #DD7B3B;
  2413. }
  2414. pre .support, pre .tag.script, pre .function.call {
  2415. color: #dad085;
  2416. }
  2417. pre .support.css-property {
  2418. color: #C5AF75;
  2419. }
  2420. pre .support.tag.style {
  2421. color: #fff;
  2422. }
  2423. pre .keyword, pre .selector {
  2424. color: #E28964;
  2425. }
  2426. pre .keyword.namespace {
  2427. color: #3387CC;
  2428. font-weight: bold;
  2429. }
  2430. pre .inherited-class {
  2431. font-style: italic;
  2432. }
  2433. pre .entity, pre .variable.instance, pre .support.namespace, pre .support.tag, pre .support.tag-name {
  2434. color: #89BDFF;
  2435. }
  2436. pre .entity.name.id {
  2437. color: #8693A5;
  2438. }
  2439. *[data-language="c"] .function.call {
  2440. color: #8DA6CE;
  2441. }
  2442. pre .variable, pre .variable.global {
  2443. color: #3E87E3;
  2444. }
  2445. pre .variable.class {
  2446. }
  2447. .wp-block-video video {
  2448. max-width:100% !important;
  2449. width:100% !important;
  2450. height:auto !important;
  2451. }
  2452. figcaption {
  2453. text-align:right;
  2454. color: #777777;
  2455. font-size:13px;
  2456. }
  2457. .chess-html {
  2458. padding: 0 5px 0 5px;
  2459. }
  2460. p.powerdby {
  2461. display:none;
  2462. }
  2463. .nav {
  2464. display:block;
  2465. }
  2466. .site-title {
  2467. float: right !important;
  2468. }
  2469. .navbar-right {
  2470. float: right !important;
  2471. margin-right: 0px;
  2472. }
  2473. .navbar .container {
  2474. display: block;
  2475. }
  2476. a {
  2477. color:#67000a;
  2478. }
  2479. a:hover {
  2480. color:#1a8;
  2481. }
  2482. .about a {
  2483. color:#ff4557;
  2484. }
  2485. li a {
  2486. 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";
  2487. font-size: .9em;
  2488. }
  2489. ul.bookmarks {
  2490. 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";
  2491. font-size: .9em;
  2492. }
  2493. .entry-title {
  2494. font-weight:600;
  2495. }
  2496. .navbar.visible {
  2497. background: rgba(72, 76, 87, 0.7); /* footer color (#484c57), translucent */
  2498. backdrop-filter: blur(6px);
  2499. }
  2500. .offcanvas {
  2501. background: #2b2e35d7;
  2502. }
  2503. ul.nav .list-group-item a {
  2504. color: #fff;
  2505. font-family: 'Playfair Display', serif;
  2506. font-weight: 700;
  2507. font-size: 1.35rem;
  2508. }
  2509. ul.nav .list-group-item a:hover {
  2510. color: #25c2a0;
  2511. }
  2512. /* floating "magic line": one shared underline that slides between the nav items
  2513. (positioned by js/nav-underline.js). ul is the positioning context. */
  2514. ul.nav.list-group-horizontal,
  2515. ul.nav.studio-subnav {
  2516. position: relative;
  2517. }
  2518. .dw-nav-underline {
  2519. position: absolute;
  2520. top: 0;
  2521. left: 0;
  2522. width: 0;
  2523. height: 2px;
  2524. background: #25c2a0;
  2525. border-radius: 1px;
  2526. opacity: 0;
  2527. pointer-events: none;
  2528. transition: left .4s cubic-bezier(0.785, 0.135, 0.15, 0.86),
  2529. width .4s cubic-bezier(0.785, 0.135, 0.15, 0.86),
  2530. top .4s cubic-bezier(0.785, 0.135, 0.15, 0.86),
  2531. opacity .3s ease;
  2532. }
  2533. @media (prefers-reduced-motion: reduce) {
  2534. .dw-nav-underline {
  2535. transition: opacity .3s ease;
  2536. }
  2537. }
  2538. ul.nav .list-group-item {
  2539. border:none;
  2540. background: none;
  2541. color: #fff;
  2542. }
  2543. ul.nav .list-group-item:first-child {
  2544. border-top-left-radius:0;
  2545. border-bottom-left-radius:0;
  2546. }
  2547. ul.nav .list-group-item:last-child {
  2548. border-top-right-radius:0;
  2549. border-bottom-right-radius:0;
  2550. }
  2551. ul.nav ul li {
  2552. margin-left: 15px;
  2553. }
  2554. figure {
  2555. margin: 1em 0px;
  2556. }
  2557. .wp-block-pullquote {
  2558. font-size: 24px;
  2559. margin: 10px 50px;
  2560. }