style.css 51 KB

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