style.css 59 KB

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