style.css 59 KB

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