style.css 57 KB

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