style.css 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400
  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. .art-gallery {
  990. background: #313131;
  991. }
  992. body.art .site-title a {
  993. color: #FFFFFF;
  994. }
  995. .art a {
  996. color: #2F3446;
  997. }
  998. .art a:hover {
  999. color: #cecece;
  1000. text-decoration: none;
  1001. }
  1002. .art a:active {
  1003. color: #FFFFFF;
  1004. text-decoration: none;
  1005. }
  1006. .art-image {
  1007. border: 10px solid #FFFFFF;
  1008. max-height: 800px;
  1009. margin: auto;
  1010. }
  1011. .art-gallery .controls {
  1012. position: relative;
  1013. bottom: 0;
  1014. }
  1015. .art-gallery .prev-next {
  1016. margin: 10px 0 10px;
  1017. }
  1018. .studio .entry-content {
  1019. height: 120px;
  1020. }
  1021. /*============================================
  1022. Now
  1023. ==============================================*/
  1024. .desk ul.now-doing li{
  1025. color: #4e4e4e;
  1026. line-height: 1.4em;
  1027. margin: 0 0 5px 0;
  1028. }
  1029. /*============================================
  1030. Desk
  1031. ==============================================*/
  1032. /* Desk content card — light card (1in APA-style padding) over the dark body.page bg,
  1033. matching the block pages' .wp-block-group.entry-content. body.desk .container.leader
  1034. sets the 1280 width (see above). */
  1035. body.desk .entry-content {
  1036. background:#dadada;
  1037. padding:96px;
  1038. border-radius:6px;
  1039. }
  1040. .desk li {
  1041. color: #777
  1042. }
  1043. /* Desk third column (Recently Edited / Bookmarks / Year / Topics / Tags): a clear
  1044. line of space between each section. Year/Topics/Tags render inline (their links are
  1045. direct children of ul.tags), at the same font size as the rest of the page. */
  1046. .desk-meta {
  1047. border-left: 0; /* right-hand sidebar — no divider on its left edge */
  1048. }
  1049. .desk-meta > ul {
  1050. margin-bottom: 1.25rem;
  1051. }
  1052. .desk-meta > ul:last-child {
  1053. margin-bottom: 0;
  1054. }
  1055. /* Desk actions row: search field inline with the Scroll / Archive buttons. The
  1056. hand-rolled .input-group is missing the child-flex rule that keeps the field and
  1057. submit button on one line, so scope that behaviour (+ joined border radii) here. */
  1058. .desk-actions .input-group {
  1059. flex-wrap: nowrap;
  1060. }
  1061. .desk-actions .input-group .form-control {
  1062. flex: 1 1 auto;
  1063. width: 1%;
  1064. min-width: 0;
  1065. margin: 0; /* cancel the .entry-content input 20px bottom margin that stretched the input-group (and the button) */
  1066. border-top-right-radius: 0;
  1067. border-bottom-right-radius: 0;
  1068. }
  1069. .desk-actions .input-group .btn {
  1070. display: flex;
  1071. align-items: center;
  1072. justify-content: center;
  1073. border-top-left-radius: 0;
  1074. border-bottom-left-radius: 0;
  1075. }
  1076. /*============================================
  1077. Music
  1078. ==============================================*/
  1079. .albums {
  1080. position: relative;
  1081. display: flex;
  1082. flex-wrap: wrap;
  1083. gap: 6px;
  1084. }
  1085. .albums:after {
  1086. content: "";
  1087. display: table;
  1088. clear: both;
  1089. }
  1090. .album {
  1091. width: 150px;
  1092. height: auto;
  1093. position: relative;
  1094. font-size: 12px;
  1095. -webkit-transition: -webkit-transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  1096. -moz-transition: -moz-transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  1097. -o-transition: -o-transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  1098. transition: transform 0.4s ease-in-out, z-index 0.4s ease-in-out;
  1099. -webkit-perspective: 600px;
  1100. perspective: 600px;
  1101. }
  1102. .album img {
  1103. width: 100%;
  1104. aspect-ratio: 1 / 1;
  1105. object-fit: cover;
  1106. display: block;
  1107. }
  1108. .album h1, .album h2, .album h3 {
  1109. font-size: 13px;
  1110. line-height: 15px;
  1111. }
  1112. .album .front, .album .back {
  1113. float: none;
  1114. width: 100%;
  1115. height: auto;
  1116. -webkit-transform-style: preserve-3d;
  1117. transform-style: preserve-3d;
  1118. -webkit-transition: -webkit-transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  1119. -moz-transition: -moz-transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  1120. -o-transition: -o-transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  1121. transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
  1122. }
  1123. .album .front {
  1124. z-index: 1;
  1125. -webkit-transform: rotateY(0deg);
  1126. -moz-transform: rotateY(0deg);
  1127. -ms-transform: rotateY(0deg);
  1128. -o-transform: rotateY(0deg);
  1129. transform: rotateY(0deg);
  1130. }
  1131. .album .front .alpha {
  1132. -webkit-transition: opacity 0.4s ease-in-out;
  1133. -moz-transition: opacity 0.4s ease-in-out;
  1134. -o-transition: opacity 0.4s ease-in-out;
  1135. transition: opacity 0.4s ease-in-out;
  1136. display: block;
  1137. content: '';
  1138. height: 100%;
  1139. width: 100%;
  1140. position: absolute;
  1141. top: 0;
  1142. left: 0;
  1143. background: rgba(255, 255, 255, 0.85);
  1144. opacity: 0;
  1145. }
  1146. .album .back {
  1147. position: absolute;
  1148. top: 0;
  1149. left: 0;
  1150. z-index: 0;
  1151. text-align: center;
  1152. font-family: sans-serif;
  1153. padding: 10px;
  1154. opacity: 0;
  1155. -webkit-box-sizing: border-box;
  1156. -moz-box-sizing: border-box;
  1157. box-sizing: border-box;
  1158. -webkit-backface-visibility: hidden;
  1159. backface-visibility: hidden;
  1160. -webkit-transform: rotateY(-180deg);
  1161. -moz-transform: rotateY(-180deg);
  1162. -ms-transform: rotateY(-180deg);
  1163. -o-transform: rotateY(-180deg);
  1164. transform: rotateY(-180deg);
  1165. }
  1166. .album.flip {
  1167. -webkit-transform: scale(1.1, 1.1);
  1168. -moz-transform: scale(1.1, 1.1);
  1169. -ms-transform: scale(1.1, 1.1);
  1170. -o-transform: scale(1.1, 1.1);
  1171. transform: scale(1.1, 1.1);
  1172. z-index: 10;
  1173. }
  1174. .album.flip .front {
  1175. -webkit-transform: rotateY(180deg);
  1176. -moz-transform: rotateY(180deg);
  1177. -ms-transform: rotateY(180deg);
  1178. -o-transform: rotateY(180deg);
  1179. transform: rotateY(180deg);
  1180. }
  1181. .album.flip .front .alpha {
  1182. opacity: 1;
  1183. }
  1184. .album.flip .back {
  1185. z-index: 2;
  1186. opacity: 1;
  1187. -webkit-transform: rotateY(0deg);
  1188. -moz-transform: rotateY(0deg);
  1189. -ms-transform: rotateY(0deg);
  1190. -o-transform: rotateY(0deg);
  1191. transform: rotateY(0deg);
  1192. }
  1193. .album {
  1194. /* 5 per row, filling the full width — subtract the 4 × 6px flex gaps. */
  1195. width: calc((100% - 24px) / 5);
  1196. -webkit-text-size-adjust: none;
  1197. }
  1198. /* Music + Archive pages — light content card + 1280 leader width + white title over the
  1199. dark body.page bg, consistent with the desk / projects / block pages. */
  1200. body.music .container.leader,
  1201. body.archive .container.leader,
  1202. body.contact .container.leader,
  1203. body.sitemap .container.leader {
  1204. width: auto;
  1205. max-width: 1280px;
  1206. }
  1207. /* Neutralize the legacy single-article shell (white bg + 70/140px padding + 100px top
  1208. margin) so the #dadada card sits directly under the title on the dark body, spanning
  1209. the full leader width — matching desk. */
  1210. body.music article#content,
  1211. body.archive article#content {
  1212. background: transparent;
  1213. margin-top: 0;
  1214. padding: 0 0 3rem;
  1215. }
  1216. .music-heading,
  1217. .archive-heading,
  1218. .contact-heading,
  1219. .sitemap-heading {
  1220. color: #fff;
  1221. font-size: 28px;
  1222. }
  1223. #music.entry-content,
  1224. body.archive .entry-content {
  1225. background: #dadada;
  1226. padding: 96px;
  1227. border-radius: 6px;
  1228. }
  1229. /* Contact page — #content itself is the card (no inner .entry-content wrapper).
  1230. Override the legacy single-article 100px top margin so the card sits under the title. */
  1231. body.contact #content,
  1232. body.sitemap #content {
  1233. background: #dadada;
  1234. padding: 96px;
  1235. border-radius: 6px;
  1236. margin-top: 1.25rem;
  1237. margin-bottom: 3rem;
  1238. }
  1239. /* "Daveo Radio" CTA — playback now lives on /radio, so the Music page links there. */
  1240. .daveo-radio-btn {
  1241. display: inline-block;
  1242. background: #484c57;
  1243. color: #fff;
  1244. padding: 0.7rem 1.5rem;
  1245. border-radius: 6px;
  1246. font-size: 1.05rem;
  1247. line-height: 1.2;
  1248. text-decoration: none;
  1249. white-space: nowrap;
  1250. transition: background 0.2s ease;
  1251. }
  1252. .daveo-radio-btn:hover,
  1253. .daveo-radio-btn:focus {
  1254. background: #25c2a0;
  1255. color: #fff;
  1256. }
  1257. .daveo-radio-btn .dw-icon {
  1258. width: 1em;
  1259. height: 1em;
  1260. fill: currentColor;
  1261. vertical-align: -0.125em;
  1262. margin-right: 0.4rem;
  1263. }
  1264. #music li.list-group-item {
  1265. padding: 5px 15px;
  1266. font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  1267. font-size: 12px;
  1268. }
  1269. #music.entry-content ul {
  1270. margin:0 0 24px;
  1271. }
  1272. @media screen and (max-width: 768px) {
  1273. .album h1, .album h2, .album h3 {
  1274. font-size: 13px;
  1275. line-height: 15px;
  1276. }
  1277. .album {
  1278. width: 25%;
  1279. }
  1280. }
  1281. @media screen and (min-width: 992px) {
  1282. .album h1, .album h2, .album h3 {
  1283. font-size: 15px;
  1284. line-height: 17px;
  1285. }
  1286. }
  1287. div#player{
  1288. width: 100%;
  1289. color: #555555;
  1290. font-family: 'PT Sans', sans-serif;
  1291. font-weight: 700;
  1292. font-size: 12px;
  1293. }
  1294. #song-information{
  1295. text-align: left;
  1296. margin: 0 0 10px;
  1297. }
  1298. #controls{
  1299. float: left;
  1300. }
  1301. #amplitude-volume-slider{
  1302. width: 90%;
  1303. float: right;
  1304. }
  1305. #amplitude-play-pause{
  1306. width: 15px;
  1307. height: 17px;
  1308. margin: 0 5px 0 0;
  1309. cursor: pointer;
  1310. float: right;
  1311. }
  1312. #amplitude-current-time{
  1313. font-family: 'PT Sans', sans-serif;
  1314. font-size: 14px;
  1315. font-weight: 400;
  1316. }
  1317. .amplitude-paused{
  1318. background-image: url('img/small-gray-play.png');
  1319. background-repeat: no-repeat;
  1320. }
  1321. .amplitude-playing{
  1322. background-image: url('img/small-gray-pause.png');
  1323. background-repeat: no-repeat;
  1324. }
  1325. #amplitude-now-playing-name{
  1326. }
  1327. #amplitude-now-playing-listeners{
  1328. }
  1329. #amplitude-now-playing-bitrate{
  1330. }
  1331. /*============================================
  1332. Anatlyics
  1333. ==============================================*/
  1334. .widget {
  1335. background:#000 !important;
  1336. }
  1337. .map {
  1338. height:500px;
  1339. }
  1340. /*============================================
  1341. ==============================================
  1342. General Content
  1343. ==============================================
  1344. ==============================================*/
  1345. .screen-reader {
  1346. text-indent: -10000px;
  1347. top:auto;
  1348. width:1px;
  1349. height:1px;
  1350. overflow:hidden;
  1351. }
  1352. .divider {
  1353. border-bottom: 1px solid #cecece;
  1354. width:100%;
  1355. margin: 30px 0 30px;
  1356. }
  1357. #content {
  1358. margin-bottom: 36px;
  1359. margin-top: 100px;
  1360. }
  1361. #content,
  1362. #content input,
  1363. #content textarea {
  1364. color: #111;
  1365. }
  1366. #content p,
  1367. #content ul,
  1368. #content ol,
  1369. #content dd,
  1370. #content pre,
  1371. #content hr {
  1372. margin-bottom: 24px;
  1373. }
  1374. #content ul ul,
  1375. #content ol ol,
  1376. #content ul ol,
  1377. #content ol ul {
  1378. margin-bottom: 0;
  1379. }
  1380. #content pre,
  1381. #content kbd,
  1382. #content tt,
  1383. #content var {
  1384. font-size: 15px;
  1385. line-height: 21px;
  1386. }
  1387. #content code {
  1388. font-size: 13px;
  1389. }
  1390. #content dt,
  1391. #content th {
  1392. color: #000;
  1393. }
  1394. #content h1,
  1395. #content h2,
  1396. #content h3,
  1397. #content h4,
  1398. #content h5,
  1399. #content h6 {
  1400. color: #000;
  1401. line-height: 1.5em;
  1402. margin: 0 0 16px 0;
  1403. }
  1404. #content table {
  1405. border: 1px solid #e7e7e7;
  1406. margin: 0 -1px 24px 0;
  1407. text-align: left;
  1408. width: 100%;
  1409. }
  1410. #content tr th,
  1411. #content thead th {
  1412. color: #888;
  1413. font-size: 12px;
  1414. font-weight: bold;
  1415. line-height: 18px;
  1416. padding: 9px 24px;
  1417. }
  1418. #content tr td {
  1419. border-top: 1px solid #e7e7e7;
  1420. padding: 6px 24px;
  1421. }
  1422. #content tr.odd td {
  1423. background: #f2f7fc;
  1424. }
  1425. .hentry {
  1426. margin: 0 0 30px 0;
  1427. }
  1428. .home .sticky {
  1429. background: #f2f7fc;
  1430. border-top: 4px solid #000;
  1431. margin-left: -20px;
  1432. margin-right: -20px;
  1433. padding: 18px 20px;
  1434. }
  1435. .single .hentry {
  1436. margin: 0 0 36px 0;
  1437. }
  1438. .page-title {
  1439. color: #000;
  1440. font-size: 14px;
  1441. font-weight: bold;
  1442. margin: 0 0 36px 0;
  1443. }
  1444. .page-title span {
  1445. color: #333;
  1446. font-size: 16px;
  1447. font-style: italic;
  1448. font-weight: normal;
  1449. }
  1450. .entry-caption-parent .page-title span {
  1451. color: #777;
  1452. font-size: 12px;
  1453. font-style: italic;
  1454. font-weight: normal;
  1455. }
  1456. .nav-previous span.meta-nav {
  1457. color: #555;
  1458. font-size: 18px;
  1459. font-weight: normal;
  1460. }
  1461. .nav-next span.meta-nav {
  1462. color: #555;
  1463. font-size: 16px;
  1464. font-weight: normal;
  1465. }
  1466. .page-title a:link,
  1467. .page-title a:visited {
  1468. color: #888;
  1469. text-decoration: none;
  1470. }
  1471. .page-title a:active,
  1472. .page-title a:hover {
  1473. color: #2a6496;
  1474. }
  1475. #content .entry-title {
  1476. color: #000;
  1477. font-size: 26px;
  1478. font-weight: bold;
  1479. line-height: 1.3em;
  1480. margin: 20px 0 20px;
  1481. }
  1482. h2.entry-title {
  1483. color: #999;
  1484. }
  1485. .entry-title a:link,
  1486. .entry-title a:visited {
  1487. color: #000;
  1488. text-decoration: none;
  1489. }
  1490. .entry-title a:active,
  1491. .entry-title a:hover {
  1492. color: #2a6496;
  1493. }
  1494. .entry-meta {
  1495. color: #888;
  1496. font-size: 12px;
  1497. }
  1498. .entry-meta abbr,
  1499. .entry-utility abbr {
  1500. border: none;
  1501. }
  1502. .entry-meta abbr:hover,
  1503. .entry-utility abbr:hover {
  1504. border-bottom: 1px dotted #666;
  1505. }
  1506. .entry-content,
  1507. .entry-summary {
  1508. clear: both;
  1509. }
  1510. .entry-content p {
  1511. font-family: Georgia, "Times New Roman", "Bitstream Charter", Times, serif;
  1512. }
  1513. /* Block page content (templates/page.html) — light card over the dark page bg.
  1514. Scoped to the group wrapper so it doesn't double up with the nested
  1515. .wp-block-post-content.entry-content. */
  1516. .wp-block-group.entry-content {
  1517. background: #dadada;
  1518. padding: 96px; /* 1in APA-style margins on all sides (96px = 1in) */
  1519. border-radius: 6px;
  1520. }
  1521. .signature {
  1522. float: right;
  1523. margin: 10px 150px 40px 0px;
  1524. }
  1525. span.author {
  1526. display:none;
  1527. }
  1528. #inside h3 {
  1529. font: 16px "Courier New", Courier, mono;
  1530. line-height: 10px;
  1531. margin: 0 0 10px 0;
  1532. }
  1533. #inside p {
  1534. margin: 0 0 10px 0;
  1535. line-height: 20px;
  1536. }
  1537. #content .entry-summary p:last-child {
  1538. margin-bottom: 12px;
  1539. }
  1540. .entry-content fieldset {
  1541. margin: 0 0 24px 0;
  1542. padding: 24px;
  1543. }
  1544. .entry-content fieldset legend {
  1545. background: #fff;
  1546. color: #000;
  1547. font-weight: bold;
  1548. padding: 0 24px;
  1549. }
  1550. .entry-content input {
  1551. margin: 0 0 20px 0;
  1552. }
  1553. .entry-content input.file,
  1554. .entry-content input.button {
  1555. margin-right: 24px;
  1556. }
  1557. .entry-content label {
  1558. color: #888;
  1559. font-size: 12px;
  1560. }
  1561. .entry-content select {
  1562. margin: 0 0 24px 0;
  1563. }
  1564. .entry-content sup,
  1565. .entry-content sub {
  1566. font-size: 10px;
  1567. }
  1568. .entry-content blockquote {
  1569. border-left:none;
  1570. font-style:italic;
  1571. margin: 0 0px 20px;
  1572. color:#333;
  1573. background:#eeeeeec7;
  1574. padding:20px;
  1575. }
  1576. blockquote p {
  1577. margin: 0 0 12px !important;
  1578. }
  1579. .wp-block-image figcaption {
  1580. display: block !important;
  1581. }
  1582. .entry-content blockquote cite {
  1583. text-align:right;
  1584. margin-bottom:0;
  1585. }
  1586. .entry-content blockquote cite p {
  1587. text-align:right;
  1588. margin-bottom:0 !important;
  1589. }
  1590. .entry-content blockquote.left {
  1591. float: left;
  1592. margin-left: 0;
  1593. margin-right: 24px;
  1594. text-align: right;
  1595. width: 33%;
  1596. }
  1597. .entry-content blockquote.right {
  1598. float: right;
  1599. margin-left: 24px;
  1600. margin-right: 0;
  1601. text-align: left;
  1602. width: 33%;
  1603. }
  1604. body.page .edit-link {
  1605. clear: both;
  1606. display: block;
  1607. }
  1608. .entry-meta a,
  1609. .entry-utility a {
  1610. color: #888;
  1611. }
  1612. .entry-meta a:hover,
  1613. .entry-utility a:hover {
  1614. color: #ff4b33;
  1615. }
  1616. #content .video-player {
  1617. padding: 0;
  1618. }
  1619. .date {
  1620. float: right;
  1621. margin: 0px 0 20px 50px;
  1622. color: #777;
  1623. font: 14px/18px "Courier New", Courier, mono;
  1624. }
  1625. #content ul li li {
  1626. padding: 0 0 0 20px;
  1627. }
  1628. .list-group-horizontal .list-group-item {
  1629. display: inline-block;
  1630. }
  1631. .list-group-horizontal .list-group-item {
  1632. margin-bottom: 0;
  1633. margin-left:-2px;
  1634. margin-right: 0;
  1635. }
  1636. .list-group-horizontal .list-group-item:first-child {
  1637. border-top-right-radius:0;
  1638. border-bottom-left-radius:4px;
  1639. }
  1640. .list-group-horizontal .list-group-item:last-child {
  1641. border-top-right-radius:4px;
  1642. border-bottom-left-radius:0;
  1643. }
  1644. .archive-page {
  1645. background:#fff;
  1646. box-shadow: 0 0 5px rgba(0,0,0,.1);
  1647. padding: 70px 100px 140px;
  1648. }
  1649. .single-card .entry-title {
  1650. margin-bottom:5px !important;
  1651. }
  1652. article.studio {
  1653. background: #fff;
  1654. padding: 14px 15px 10px; /* top padding = a little space beneath the featured image */
  1655. margin:0 0 20px;
  1656. box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  1657. }
  1658. .archive-thumbnail {
  1659. max-height:180px;
  1660. overflow:hidden;
  1661. }
  1662. img.archive-thumb {
  1663. box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  1664. -webkit-filter: saturate(1) opacity(1);
  1665. filter: saturate(1) opacity(1);
  1666. -webkit-transition: all 1s;
  1667. transition: all 1s;
  1668. }
  1669. img.archive-thumb:hover {
  1670. -webkit-filter: saturate(3) opacity(1) invert(.8);
  1671. filter: saturate(3) opacity(1) invert(.8);
  1672. }
  1673. /*============================================
  1674. Meta
  1675. ==============================================*/
  1676. .meta {
  1677. font-size: 11px;
  1678. }
  1679. .categories-fb {
  1680. text-align: right;
  1681. }
  1682. span.fb {
  1683. width: 16px;
  1684. height: 16px;
  1685. margin-left: 5px;
  1686. padding: 3px 4px 2px 5px;
  1687. background-image: url(img/fb1.png) ;
  1688. background-position: 0 16px;
  1689. position: relative;
  1690. -webkit-transition: all ease 0.3s;
  1691. -moz-transition: all ease 0.3s;
  1692. -o-transition: all ease 0.3s;
  1693. transition: all ease 0.3s;
  1694. }
  1695. span.fb:hover {
  1696. background-position: 0 0;
  1697. }
  1698. /*============================================
  1699. Comments
  1700. ==============================================*/
  1701. .commentbubble {
  1702. font-family:"CM Type";
  1703. font-size: 13px;
  1704. color: #777;
  1705. margin: 0px 15px 0 0;
  1706. }
  1707. .comment {
  1708. padding: 10px;
  1709. }
  1710. .comments-area {
  1711. background: rgba(242,242,242,.7);
  1712. padding: 15px;
  1713. margin: 60px 0 0 0;
  1714. }
  1715. #content .comments-area p {
  1716. margin: 0 0 8px;
  1717. font-size: 13px;
  1718. }
  1719. #content .comments-area .reply {
  1720. margin: 5px 8px 0px;
  1721. padding: 2px 9px;
  1722. background: rgba(242,242,242,.5);
  1723. font-size: 11px;
  1724. }
  1725. .comments-title {
  1726. margin-bottom: 48px;
  1727. font-size: 16px;
  1728. line-height: 1.5;
  1729. font-weight: normal;
  1730. }
  1731. .comments-area ul {
  1732. margin: 0px 0px;
  1733. list-style: none;
  1734. }
  1735. .comments-area h3 {
  1736. margin: 0 0 0;
  1737. }
  1738. .comments-meta {
  1739. font-size: 10px;
  1740. }
  1741. .comments-area article {
  1742. margin: 24px 0;
  1743. }
  1744. .comments-area article header {
  1745. margin: 0 0 48px;
  1746. overflow: hidden;
  1747. position: relative;
  1748. }
  1749. .comments-area article header img {
  1750. float: left;
  1751. padding: 0;
  1752. line-height: 0;
  1753. }
  1754. .comments-area article header cite,
  1755. .comments-area article header time {
  1756. display: block;
  1757. margin-left: 85px;
  1758. }
  1759. .comments-area article header cite {
  1760. font-style: normal;
  1761. font-size: 15px;
  1762. }
  1763. .comments-area cite b {
  1764. font-weight: normal;
  1765. }
  1766. .comments-area article header time {
  1767. text-decoration: none;
  1768. font-size: 12px;
  1769. color: #5e5e5e;
  1770. }
  1771. .comments-area article header a {
  1772. text-decoration: none;
  1773. color: #5e5e5e;
  1774. }
  1775. .comments-area article header a:hover {
  1776. color: #21759b;
  1777. }
  1778. .comments-area article header cite a {
  1779. color: #444;
  1780. }
  1781. .comments-area article header cite a:hover {
  1782. text-decoration: underline;
  1783. }
  1784. .commentlist .pingback {
  1785. line-height: 1.714285714;
  1786. margin-bottom: 24px;
  1787. }
  1788. li.comment.even {
  1789. background: #fff;
  1790. }
  1791. li.comment.odd {
  1792. background: #f3f3f3;
  1793. }
  1794. li.comment.thread-even {
  1795. background: #f5f5f5;
  1796. }
  1797. li.comment.thread-odd {
  1798. background: #fff;
  1799. }
  1800. .comment-meta {
  1801. font-size: 11px;
  1802. line-height: 12px;
  1803. }
  1804. .comment-meta a {
  1805. color: #777;
  1806. float: right;
  1807. margin-top: -15px;
  1808. }
  1809. /*====== Comment form ======*/
  1810. .required {
  1811. color: red;
  1812. }
  1813. .form-submit {
  1814. display: none;
  1815. }
  1816. .comment-form-author,
  1817. .comment-form-email,
  1818. .comment-form-url {
  1819. width: 50%;
  1820. }
  1821. /*============================================
  1822. Media
  1823. ==============================================*/
  1824. .video-container {
  1825. position: relative;
  1826. padding-bottom: 56.25%;
  1827. padding-top: 30px; height: 0; overflow: hidden;
  1828. }
  1829. .video-container iframe,
  1830. .video-container object,
  1831. .video-container embed {
  1832. position: absolute;
  1833. top: 0;
  1834. left: 0;
  1835. width: 100%;
  1836. height: 100%;
  1837. }
  1838. .category-gallery .size-thumbnail img {
  1839. border: 10px solid #f1f1f1;
  1840. margin-bottom: 0;
  1841. }
  1842. .category-gallery .gallery-thumb {
  1843. float: left;
  1844. margin-right: 20px;
  1845. margin-top: -4px;
  1846. }
  1847. .home #content .category-gallery .entry-utility {
  1848. padding-top: 4px;
  1849. }
  1850. /*===== Attachments =====*/
  1851. .single-attachment .hentry {
  1852. margin: 0px;
  1853. }
  1854. .attachment .entry-content .entry-caption {
  1855. font-size: 140%;
  1856. margin-top: 24px;
  1857. }
  1858. #content .entry-caption-attachment h2.entry-title {
  1859. margin: 0 0 5px;
  1860. font-weight: normal;
  1861. }
  1862. #content .entry-caption-parent p.page-title {
  1863. margin: -30px 0 0 0;
  1864. font: normal 13px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  1865. }
  1866. #content .entry-caption-parent p.page-title a {
  1867. color: #555;
  1868. }
  1869. #content .entry-caption-attachment p {
  1870. font-size: 14px;
  1871. text-indent: 0px;
  1872. line-height: 15px;
  1873. margin-bottom: 0px;
  1874. }
  1875. .attachment .entry-content .nav-previous a:before {
  1876. content: '\2190\00a0';
  1877. }
  1878. .attachment .entry-content .nav-next a:after {
  1879. content: '\00a0\2192';
  1880. }
  1881. /*===== Images ======*/
  1882. img.avatar {
  1883. width: 50px;
  1884. height: 50px;
  1885. -webkit-border-radius: 30px;
  1886. -moz-border-radius: 30px;
  1887. border-radius: 30px;
  1888. }
  1889. img.me {
  1890. height: 70px;
  1891. margin: 0 10px 0 0;
  1892. padding: 0 5px;
  1893. float: left;
  1894. -webkit-border-radius: 50%;
  1895. -moz-border-radius: 50%;
  1896. border-radius: 50%;
  1897. -webkit-filter: grayscale(1);
  1898. filter:grayscale(1);
  1899. }
  1900. .entry-content img {
  1901. max-width: 100%;
  1902. height: auto;
  1903. }
  1904. #content .home img {
  1905. border: 15px solid #000;
  1906. }
  1907. #content .alignleft,
  1908. #content img.alignleft {
  1909. display: inline;
  1910. float: left;
  1911. margin-right: 24px;
  1912. margin-top: 4px;
  1913. }
  1914. #content .alignright,
  1915. #content img.alignright {
  1916. display: inline;
  1917. float: right;
  1918. margin-left: 24px;
  1919. margin-top: 4px;
  1920. }
  1921. #content .aligncenter,
  1922. #content img.aligncenter {
  1923. clear: both;
  1924. margin-left: auto;
  1925. margin-right: auto;
  1926. }
  1927. #content img.alignleft,
  1928. #content img.alignright,
  1929. #content img.aligncenter {
  1930. margin-bottom: 12px;
  1931. }
  1932. #content img.alignfull,
  1933. #content img.alignwide
  1934. {
  1935. max-width: 100vw;
  1936. width: 100vw;
  1937. }
  1938. #content .wp-caption {
  1939. color: #737373;
  1940. line-height: 18px;
  1941. margin-bottom: 20px;
  1942. padding: 4px;
  1943. text-align: center;
  1944. }
  1945. #content .wp-caption img {
  1946. margin: 5px 5px 0;
  1947. }
  1948. #content .wp-caption p.wp-caption-text {
  1949. color: #888;
  1950. font-size: 10px;
  1951. margin: 5px;
  1952. }
  1953. #content .attachment img {
  1954. display: block;
  1955. margin: 0 auto;
  1956. }
  1957. .gallery { margin: 0 auto 18px; }
  1958. .gallery .gallery-item {
  1959. float: left;
  1960. margin-top: 0;
  1961. text-align: center;
  1962. width: 33%;
  1963. }
  1964. .gallery-columns-2 .gallery-item { width: 50%; }
  1965. .gallery-columns-4 .gallery-item { width: 25%; }
  1966. .gallery img {
  1967. box-shadow: 0px 0px 4px #999;
  1968. border: 5px solid #000;
  1969. padding: 8px;
  1970. background: #555;
  1971. }
  1972. .gallery img:hover {
  1973. background: #777;
  1974. }
  1975. .gallery-columns-2 .attachment-medium {
  1976. max-width: 92%;
  1977. height: auto;
  1978. }
  1979. .gallery-columns-4 .attachment-thumbnail {
  1980. max-width: 84%;
  1981. height: auto;
  1982. }
  1983. .gallery .gallery-caption {
  1984. color: #888;
  1985. font-size: 12px;
  1986. margin: 0 0 12px;
  1987. }
  1988. .gallery dl, .gallery dt { margin: 0; }
  1989. .gallery br+br { display: none; }
  1990. /*============================================
  1991. Pagination
  1992. ==============================================*/
  1993. .navigation {
  1994. color: #888;
  1995. font-size: 12px;
  1996. line-height: 18px;
  1997. overflow: hidden;
  1998. clear: both;
  1999. }
  2000. .navigation a:link,
  2001. .navigation a:visited {
  2002. color: #888;
  2003. text-decoration: none;
  2004. }
  2005. .navigation a:active,
  2006. .navigation a:hover {
  2007. color: #ff4b33;
  2008. }
  2009. .nav-previous {
  2010. color: #333;
  2011. font-size: 17px;
  2012. float: left;
  2013. width: 50%;
  2014. margin: 0 0 15px 0;
  2015. }
  2016. .nav-next {
  2017. color: #333;
  2018. font-size: 17px;
  2019. float: right;
  2020. text-align: right;
  2021. width: 50%;
  2022. }
  2023. .paged #nav-above,
  2024. .single #nav-above {
  2025. display: block;
  2026. }
  2027. #nav-below {
  2028. margin: 50px 0 0px;
  2029. padding: 20px 10px 0;
  2030. border-top: 1px solid #cecece;
  2031. }
  2032. .pagination {
  2033. margin-top: 40px;
  2034. padding: 20px 0 0;
  2035. }
  2036. .pagination a {
  2037. padding: 4px 5px;
  2038. color: #fff;
  2039. font-weight: bold;
  2040. font-size: 16px;
  2041. }
  2042. .pagination a:active {
  2043. padding: 4px 5px;
  2044. background: #707071;
  2045. color:#fff;
  2046. }
  2047. .pagination a:hover {
  2048. padding: 4px 5px;
  2049. background: #fff;
  2050. color: #ec0000;
  2051. }
  2052. .pagination a.next,
  2053. .pagination a.prev {
  2054. padding: 4px 7px 25px;
  2055. margin-top:-7px;
  2056. color: #ec0000;
  2057. font-weight: bold;
  2058. font-size: 27px;
  2059. }
  2060. .pagination .current {
  2061. padding: 4px 5px;
  2062. background: #fff;
  2063. color: #ec0000;
  2064. font-weight: bold;
  2065. font-size: 16px;
  2066. }
  2067. .page-numbers {
  2068. padding: 4px 5px;
  2069. font-weight: bold;
  2070. font-size: 16px;
  2071. }
  2072. /*============================================
  2073. 404
  2074. ==============================================*/
  2075. .not-search {
  2076. margin: 30px;
  2077. padding: 10px;
  2078. height: 80px;
  2079. zoom: 180%;
  2080. }
  2081. .not-search button {
  2082. line-height: 20px;
  2083. }
  2084. /*===== Structure =====*/
  2085. .a:hover {
  2086. color: #1d8;
  2087. }
  2088. .leader {
  2089. padding: 100px 0 0;
  2090. }
  2091. .dark {
  2092. background: #222;
  2093. }
  2094. .bottom {
  2095. padding-top: 50px;
  2096. }
  2097. .centered {
  2098. float: none;
  2099. margin: 0 auto;
  2100. }
  2101. .border-left {
  2102. border-left: 1px solid #333;
  2103. }
  2104. article#main {
  2105. padding: 0px;
  2106. }
  2107. article#main .entry-content {
  2108. padding: 15px;
  2109. }
  2110. article h2 {
  2111. font-size: 28px;
  2112. }
  2113. article.single {
  2114. background: #fff;
  2115. box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  2116. }
  2117. article.blurb {
  2118. background: #fff;
  2119. padding: 10px 15px;
  2120. margin:25px 0;
  2121. box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  2122. }
  2123. .post {
  2124. margin-bottom: 40px;
  2125. }
  2126. article p {
  2127. text-indent: 12px;
  2128. }
  2129. article p img {
  2130. text-indent: 0px;
  2131. margin: 15px 0 15px -12px;
  2132. }
  2133. p.nobreak {
  2134. margin: 0 0 10px !important;
  2135. }
  2136. span.quiet {
  2137. display: none;
  2138. }
  2139. span.right {
  2140. float: right;
  2141. }
  2142. .entry-content ul {
  2143. margin: 10px 20px;
  2144. }
  2145. .entry-content ul.sitemap {
  2146. margin: 0;
  2147. }
  2148. .form-row.checkbox {
  2149. font-size: 0.85em;
  2150. }
  2151. /*============================================
  2152. Code - Sunburst Theme
  2153. ==============================================*/
  2154. pre {
  2155. background-color: #000 !important;
  2156. word-wrap: break-word;
  2157. margin: 0 0 20px 0;
  2158. padding: 10px;
  2159. color: #fff !important;
  2160. font-size: 14px;
  2161. }
  2162. pre, code {
  2163. font-family: 'Monaco', courier, monospace;
  2164. }
  2165. pre .comment {
  2166. color: #AEAEAE; font-style: italic;
  2167. }
  2168. pre .constant {
  2169. color: #3387CC;
  2170. }
  2171. pre .storage {
  2172. color: #99CF50;
  2173. }
  2174. pre .string, pre .entity.name.class, pre .comment.docstring {
  2175. color: #65B042;
  2176. }
  2177. pre .string.regexp {
  2178. color: #E9C062;
  2179. }
  2180. pre .string.constant {
  2181. color: #DDF2A4;
  2182. }
  2183. pre .constant.hex-color {
  2184. color: #DD7B3B;
  2185. }
  2186. pre .support, pre .tag.script, pre .function.call {
  2187. color: #dad085;
  2188. }
  2189. pre .support.css-property {
  2190. color: #C5AF75;
  2191. }
  2192. pre .support.tag.style {
  2193. color: #fff;
  2194. }
  2195. pre .keyword, pre .selector {
  2196. color: #E28964;
  2197. }
  2198. pre .keyword.namespace {
  2199. color: #3387CC;
  2200. font-weight: bold;
  2201. }
  2202. pre .inherited-class {
  2203. font-style: italic;
  2204. }
  2205. pre .entity, pre .variable.instance, pre .support.namespace, pre .support.tag, pre .support.tag-name {
  2206. color: #89BDFF;
  2207. }
  2208. pre .entity.name.id {
  2209. color: #8693A5;
  2210. }
  2211. *[data-language="c"] .function.call {
  2212. color: #8DA6CE;
  2213. }
  2214. pre .variable, pre .variable.global {
  2215. color: #3E87E3;
  2216. }
  2217. pre .variable.class {
  2218. }
  2219. .wp-block-video video {
  2220. max-width:100% !important;
  2221. width:100% !important;
  2222. height:auto !important;
  2223. }
  2224. figcaption {
  2225. text-align:right;
  2226. color: #777777;
  2227. font-size:13px;
  2228. }
  2229. .chess-html {
  2230. padding: 0 5px 0 5px;
  2231. }
  2232. p.powerdby {
  2233. display:none;
  2234. }
  2235. .nav {
  2236. display:block;
  2237. }
  2238. .site-title {
  2239. float: right !important;
  2240. }
  2241. .navbar-right {
  2242. float: right !important;
  2243. margin-right: 0px;
  2244. }
  2245. .navbar .container {
  2246. display: block;
  2247. }
  2248. a {
  2249. color:#67000a;
  2250. }
  2251. a:hover {
  2252. color:#1a8;
  2253. }
  2254. .about a {
  2255. color:#ff4557;
  2256. }
  2257. li a {
  2258. 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";
  2259. font-size: .9em;
  2260. }
  2261. ul.bookmarks {
  2262. 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";
  2263. font-size: .9em;
  2264. }
  2265. .entry-title {
  2266. font-weight:600;
  2267. }
  2268. .navbar.visible {
  2269. background: rgba(72, 76, 87, 0.7); /* footer color (#484c57), translucent */
  2270. backdrop-filter: blur(6px);
  2271. }
  2272. .offcanvas {
  2273. background: #2b2e35d7;
  2274. }
  2275. ul.nav .list-group-item a {
  2276. color: #fff;
  2277. font-family: 'Playfair Display', serif;
  2278. font-weight: 700;
  2279. font-size: 1.35rem;
  2280. }
  2281. ul.nav .list-group-item a:hover {
  2282. color: #25c2a0;
  2283. }
  2284. /* floating "magic line": one shared underline that slides between the nav items
  2285. (positioned by js/nav-underline.js). ul is the positioning context. */
  2286. ul.nav.list-group-horizontal {
  2287. position: relative;
  2288. }
  2289. .dw-nav-underline {
  2290. position: absolute;
  2291. top: 0;
  2292. left: 0;
  2293. width: 0;
  2294. height: 2px;
  2295. background: #25c2a0;
  2296. border-radius: 1px;
  2297. opacity: 0;
  2298. pointer-events: none;
  2299. transition: left .4s cubic-bezier(0.785, 0.135, 0.15, 0.86),
  2300. width .4s cubic-bezier(0.785, 0.135, 0.15, 0.86),
  2301. top .4s cubic-bezier(0.785, 0.135, 0.15, 0.86),
  2302. opacity .3s ease;
  2303. }
  2304. @media (prefers-reduced-motion: reduce) {
  2305. .dw-nav-underline {
  2306. transition: opacity .3s ease;
  2307. }
  2308. }
  2309. ul.nav .list-group-item {
  2310. border:none;
  2311. background: none;
  2312. color: #fff;
  2313. }
  2314. ul.nav .list-group-item:first-child {
  2315. border-top-left-radius:0;
  2316. border-bottom-left-radius:0;
  2317. }
  2318. ul.nav .list-group-item:last-child {
  2319. border-top-right-radius:0;
  2320. border-bottom-right-radius:0;
  2321. }
  2322. ul.nav ul li {
  2323. margin-left: 15px;
  2324. }
  2325. figure {
  2326. margin: 1em 0px;
  2327. }
  2328. .wp-block-pullquote {
  2329. font-size: 24px;
  2330. margin: 10px 50px;
  2331. }