style.css 57 KB

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