style.css 55 KB

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