style.css 48 KB

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