style.css 58 KB

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