style.css 49 KB

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