style.css 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923
  1. /* @override http://macs.local/david/wp-content/themes/dw/style.css */
  2. /*!
  3. Theme Name: dw
  4. Theme URI: http://davidawindham.com/
  5. Author: windhamdavid
  6. Version: 2.0
  7. Thanks:
  8. normalize.css v3.0.1 * MIT License
  9. bootstrap v3.2.0 * MIT License
  10. font awesome 4.2.0 * MIT License
  11. _s | GPL License
  12. */
  13. 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}
  14. 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;}
  15. html{overflow-y: scroll;-webkit-text-size-adjust:100%;-ms-text-size-adjust: 100%;}
  16. body{line-height:1;}
  17. *,*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
  18. article,aside,details,figcaption,figure,footer,header,main,nav,section{display:block;}
  19. h1,h2,h3,h4,h5,h6{clear:both;font-weight:normal;}
  20. ol,ul{list-style: none;}
  21. blockquote,q{quotes: "" "";}
  22. blockquote:before,blockquote:after,q:before,q:after{content:'';}
  23. del {text-decoration:line-through;}
  24. table{border-collapse:collapse;border-spacing:0;}
  25. a:focus {outline:thin dotted;}
  26. a img {border: 0;}
  27. .clear {clear: both;}
  28. /*============================================
  29. Body
  30. ==============================================*/
  31. body {
  32. background: rgba(242,242,242,.7)
  33. }
  34. /*============================================
  35. Typography
  36. ==============================================*/
  37. @font-face {
  38. font-family: 'Computer Modern';
  39. src: local("☺"),
  40. url('fonts/cmunrm.woff') format('woff'),
  41. url('fonts/cmunrm.ttf') format('truetype'),
  42. url('fonts/cmunrm.otf') format('opentype'),
  43. url('fonts/cmunrm.eot?') format('embedded-opentype');
  44. font-weight: normal;
  45. font-style: normal;
  46. }
  47. @font-face {
  48. font-family: 'Computer Modern';
  49. src: local("☺"),
  50. url('fonts/cmunbx.woff') format('woff'),
  51. url('fonts/cmunbx.ttf') format('truetype'),
  52. url('fonts/cmunbx.otf') format('opentype'),
  53. url('fonts/cmunbx.eot?') format('embedded-opentype');
  54. font-weight: bold;
  55. font-style: normal;
  56. }
  57. @font-face {
  58. font-family: 'CM Sans';
  59. src: local("☺"),
  60. url('fonts/cmunsx.woff') format('woff'),
  61. url('fonts/cmunsx.ttf') format('truetype'),
  62. url('fonts/cmunsx.eot?') format('embedded-opentype');
  63. font-weight: normal;
  64. font-style: normal;
  65. }
  66. @font-face {
  67. font-family: 'CM Bright';
  68. src: local("☺"),
  69. url('fonts/cmunbbx.woff') format('woff'),
  70. url('fonts/cmunbbx.ttf') format('truetype'),
  71. url('fonts/cmunbbx.eot?') format('embedded-opentype');
  72. font-weight: normal;
  73. font-style: normal;
  74. }
  75. @font-face {
  76. font-family: 'CM Concrete';
  77. src: local("☺"),
  78. url('fonts/cmunobx.woff') format('woff'),
  79. url('fonts/cmunobx.ttf') format('truetype'),
  80. url('fonts/cmunobx.eot?') format('embedded-opentype');
  81. font-weight: normal;
  82. font-style: normal;
  83. }
  84. @font-face {
  85. font-family: 'CM Type';
  86. src: local("☺"),
  87. url('fonts/cmunobx.woff') format('woff'),
  88. url('fonts/cmunobx.ttf') format('truetype'),
  89. url('fonts/cmunobx.eot?') format('embedded-opentype');
  90. font-weight: normal;
  91. font-style: normal;
  92. }
  93. .cm {
  94. font-family: "Computer Modern";
  95. }
  96. .cm-sans {
  97. font-family: "CM Sans";
  98. }
  99. .cm-concrete {
  100. font-family: "CM Concrete";
  101. }
  102. .cm-bright {
  103. font-family: "CM Bright";
  104. }
  105. .cm-type {
  106. font-family: "CM Type";
  107. }
  108. .courier {
  109. font-family: "Courier New", Courier, "Lucida Sans Typewriter", "Lucida Typewriter", monospace;
  110. }
  111. .didot {
  112. font-family: Didot, "Didot LT STD", "Hoefler Text", Garamond, "Times New Roman", serif;
  113. }
  114. .georgia {
  115. font-family: Georgia, Times, "Times New Roman", serif;
  116. }
  117. * {
  118. -webkit-font-smoothing: antialiased !important;
  119. text-rendering: optimizeLegibility !important;
  120. font-weight: normal;
  121. font-family: "Computer Modern";
  122. font-size: 16px;
  123. line-height: 1.42857143;
  124. }
  125. input,button,select,textarea {
  126. font-family: inherit;
  127. font-size: inherit;
  128. line-height: inherit;
  129. }
  130. .light {
  131. color:#fcfcfc !important;
  132. }
  133. .darken {
  134. color:#333
  135. }
  136. .dim {
  137. color: #737373;
  138. }
  139. .dull {
  140. color: #535353;
  141. }
  142. .right {
  143. text-align: right;
  144. }
  145. em {
  146. font-weight: bold;
  147. }
  148. h1.super {
  149. margin: 40px 0 0;
  150. font-size: 43px;
  151. font-weight: bold;
  152. letter-spacing: -2px;
  153. }
  154. .conq {
  155. font-family: "aw-conqueror-didot",serif;
  156. font-style: normal;
  157. font-weight: 300;
  158. }
  159. .email a {
  160. color: #777;
  161. }
  162. /*============================================
  163. Grid
  164. ==============================================*/
  165. .container {
  166. padding-right: 15px;
  167. padding-left: 15px;
  168. margin-right: auto;
  169. margin-left: auto;
  170. }
  171. @media (max-width: 768px) {
  172. .offcanvas {
  173. display: none;
  174. }
  175. }
  176. @media (min-width: 768px) {
  177. .container {
  178. width: 750px;
  179. }
  180. .offcanvas {
  181. display: none;
  182. }
  183. .site-title {
  184. font-size: 25px;
  185. }
  186. }
  187. @media (min-width: 992px) {
  188. .container {
  189. width: 970px;
  190. }
  191. .offcanvas {
  192. display: none;
  193. }
  194. }
  195. @media (min-width: 1200px) {
  196. .container {
  197. width: 1170px;
  198. }
  199. }
  200. @media (min-width: 1310px) {
  201. }
  202. @media print {
  203. * {
  204. color: #000 !important;
  205. text-shadow: none !important;
  206. background: transparent !important;
  207. -webkit-box-shadow: none !important;
  208. box-shadow: none !important;
  209. }
  210. }
  211. /*============================================
  212. Loader / Transit
  213. ==============================================*/
  214. #loader {
  215. position: fixed;
  216. width: 100%;
  217. height: 100%;
  218. top: 0;
  219. left: 0;
  220. font-size: 150px;
  221. text-align: center;
  222. vertical-align: middle;
  223. color: #222;
  224. z-index: 200000;
  225. background-color: #222;
  226. }
  227. .loading-animation {
  228. width: 250px;
  229. height: 250px;
  230. position: absolute;
  231. top: 0;
  232. bottom: 0;
  233. right: 0;
  234. left: 0;
  235. margin: auto;
  236. }
  237. .loading-animation svg {
  238. position:absolute;
  239. top:0;
  240. left:0;
  241. -webkit-transform-origin:center center;
  242. -ms-transform-origin:center center;
  243. -o-transform-origin:center center;
  244. transform-origin:center center;
  245. -webkit-transition:all 0.3s;
  246. -o-transition:all 0.3s;
  247. transition:all 0.3s;
  248. -webkit-transform:rotateY(0deg);
  249. -ms-transform:rotateY(0deg);
  250. -o-transform:rotateY(0deg);
  251. transform:rotateY(0deg);
  252. }
  253. .loading-animation path {
  254. fill:none;
  255. stroke:#fff;
  256. stroke-width:2;
  257. -webkit-transition:all .3s;
  258. -o-transition:all .3s;
  259. transition:all .3s;
  260. }
  261. .loading-animation .l1 path {
  262. fill:rgba(242,242,242,.1);
  263. stroke-dasharray:450;
  264. stroke-dashoffset:900;
  265. -webkit-animation:LOADING1 4s linear 0s infinite;
  266. -o-animation:LOADING1 4s linear 0s infinite;
  267. animation:LOADING1 4s linear 0s infinite;
  268. }
  269. .loading-animation .l2 path {
  270. fill:rgba(242,242,242,.1);
  271. stroke-dasharray:340;
  272. stroke-dashoffset:340;
  273. -webkit-animation:LOADING2 3s linear 0s infinite;
  274. -o-animation:LOADING2 3s linear 0s infinite;
  275. animation:LOADING2 3s linear 0s infinite;
  276. }
  277. .loading-animation .l3 path {
  278. fill:none;
  279. stroke-width:1;
  280. stroke-dasharray:33;
  281. stroke-dashoffset:33;
  282. -webkit-animation:LOADING3 2s linear 0s infinite;
  283. -o-animation:LOADING3 2s linear 0s infinite;
  284. animation:LOADING3 2s linear 0s infinite;
  285. }
  286. @-webkit-keyframes LOADING1 {
  287. 0%{stroke-dashoffset:-900;}
  288. 50%{stroke-dashoffset:0;}
  289. 100%{stroke-dashoffset:900;}
  290. }
  291. @-moz-keyframes LOADING1 {
  292. 0%{stroke-dashoffset:-900;}
  293. 50%{stroke-dashoffset:0;}
  294. 100%{stroke-dashoffset:900;}
  295. }
  296. @-o-keyframes LOADING1 {
  297. 0%{stroke-dashoffset:-900;}
  298. 50%{stroke-dashoffset:0;}
  299. 100%{stroke-dashoffset:900;}
  300. }
  301. @keyframes LOADING1 {
  302. 0%{stroke-dashoffset:-900;}
  303. 50%{stroke-dashoffset:0;}
  304. 100%{stroke-dashoffset:900;}
  305. }
  306. @-webkit-keyframes LOADING2 {
  307. 0%{stroke-dashoffset:340;}
  308. 50%{stroke-dashoffset:0;}
  309. 100%{stroke-dashoffset:-340;}
  310. }
  311. @-moz-keyframes LOADING2 {
  312. 0%{stroke-dashoffset:340;}
  313. 50%{stroke-dashoffset:0;}
  314. 100%{stroke-dashoffset:-340;}
  315. }
  316. @-o-keyframes LOADING2 {
  317. 0%{stroke-dashoffset:340;}
  318. 50%{stroke-dashoffset:0;}
  319. 100%{stroke-dashoffset:-340;}
  320. }
  321. @keyframes LOADING2 {
  322. 0%{stroke-dashoffset:340;}
  323. 50%{stroke-dashoffset:0;}
  324. 100%{stroke-dashoffset:-340;}
  325. }
  326. @-webkit-keyframes LOADING3 {
  327. 0%{stroke-dashoffset:-230;}
  328. 50%{stroke-dashoffset:0;}
  329. 100%{stroke-dashoffset:230;}
  330. }
  331. @-moz-keyframes LOADING3 {
  332. 0%{stroke-dashoffset:-230;}
  333. 50%{stroke-dashoffset:0;}
  334. 100%{stroke-dashoffset:230;}
  335. }
  336. @-o-keyframes LOADING3 {
  337. 0%{stroke-dashoffset:-230;}
  338. 50%{stroke-dashoffset:0;}
  339. 100%{stroke-dashoffset:230;}
  340. }
  341. @keyframes LOADING3 {
  342. 0%{stroke-dashoffset:-230;}
  343. 50%{stroke-dashoffset:0;}
  344. 100%{stroke-dashoffset:230;}
  345. }
  346. .svg-wrap .l1 {
  347. -webkit-animation:TURN 3s linear 0s infinite;
  348. -o-animation:TURN 3s linear 0s infinite;
  349. animation:TURN 3s linear 0s infinite;
  350. }
  351. .svg-wrap .l2 {
  352. -webkit-animation:TURN 2s linear 0s infinite;
  353. -o-animation:TURN 2s linear 0s infinite;
  354. animation:TURN 2s linear 0s infinite;
  355. }
  356. .svg-wrap .l3 {
  357. -webkit-animation:TURN 4.5s linear 0s infinite;
  358. -o-animation:TURN 4.5s linear 0s infinite;
  359. animation:TURN 4.5s linear 0s infinite;
  360. }
  361. @-webkit-keyframes TURN {
  362. 0%{-webkit-transform:rotateY(0deg);opacity:1}
  363. 25%{-webkit-transform:rotateY(90deg);opacity:.6}
  364. 50%{-webkit-transform:rotateY(180deg);opacity:1}
  365. 75%{-webkit-transform:rotateY(270deg);opacity:.6}
  366. 100%{-webkit-transform:rotateY(360deg);opacity:1}}
  367. @-webkit-keyframes TURNBACK {
  368. 0%{-webkit-transform:rotateY(360deg);opacity:1}
  369. 25%{-webkit-transform:rotateY(270deg);opacity:.6}
  370. 50%{-webkit-transform:rotateY(180deg);opacity:1}
  371. 75%{-webkit-transform:rotateY(90deg);opacity:.6}
  372. 100%{-webkit-transform:rotateY(0deg);opacity:1}}
  373. .m-scene .scene_element {
  374. -webkit-animation-duration: 0.25s;
  375. animation-duration: 0.25s;
  376. -webkit-transition-timing-function: ease-in;
  377. transition-timing-function: ease-in;
  378. -webkit-animation-fill-mode: both;
  379. animation-fill-mode: both; }
  380. .m-scene .scene_element--fadein {
  381. -webkit-animation-name: fadeIn;
  382. animation-name: fadeIn; }
  383. .m-scene .scene_element--fadeinup {
  384. -webkit-animation-name: fadeInUp;
  385. animation-name: fadeInUp; }
  386. .m-scene .scene_element--fadeinright {
  387. -webkit-animation-name: fadeInRight;
  388. animation-name: fadeInRight; }
  389. .m-scene .scene_element--delayed {
  390. -webkit-animation-delay: 0.25s;
  391. animation-delay: 0.25s; }
  392. .m-scene.is-exiting .scene_element {
  393. -webkit-animation-direction: alternate-reverse;
  394. animation-direction: alternate-reverse; }
  395. .m-scene.is-exiting .scene_element--delayed {
  396. -webkit-animation-delay: 0s;
  397. animation-delay: 0s; }
  398. .m-scene.is-exiting .scene_element--noexiting {
  399. -webkit-animation-direction: alternate-reverse;
  400. animation-direction: alternate-reverse; }
  401. /*============================================
  402. Intro
  403. ==============================================*/
  404. .screen-reader {
  405. text-indent: -10000px;
  406. top:auto;
  407. width:1px;
  408. height:1px;
  409. overflow:hidden;
  410. }
  411. @keyframes blink {
  412. 0% { opacity: 0; }
  413. 25% { opacity: 1; }
  414. 50% { opacity: 1; }
  415. 100% { opacity: 0; }
  416. }
  417. @-webkit-keyframes blink {
  418. 0% { opacity: 0; }
  419. 25% { opacity: 1; }
  420. 50% { opacity: 1; }
  421. 100% { opacity: 0; }
  422. }
  423. @-ms-keyframes blink {
  424. 0% { opacity: 0; }
  425. 25% { opacity: 1; }
  426. 50% { opacity: 1; }
  427. 100% { opacity: 0; }
  428. }
  429. @-moz-keyframes blink {
  430. 0% { opacity: 0; }
  431. 25% { opacity: 1; }
  432. 50% { opacity: 1; }
  433. 100% { opacity: 0; }
  434. }
  435. .welcome::after {
  436. visibility: visible;
  437. content: '';
  438. background-color:green;
  439. opacity: 0;
  440. display: inline-block;
  441. position: relative;
  442. width: 0.5em;
  443. height: 1em;
  444. top: 5px;
  445. margin-left: 0;
  446. margin-bottom: 2px;
  447. -webkit-animation: blink 1s 20;
  448. -moz-animation: blink 1s 20;
  449. animation: blink 1s 20;
  450. }
  451. .welcome-back-text::after {
  452. visibility: visible;
  453. content: '';
  454. background-color:green;
  455. opacity: 0;
  456. display: inline-block;
  457. position: relative;
  458. width: 0.5em;
  459. height: 1em;
  460. top: 5px;
  461. margin-left: 0;
  462. margin-bottom: 2px;
  463. -webkit-animation: blink 1s 3;
  464. -moz-animation: blink 1s 3;
  465. animation: blink 1s 3;
  466. }
  467. .welcome-back {
  468. min-height: 500px;
  469. padding: 70px 50px 40px;
  470. font-size: 24px;
  471. color: #34F743;
  472. background: transparent url('img/terminal.svg');
  473. background-size: cover;
  474. border-radius: 1px;
  475. }
  476. .terminal-welcome .modal-content {
  477. margin: 0 0 100px;
  478. border: none;
  479. box-shadow:none;
  480. background-color: transparent !important;
  481. }
  482. .terminal {
  483. margin-top:30px;
  484. }
  485. .terminal .modal-content {
  486. margin: 0 0 100px;
  487. border: none;
  488. box-shadow:none;
  489. background-color: transparent !important;
  490. }
  491. [contenteditable] {outline: none;}
  492. .typed-cursor{
  493. display: none;
  494. }
  495. .thermo span.prompt {
  496. color: #389436;
  497. }
  498. .thermo p.input {
  499. line-height: 11px !important;
  500. margin: 0px;
  501. }
  502. .thermo p.response {
  503. line-height: 11px !important;
  504. margin: 0px;
  505. color:#34F743;
  506. }
  507. .thermo span.u {
  508. color: #389436;
  509. }
  510. .thermo span.at {
  511. color: #38BBC6;
  512. }
  513. .thermo span.mee {
  514. color: #389436;
  515. }
  516. .thermo-intro span.prompt {
  517. color: #389436;
  518. }
  519. .thermo-intro p.input {
  520. line-height: 11px !important;
  521. margin: 0px;
  522. }
  523. .thermo-intro p.response {
  524. line-height: 11px !important;
  525. margin: 0px;
  526. color:#34F743;
  527. }
  528. .thermo-intro span.u {
  529. color: #389436;
  530. }
  531. .thermo-intro span.at {
  532. color: #38BBC6;
  533. }
  534. .thermo-intro span.mee {
  535. color: #389436;
  536. }
  537. .big-top {
  538. height: auto;
  539. margin: 0 auto;
  540. width: 100%;
  541. position: relative;
  542. box-shadow: 0 0 50px rgba(0,0,0,0.8);
  543. padding: 100px 0;
  544. }
  545. .caro-grad {
  546. background: #5E7A9B;
  547. background: -webkit-linear-gradient(top, #355069 0, #5e7a9b 100%);
  548. background: -moz-linear-gradient(top, #355069 0, #5e7a9b 100%);
  549. background: -o-linear-gradient(top, #355069 0, #5e7a9b 100%);
  550. background: linear-gradient(top, #355069 0, #5e7a9b 100%);
  551. }
  552. .about {
  553. padding: 30px 0;
  554. }
  555. .carousel-fade .carousel-inner .item {
  556. left: 0 !important;
  557. opacity: 0;
  558. -webkit-transition-property: opacity;
  559. -moz-transition-property: opacity;
  560. -o-transition-property: opacity;
  561. transition-property: opacity;
  562. }
  563. .carousel-fade .carousel-inner .active {
  564. opacity: 1;
  565. }
  566. .carousel-fade .carousel-inner .active.left,
  567. .carousel-fade .carousel-inner .active.right {
  568. left: 0;
  569. opacity: 0;
  570. z-index: 1;
  571. }
  572. .carousel-fade .carousel-inner .next.left,
  573. .carousel-fade .carousel-inner .prev.right {
  574. opacity: 1;
  575. }
  576. .carousel-fade .carousel-control {
  577. z-index: 2;
  578. }
  579. #caro-lead {
  580. min-height: 400px;
  581. }
  582. #caro {
  583. }
  584. .hide-svg {
  585. visibility: hidden;
  586. }
  587. .fade-svg {
  588. -webkit-animation: fadeOut 1s;
  589. -moz-animation: fadeOut 1s;
  590. -o-animation: fadeOut 1s;
  591. -ms-animation: fadeOut 1s;
  592. animation: fadeOut 1s;
  593. }
  594. .show-svg {
  595. -webkit-animation: fadeIn 1s;
  596. -moz-animation: fadeIn 1s;
  597. -o-animation: fadeIn 1s;
  598. -ms-animation: fadeIn 1s;
  599. animation: fadeIn 1s;
  600. }
  601. #caro svg#svg-imac.screen {
  602. max-height: 460px;
  603. margin: 0;
  604. float: right;
  605. }
  606. #caro svg#svg-imac.bg {
  607. max-height: 460px;
  608. margin: 0;
  609. float: right;
  610. background: transparent url('img/web.gif') no-repeat 28% 15%;
  611. }
  612. .bg1 {
  613. background-size: cover;
  614. -webkit-background-size: cover;
  615. -moz-background-size: cover;
  616. -o-background-size: cover;
  617. background-size: cover;
  618. }
  619. .blur {
  620. -webkit-filter: blur(5px);
  621. -moz-filter: blur(5px);
  622. -o-filter: blur(5px);
  623. -ms-filter: blur(5px);
  624. filter: blur(5px);
  625. }
  626. #tv {
  627. position: fixed;
  628. right: 0;
  629. top: 0;
  630. min-width: 101%;
  631. min-height: 101%;
  632. width: auto;
  633. height: auto;
  634. z-index: -100;
  635. /*background: url(img/tv.gif) no-repeat;*/
  636. background-size: cover;
  637. -webkit-background-size: cover;
  638. -moz-background-size: cover;
  639. -o-background-size: cover;
  640. filter: saturate(0);
  641. -webkit-filter: saturate(0);
  642. transform-origin: 50% 50%;
  643. -webkit-transform-origin: 50% 50%;
  644. border: none;
  645. }
  646. @-webkit-keyframes vidblur {
  647. 0% {-webkit-filter: blur(0px) saturate(0) hue-rotate(0deg);}
  648. 100% {-webkit-filter: blur(4px) saturate(2) hue-rotate(100deg);}
  649. }
  650. @-webkit-keyframes vidunblur {
  651. 0% {-webkit-filter: blur(4px) saturate(2) hue-rotate(100deg);;}
  652. 100% {-webkit-filter: blur(0px) saturate(0) hue-rotate(0deg);}
  653. }
  654. #tv.blur {
  655. -webkit-animation: vidblur 4s;
  656. animation: vidblur 4s;
  657. }
  658. #tv.unblur {
  659. -webkit-animation: vidunblur 4s;
  660. animation: vidunblur 4s;
  661. }
  662. /*============================================
  663. Navbar
  664. ==============================================*/
  665. .navbar {
  666. -webkit-transition: background-color 0.3s;
  667. -moz-transition: background-color 0.3s;
  668. transition: background-color 0.3s;
  669. -webkit-transform: translate3d(0, 0, 0);
  670. -moz-transform: translate3d(0, 0, 0);
  671. -ms-transform: translate3d(0, 0, 0);
  672. -o-transform: translate3d(0, 0, 0);
  673. transform: translate3d(0, 0, 0);
  674. }
  675. .navbar.fixed {
  676. position: fixed;
  677. top: -81px;
  678. -webkit-transition: all .3s ease-in-out;
  679. -moz-transition: all .3s ease-in-out;
  680. transition: all .3s ease-in-out;
  681. }
  682. .navbar.visible {
  683. -webkit-transform: translate3d(0, 100%, 0);
  684. -moz-transform: translate3d(0, 100%, 0);
  685. -ms-transform: translate3d(0, 100%, 0);
  686. -o-transform: translate3d(0, 100%, 0);
  687. transform: translate3d(0, 100%, 0);
  688. background-color: rgba(237, 237, 237, 0.7);
  689. }
  690. #nav {
  691. width: 100%;
  692. }
  693. #nav.affix-top {
  694. width: 100%;
  695. background-color: rgba(237, 237, 237, 0.0);
  696. }
  697. #nav.affix-top {
  698. visibility: visible;
  699. position: absolute;
  700. top:0;
  701. left:0;
  702. height:80px;
  703. -webkit-transition: all .3s ease-in-out;
  704. -moz-transition: all .3s ease-in-out;
  705. transition: all .3s ease-in-out;
  706. }
  707. #nav.affix {
  708. position: fixed;
  709. top: 0;
  710. z-index:10;
  711. -webkit-transition: all .3s ease-in-out;
  712. -moz-transition: all .3s ease-in-out;
  713. transition: all .3s ease-in-out;
  714. }
  715. /*============================================
  716. NavMenu
  717. ==============================================*/
  718. .offcanvas.in {
  719. display: block;
  720. }
  721. .canvas-sliding {
  722. -webkit-transition: .25s ease-in-out;
  723. transition: .25s ease-in-out;
  724. }
  725. .navmenu,
  726. .navbar-offcanvas {
  727. width: 170px;
  728. height: auto;
  729. }
  730. .navmenu-fixed-right,
  731. .navbar-offcanvas {
  732. position: fixed;
  733. top: 80px;
  734. bottom: 0;
  735. z-index: 1030;
  736. overflow-y: auto;
  737. border-radius: 0;
  738. left: auto;
  739. right: 0;
  740. }
  741. .nav-toggle {
  742. padding: 15px 0;
  743. padding: 10px 35px 16px 0px;
  744. right: 15px;
  745. top: 25px;
  746. cursor: pointer;
  747. position: absolute;
  748. }
  749. .nav-toggle span, .nav-toggle span:before, .nav-toggle span:after {
  750. cursor: pointer;
  751. border-radius: 1px;
  752. height: 5px;
  753. width: 35px;
  754. background: #333E52;
  755. position: absolute;
  756. display: block;
  757. content: '';
  758. }
  759. .nav-toggle span:before {
  760. top: -10px;
  761. }
  762. .nav-toggle span:after {
  763. bottom: -10px;
  764. }
  765. .nav-toggle span, .nav-toggle span:before, .nav-toggle span:after {
  766. transition: all 500ms ease-in-out;
  767. }
  768. .nav-toggle.active span {
  769. background-color: transparent;
  770. }
  771. .nav-toggle.active span:before, .nav-toggle.active span:after {
  772. top: 0;
  773. }
  774. .nav-toggle.active span:before {
  775. transform: rotate(45deg);
  776. -webkit-transform: rotate(45deg);
  777. -o-transform: rotate(45deg);
  778. }
  779. .nav-toggle.active span:after {
  780. transform: rotate(-45deg);
  781. -webkit-transform: rotate(-45deg);
  782. -o-transform: rotate(-45deg);
  783. }
  784. ul.social {
  785. padding: 5px 15px;
  786. }
  787. ul.social li {
  788. float: left;
  789. padding: 1px 3px;
  790. }
  791. #archives li {
  792. list-style: none;
  793. margin: 2px 8px;
  794. float: left;
  795. }
  796. .fa {
  797. color: #777;
  798. }
  799. .fa-15x {
  800. font-size: 1.6em !important;
  801. padding: 2px 2px;
  802. }
  803. /*============================================
  804. Header
  805. ==============================================*/
  806. .site-title {
  807. float: right;
  808. padding: 15px 0;
  809. }
  810. .site-title a {
  811. color: #333;
  812. text-decoration: none;
  813. }
  814. img.dw {
  815. float: right;
  816. margin: 15px 0;
  817. }
  818. #site-description {
  819. clear: right;
  820. float: right;
  821. font-style: italic;
  822. margin: 14px 0 18px 0;
  823. width: 160px;
  824. }
  825. .logo {
  826. margin: 0 auto;
  827. vertical-align: top;
  828. }
  829. .front-nav {
  830. margin: 10px 0 0;
  831. }
  832. /*============================================
  833. Content
  834. ==============================================*/
  835. /*===== Structure =====*/
  836. .a:hover {
  837. color: #1d8;
  838. }
  839. .leader {
  840. padding: 90px 0 0;
  841. }
  842. .dark {
  843. background: #222;
  844. }
  845. .bottom {
  846. padding-top: 50px;
  847. }
  848. .footer {
  849. padding: 50px 0;
  850. }
  851. .footer-home {
  852. padding: 90px 0 50px;
  853. }
  854. .centered {
  855. float: none;
  856. margin: 0 auto;
  857. }
  858. article#main {
  859. padding: 0px;
  860. }
  861. article#main .entry-content {
  862. padding: 15px;
  863. }
  864. article h2 {
  865. font-size: 28px;
  866. }
  867. article.single {
  868. background: #fff;
  869. padding: 70px 100px 140px;
  870. }
  871. article.home {
  872. background: rgba(255, 255, 255, 0.9);
  873. padding: 70px 60px;
  874. border-radius: 10px;
  875. }
  876. .post {
  877. margin-bottom: 40px;
  878. }
  879. article p {
  880. text-indent: 12px;
  881. }
  882. p.nobreak {
  883. margin: 0 0 10px !important;
  884. }
  885. /*===== Footer =====*/
  886. p.cc {
  887. float: right;
  888. font-size: 14px;
  889. margin: 2px 20px 30px 10px;
  890. }
  891. span.quiet {
  892. display: none;
  893. }
  894. span.right {
  895. float: right;
  896. }
  897. .footer {
  898. padding: 50px 0 30px;
  899. }
  900. .form-row {
  901. margin: 10px 0;
  902. }
  903. .form-row.checkbox {
  904. font-size: 0.85em;
  905. }
  906. .form-row.texts:first-of-type {
  907. margin-top: 30px;
  908. }
  909. .form-row.texts + .form-row:not(.texts) {
  910. margin-top: 30px;
  911. }
  912. .checkbox-field input {
  913. margin-right: 10px;
  914. }
  915. .entry-content ul {
  916. margin: 10px 20px;
  917. }
  918. /*===== Wordpress =====*/
  919. @media (max-width: 768px) {
  920. article.single {
  921. background: #fff;
  922. padding: 10px;
  923. }
  924. }
  925. @media (min-width: 768px) {
  926. }
  927. @media (min-width: 992px) {
  928. }
  929. @media (min-width: 1200px) {
  930. }
  931. @media (min-width: 1310px) {
  932. }
  933. #content {
  934. margin-bottom: 36px;
  935. margin-top: 100px;
  936. }
  937. #content,
  938. #content input,
  939. #content textarea {
  940. color: #333;
  941. font-size: 16px;
  942. line-height: 24px;
  943. }
  944. #content p,
  945. #content ul,
  946. #content ol,
  947. #content dd,
  948. #content pre,
  949. #content hr {
  950. margin-bottom: 24px;
  951. }
  952. #content ul ul,
  953. #content ol ol,
  954. #content ul ol,
  955. #content ol ul {
  956. margin-bottom: 0;
  957. }
  958. #content pre,
  959. #content kbd,
  960. #content tt,
  961. #content var {
  962. font-size: 15px;
  963. line-height: 21px;
  964. }
  965. #content code {
  966. font-size: 13px;
  967. }
  968. #content dt,
  969. #content th {
  970. color: #000;
  971. }
  972. #content h1,
  973. #content h2,
  974. #content h3,
  975. #content h4,
  976. #content h5,
  977. #content h6 {
  978. color: #000;
  979. line-height: 1.5em;
  980. margin: 0 0 16px 0;
  981. }
  982. #content table {
  983. border: 1px solid #e7e7e7;
  984. margin: 0 -1px 24px 0;
  985. text-align: left;
  986. width: 100%;
  987. }
  988. #content tr th,
  989. #content thead th {
  990. color: #888;
  991. font-size: 12px;
  992. font-weight: bold;
  993. line-height: 18px;
  994. padding: 9px 24px;
  995. }
  996. #content tr td {
  997. border-top: 1px solid #e7e7e7;
  998. padding: 6px 24px;
  999. }
  1000. #content tr.odd td {
  1001. background: #f2f7fc;
  1002. }
  1003. .hentry {
  1004. margin: 0 0 30px 0;
  1005. }
  1006. .reserved-gallery {
  1007. float: left;
  1008. padding: 5px;
  1009. }
  1010. .home .sticky {
  1011. background: #f2f7fc;
  1012. border-top: 4px solid #000;
  1013. margin-left: -20px;
  1014. margin-right: -20px;
  1015. padding: 18px 20px;
  1016. }
  1017. .single .hentry {
  1018. margin: 0 0 36px 0;
  1019. }
  1020. .page-title {
  1021. color: #000;
  1022. font-size: 14px;
  1023. font-weight: bold;
  1024. margin: 0 0 36px 0;
  1025. }
  1026. .page-title span {
  1027. color: #333;
  1028. font-size: 16px;
  1029. font-style: italic;
  1030. font-weight: normal;
  1031. }
  1032. .entry-caption-parent .page-title span {
  1033. color: #777;
  1034. font-size: 12px;
  1035. font-style: italic;
  1036. font-weight: normal;
  1037. }
  1038. .nav-previous span.meta-nav {
  1039. color: #888;
  1040. font-size: 12px;
  1041. font-style: italic;
  1042. font-weight: normal;
  1043. }
  1044. .nav-next span.meta-nav {
  1045. color: #888;
  1046. font-size: 12px;
  1047. font-style: italic;
  1048. font-weight: normal;
  1049. }
  1050. .page-title a:link,
  1051. .page-title a:visited {
  1052. color: #888;
  1053. text-decoration: none;
  1054. }
  1055. .page-title a:active,
  1056. .page-title a:hover {
  1057. color: #373339;
  1058. }
  1059. #content .entry-title {
  1060. color: #000;
  1061. font-size: 26px;
  1062. line-height: 1.3em;
  1063. margin-bottom: 20px;
  1064. }
  1065. h2.entry-title {
  1066. color: #999;
  1067. }
  1068. .entry-title a:link,
  1069. .entry-title a:visited {
  1070. color: #000;
  1071. text-decoration: none;
  1072. }
  1073. .entry-title a:active,
  1074. .entry-title a:hover {
  1075. color: #1db;
  1076. }
  1077. .entry-meta {
  1078. color: #888;
  1079. font-size: 12px;
  1080. }
  1081. .entry-meta-attachment {
  1082. float: right;
  1083. color: #888;
  1084. font: 11px "Courier New", Courier, mono;
  1085. }
  1086. .entry-meta abbr,
  1087. .entry-utility abbr {
  1088. border: none;
  1089. }
  1090. .entry-meta abbr:hover,
  1091. .entry-utility abbr:hover {
  1092. border-bottom: 1px dotted #666;
  1093. }
  1094. .entry-content,
  1095. .entry-summary {
  1096. clear: both;
  1097. padding: 18px 0 20px;
  1098. }
  1099. .entry-guestbook {
  1100. clear: both;
  1101. padding: 3px 0 10px 0;
  1102. }
  1103. .entry-content h5 {
  1104. font: 14px "Courier New", Courier, mono;
  1105. }
  1106. .signature {
  1107. float: right;
  1108. margin: 10px 150px 40px 0px;
  1109. }
  1110. #inside h3 {
  1111. font: 16px "Courier New", Courier, mono;
  1112. line-height: 10px;
  1113. margin: 0 0 10px 0;
  1114. }
  1115. #inside p {
  1116. margin: 0 0 10px 0;
  1117. line-height: 20px;
  1118. }
  1119. #content .entry-summary p:last-child {
  1120. margin-bottom: 12px;
  1121. }
  1122. .entry-content fieldset {
  1123. border: 1px solid #e7e7e7;
  1124. margin: 0 0 24px 0;
  1125. padding: 24px;
  1126. }
  1127. .entry-content fieldset legend {
  1128. background: #fff;
  1129. color: #000;
  1130. font-weight: bold;
  1131. padding: 0 24px;
  1132. }
  1133. .entry-content input {
  1134. margin: 0 0 24px 0;
  1135. }
  1136. .entry-content input.file,
  1137. .entry-content input.button {
  1138. margin-right: 24px;
  1139. }
  1140. .entry-content label {
  1141. color: #888;
  1142. font-size: 12px;
  1143. }
  1144. .entry-content select {
  1145. margin: 0 0 24px 0;
  1146. }
  1147. .entry-content sup,
  1148. .entry-content sub {
  1149. font-size: 10px;
  1150. }
  1151. .entry-content blockquote.left {
  1152. float: left;
  1153. margin-left: 0;
  1154. margin-right: 24px;
  1155. text-align: right;
  1156. width: 33%;
  1157. }
  1158. .entry-content blockquote.right {
  1159. float: right;
  1160. margin-left: 24px;
  1161. margin-right: 0;
  1162. text-align: left;
  1163. width: 33%;
  1164. }
  1165. .page-link {
  1166. color: #000;
  1167. font-weight: bold;
  1168. margin: 0 0 22px 0;
  1169. word-spacing: 0.5em;
  1170. }
  1171. .page-link a:link,
  1172. .page-link a:visited {
  1173. background: #f1f1f1;
  1174. color: #333;
  1175. font-weight: normal;
  1176. padding: 0.5em 0.75em;
  1177. text-decoration: none;
  1178. }
  1179. .home .sticky .page-link a {
  1180. background: #d9e8f7;
  1181. }
  1182. .page-link a:active,
  1183. .page-link a:hover {
  1184. color: #ff4b33;
  1185. }
  1186. body.page .edit-link {
  1187. clear: both;
  1188. display: block;
  1189. }
  1190. #entry-author-info {
  1191. background: #f2f7fc;
  1192. border-top: 4px solid #000;
  1193. clear: both;
  1194. font-size: 14px;
  1195. line-height: 20px;
  1196. margin: 24px 0;
  1197. overflow: hidden;
  1198. padding: 18px 20px;
  1199. }
  1200. #entry-author-info #author-avatar {
  1201. background: #fff;
  1202. border: 1px solid #e7e7e7;
  1203. float: left;
  1204. height: 60px;
  1205. margin: 0 -104px 0 0;
  1206. padding: 11px;
  1207. }
  1208. #entry-author-info #author-description {
  1209. float: left;
  1210. margin: 0 0 0 104px;
  1211. }
  1212. #entry-author-info h2 {
  1213. color: #000;
  1214. font-size: 100%;
  1215. font-weight: bold;
  1216. margin-bottom: 0;
  1217. }
  1218. .entry-utility {
  1219. clear: both;
  1220. color: #888;
  1221. font-size: 12px;
  1222. line-height: 18px;
  1223. }
  1224. .entry-meta a,
  1225. .entry-utility a {
  1226. color: #888;
  1227. }
  1228. .entry-meta a:hover,
  1229. .entry-utility a:hover {
  1230. color: #ff4b33;
  1231. }
  1232. #content .video-player {
  1233. padding: 0;
  1234. }
  1235. .date {
  1236. float: right;
  1237. margin: 0px 0 20px 50px;
  1238. color: #777;
  1239. font: 14px/18px "Courier New", Courier, mono;
  1240. }
  1241. .front-date {
  1242. float: right;
  1243. margin: 0px 0 0px 40px;
  1244. color: #777;
  1245. font: 14px/18px "Courier New", Courier, mono;
  1246. }
  1247. /*============================================
  1248. Meta
  1249. ==============================================*/
  1250. .meta {
  1251. font-size: 11px;
  1252. }
  1253. .categories-fb {
  1254. text-align: right;
  1255. }
  1256. span.fb {
  1257. width: 16px;
  1258. height: 16px;
  1259. margin-left: 5px;
  1260. padding: 3px 4px 2px 5px;
  1261. background-image: url(img/fb1.png) ;
  1262. background-position: 0 16px;
  1263. position: relative;
  1264. -webkit-transition: all ease 0.3s;
  1265. -moz-transition: all ease 0.3s;
  1266. -o-transition: all ease 0.3s;
  1267. -ms-transition: all ease 0.3s;
  1268. transition: all ease 0.3s;
  1269. }
  1270. span.fb:hover {
  1271. background-position: 0 0;
  1272. }
  1273. /*============================================
  1274. Comments
  1275. ==============================================*/
  1276. #commentform input.error,
  1277. #commentform textarea.error {
  1278. background: #FFD2D2;
  1279. color:#000000;
  1280. }
  1281. #commentform .error {
  1282. font-size: 16px;
  1283. padding: 0 0 5px 0;
  1284. color: #FF0000;
  1285. }
  1286. .commentbubble {
  1287. font-family:"CM Type";
  1288. font-size: 13px;
  1289. color: #777;
  1290. margin: 0px 15px 0 0;
  1291. }
  1292. .comment {
  1293. padding: 10px;
  1294. }
  1295. .commentbubble a.toogle-comments {
  1296. float: right;
  1297. text-align: right;
  1298. }
  1299. .comments-area {
  1300. background: rgba(242,242,242,.7);
  1301. padding: 15px;
  1302. margin: 60px 0 0 0;
  1303. }
  1304. #content .comments-area p {
  1305. margin: 0 0 8px;
  1306. font-size: 13px;
  1307. }
  1308. #content .comments-area .reply {
  1309. margin: 5px 8px 0px;
  1310. padding: 2px 9px;
  1311. background: rgba(242,242,242,.5);
  1312. font-size: 11px;
  1313. }
  1314. .comments-title {
  1315. margin-bottom: 48px;
  1316. margin-bottom: 3.428571429rem;
  1317. font-size: 16px;
  1318. font-size: 1.142857143rem;
  1319. line-height: 1.5;
  1320. font-weight: normal;
  1321. }
  1322. .comments-area ul {
  1323. margin: 0px 0px;
  1324. list-style: none;
  1325. }
  1326. .comments-area h3 {
  1327. margin: 0 0 0;
  1328. }
  1329. .comments-meta {
  1330. font-size: 10px;
  1331. }
  1332. .comments-area article {
  1333. margin: 24px 0;
  1334. }
  1335. .comments-area article header {
  1336. margin: 0 0 48px;
  1337. overflow: hidden;
  1338. position: relative;
  1339. }
  1340. .comments-area article header img {
  1341. float: left;
  1342. padding: 0;
  1343. line-height: 0;
  1344. }
  1345. .comments-area article header cite,
  1346. .comments-area article header time {
  1347. display: block;
  1348. margin-left: 85px;
  1349. }
  1350. .comments-area article header cite {
  1351. font-style: normal;
  1352. font-size: 15px;
  1353. }
  1354. .comments-area cite b {
  1355. font-weight: normal;
  1356. }
  1357. .comments-area article header time {
  1358. text-decoration: none;
  1359. font-size: 12px;
  1360. color: #5e5e5e;
  1361. }
  1362. .comments-area article header a {
  1363. text-decoration: none;
  1364. color: #5e5e5e;
  1365. }
  1366. .comments-area article header a:hover {
  1367. color: #21759b;
  1368. }
  1369. .comments-area article header cite a {
  1370. color: #444;
  1371. }
  1372. .comments-area article header cite a:hover {
  1373. text-decoration: underline;
  1374. }
  1375. a.comment-reply-link,
  1376. a.comment-edit-link {
  1377. color: #686868;
  1378. font-size: 13px;
  1379. }
  1380. a.comment-reply-link:hover,
  1381. a.comment-edit-link:hover {
  1382. color: #21759b;
  1383. }
  1384. .commentlist .pingback {
  1385. line-height: 1.714285714;
  1386. margin-bottom: 24px;
  1387. }
  1388. li.comment.even {
  1389. background: #fff;
  1390. }
  1391. li.comment.odd {
  1392. background: #f3f3f3;
  1393. }
  1394. li.comment.thread-even {
  1395. background: #f5f5f5;
  1396. }
  1397. li.comment.thread-odd {
  1398. background: #fff;
  1399. }
  1400. .comment-meta {
  1401. font-size: 11px;
  1402. line-height: 12px;
  1403. }
  1404. .comment-meta a {
  1405. color: #777;
  1406. float: right;
  1407. }
  1408. /*====== Comment form ======*/
  1409. #respond {
  1410. margin-top: 10px;
  1411. }
  1412. #respond h3#reply-title {
  1413. margin: 0px 8px 0px;
  1414. padding: 2px 9px;
  1415. font-size: 11px;
  1416. margin: 0;
  1417. }
  1418. #respond h3#reply-title #cancel-comment-reply-link {
  1419. margin-left: 10px;
  1420. font-weight: normal;
  1421. font-size: 12px;
  1422. font-size: 0.857142857rem;
  1423. }
  1424. #respond form {
  1425. margin: 24px 0;
  1426. margin: 1.714285714rem 0;
  1427. }
  1428. #respond form p {
  1429. margin: 11px 0;
  1430. margin: 0.785714286rem 0;
  1431. }
  1432. #respond form p.logged-in-as {
  1433. margin-bottom: 24px;
  1434. margin-bottom: 1.714285714rem;
  1435. }
  1436. #respond form label {
  1437. display: block;
  1438. line-height: 1.714285714;
  1439. }
  1440. #respond form input[type="text"],
  1441. #respond form textarea {
  1442. -moz-box-sizing: border-box;
  1443. box-sizing: border-box;
  1444. font: 0.857142857rem "Courier New", Courier, mono;
  1445. line-height: 1.714285714;
  1446. padding: 10px;
  1447. padding: 0.714285714rem;
  1448. width: 100%;
  1449. }
  1450. #respond form p.form-allowed-tags {
  1451. margin: 0;
  1452. font-size: 12px;
  1453. font-size: 0.857142857rem;
  1454. line-height: 2;
  1455. color: #5e5e5e;
  1456. }
  1457. .required {
  1458. color: red;
  1459. }
  1460. /*============================================
  1461. Media
  1462. ==============================================*/
  1463. .video-container {
  1464. position: relative;
  1465. padding-bottom: 56.25%;
  1466. padding-top: 30px; height: 0; overflow: hidden;
  1467. }
  1468. .video-container iframe,
  1469. .video-container object,
  1470. .video-container embed {
  1471. position: absolute;
  1472. top: 0;
  1473. left: 0;
  1474. width: 100%;
  1475. height: 100%;
  1476. }
  1477. .category-gallery .size-thumbnail img {
  1478. border: 10px solid #f1f1f1;
  1479. margin-bottom: 0;
  1480. }
  1481. .category-gallery .gallery-thumb {
  1482. float: left;
  1483. margin-right: 20px;
  1484. margin-top: -4px;
  1485. }
  1486. .home #content .category-gallery .entry-utility {
  1487. padding-top: 4px;
  1488. }
  1489. /*===== Attachments =====*/
  1490. .single-attachment .hentry {
  1491. margin: 0px;
  1492. }
  1493. .attachment .entry-content .entry-caption {
  1494. font-size: 140%;
  1495. margin-top: 24px;
  1496. }
  1497. .entry-caption-attachment {
  1498. margin: 0px auto 0;
  1499. text-align: center;
  1500. }
  1501. #content .entry-caption-attachment h2.entry-title {
  1502. margin: 0 0 5px;
  1503. font-weight: normal;
  1504. }
  1505. #content .entry-caption-parent p.page-title {
  1506. margin: -30px 0 0 0;
  1507. font: normal 13px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  1508. }
  1509. #content .entry-caption-parent p.page-title a {
  1510. color: #555;
  1511. }
  1512. #content .entry-caption-attachment p {
  1513. font-size: 14px;
  1514. text-indent: 0px;
  1515. line-height: 15px;
  1516. margin-bottom: 0px;
  1517. }
  1518. .entry-caption-attachment h2 {
  1519. font: bold 27px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
  1520. }
  1521. .attachment .entry-content .nav-previous a:before {
  1522. content: '\2190\00a0';
  1523. }
  1524. .attachment .entry-content .nav-next a:after {
  1525. content: '\00a0\2192';
  1526. }
  1527. /*===== Images ======*/
  1528. img.avatar {
  1529. width: 50px;
  1530. height: 50px;
  1531. -webkit-border-radius: 30px;
  1532. -moz-border-radius: 30px;
  1533. border-radius: 30px;
  1534. }
  1535. img.me {
  1536. height: 80px;
  1537. margin: 0 10px;
  1538. float: left;
  1539. -webkit-border-radius: 50%;
  1540. -moz-border-radius: 50%;
  1541. border-radius: 50%;
  1542. -webkit-filter: grayscale(1);
  1543. filter:grayscale(1);
  1544. }
  1545. .entry-content img {
  1546. max-width: 100%;
  1547. height: auto;
  1548. }
  1549. .img-rounded {
  1550. border-radius: 6px;
  1551. }
  1552. .img-thumbnail {
  1553. padding: 4px;
  1554. line-height: 1.42857143;
  1555. background-color: #ffffff;
  1556. border: 1px solid #dddddd;
  1557. border-radius: 4px;
  1558. -webkit-transition: all 0.2s ease-in-out;
  1559. -o-transition: all 0.2s ease-in-out;
  1560. transition: all 0.2s ease-in-out;
  1561. display: inline-block;
  1562. width: 100% \9;
  1563. max-width: 100%;
  1564. height: auto;
  1565. }
  1566. .img-circle {
  1567. border-radius: 50%;
  1568. }
  1569. #content .home img {
  1570. border: 15px solid #000;
  1571. }
  1572. #content .attachment img {
  1573. max-width: 900px;
  1574. }
  1575. #content .alignleft,
  1576. #content img.alignleft {
  1577. display: inline;
  1578. float: left;
  1579. margin-right: 24px;
  1580. margin-top: 4px;
  1581. }
  1582. #content .alignright,
  1583. #content img.alignright {
  1584. display: inline;
  1585. float: right;
  1586. margin-left: 24px;
  1587. margin-top: 4px;
  1588. }
  1589. #content .aligncenter,
  1590. #content img.aligncenter {
  1591. clear: both;
  1592. display: block;
  1593. margin-left: auto;
  1594. margin-right: auto;
  1595. }
  1596. #content img.alignleft,
  1597. #content img.alignright,
  1598. #content img.aligncenter {
  1599. margin-bottom: 12px;
  1600. }
  1601. #content .wp-caption {
  1602. background: #f1f1f1;
  1603. line-height: 18px;
  1604. margin-bottom: 20px;
  1605. padding: 4px;
  1606. text-align: center;
  1607. }
  1608. #content .wp-caption img {
  1609. margin: 5px 5px 0;
  1610. }
  1611. #content .wp-caption p.wp-caption-text {
  1612. color: #888;
  1613. font-size: 12px;
  1614. margin: 5px;
  1615. }
  1616. #content .gallery {
  1617. margin: 0 auto 18px;
  1618. }
  1619. #content .gallery .gallery-item {
  1620. float: left;
  1621. margin-top: 0;
  1622. text-align: center;
  1623. width: 33%;
  1624. }
  1625. #content .gallery img {
  1626. border: 2px solid #cfcfcf;
  1627. }
  1628. #content .gallery .gallery-caption {
  1629. color: #888;
  1630. font-size: 12px;
  1631. margin: 0 0 12px;
  1632. }
  1633. #content .gallery dl {
  1634. margin: 0;
  1635. }
  1636. #content .gallery img {
  1637. border: 10px solid #f1f1f1;
  1638. }
  1639. #content .gallery br+br {
  1640. display: none;
  1641. }
  1642. #content .attachment img {
  1643. display: block;
  1644. margin: 0 auto;
  1645. }
  1646. /*============================================
  1647. Pagination
  1648. ==============================================*/
  1649. .navigation {
  1650. color: #888;
  1651. font-size: 12px;
  1652. line-height: 18px;
  1653. overflow: hidden;
  1654. clear: both;
  1655. }
  1656. .navigation a:link,
  1657. .navigation a:visited {
  1658. color: #888;
  1659. text-decoration: none;
  1660. }
  1661. .navigation a:active,
  1662. .navigation a:hover {
  1663. color: #ff4b33;
  1664. }
  1665. .nav-previous {
  1666. float: left;
  1667. width: 50%;
  1668. margin: 0 0 15px 0;
  1669. }
  1670. .nav-next {
  1671. float: right;
  1672. text-align: right;
  1673. width: 50%;
  1674. }
  1675. #nav-above {
  1676. margin: 0 0 18px 0;
  1677. }
  1678. #nav-above {
  1679. display: none;
  1680. }
  1681. .paged #nav-above,
  1682. .single #nav-above {
  1683. display: block;
  1684. }
  1685. #nav-below {
  1686. margin: 50px 0 0px;
  1687. padding: 20px 10px 0;
  1688. border-top: 1px solid #cecece;
  1689. }
  1690. .pagination {
  1691. margin-top: 40px;
  1692. border-top: 1px solid #cecece;
  1693. padding: 20px 0 0;
  1694. }
  1695. .pagination a {
  1696. padding: 4px 5px;
  1697. color: #fff;
  1698. font-weight: bold;
  1699. font-size: 16px;
  1700. }
  1701. .pagination a:active {
  1702. padding: 4px 5px;
  1703. background: #707071;
  1704. color:#fff;
  1705. }
  1706. .pagination a:hover {
  1707. padding: 4px 5px;
  1708. background: #fff;
  1709. color: #ec0000;
  1710. }
  1711. .pagination a.next,
  1712. .pagination a.prev {
  1713. padding: 4px 7px;
  1714. color: #ec0000;
  1715. font-weight: bold;
  1716. font-size: 27px;
  1717. }
  1718. .pagination .current {
  1719. padding: 4px 5px;
  1720. background: #fff;
  1721. color: #ec0000;
  1722. font-weight: bold;
  1723. font-size: 16px;
  1724. }
  1725. /*============================================
  1726. Footer
  1727. ==============================================*/
  1728. /*============================================
  1729. Forms
  1730. ==============================================*/
  1731. .text-field {
  1732. width: 50%;
  1733. float: left;
  1734. display: block;
  1735. -webkit-box-sizing: border-box;
  1736. -moz-box-sizing: border-box;
  1737. box-sizing: border-box;
  1738. position: relative;
  1739. }
  1740. .text-field > strong {
  1741. display: block;
  1742. font-weight: bold;
  1743. color: white;
  1744. font-size: 0.85em;
  1745. margin-top: -3px;
  1746. }
  1747. .text-field > strong > i {
  1748. font-weight: normal;
  1749. font-style: italic;
  1750. font-family: playfair display, serif;
  1751. font-size: 0.9em;
  1752. opacity: 0.8;
  1753. }
  1754. .text-field .req {
  1755. position: relative;
  1756. top: 4px;
  1757. left: 4px;
  1758. color: #1a8;
  1759. opacity: 0.5;
  1760. }
  1761. .text-field [type='email'],
  1762. .text-field [type='text'] {
  1763. -webkit-box-sizing: border-box;
  1764. -moz-box-sizing: border-box;
  1765. box-sizing: border-box;
  1766. -webkit-transition: all 200ms linear;
  1767. transition: all 200ms linear;
  1768. }
  1769. .text-field [type='email']::-webkit-input-placeholder,
  1770. .text-field [type='text']::-webkit-input-placeholder {
  1771. color: rgba(250, 250, 250, 0.2);
  1772. font-weight: normal;
  1773. }
  1774. .text-field [type='email']::-moz-placeholder,
  1775. .text-field [type='text']::-moz-placeholder {
  1776. color: rgba(250, 250, 250, 0.2);
  1777. font-weight: normal;
  1778. }
  1779. .text-field [type='email']:-ms-input-placeholder,
  1780. .text-field [type='text']:-ms-input-placeholder {
  1781. color: rgba(250, 250, 250, 0.2);
  1782. font-weight: normal;
  1783. }
  1784. .text-field [type='email']::placeholder,
  1785. .text-field [type='text']::placeholder {
  1786. color: rgba(250, 250, 250, 0.2);
  1787. font-weight: normal;
  1788. }
  1789. .text-field [type='email'],
  1790. .text-field [type='text'] {
  1791. background: transparent;
  1792. border: 0;
  1793. padding: 5px 0;
  1794. border-bottom: solid 1px rgba(250, 250, 250, 0.2);
  1795. margin: 5px 5px 5px 0;
  1796. color: #1d8;
  1797. font-weight: bold;
  1798. }
  1799. .text-field [type='email']:hover,
  1800. .text-field [type='text']:hover {
  1801. border-bottom-color: rgba(250, 250, 250, 0.5);
  1802. outline: 0;
  1803. }
  1804. .text-field [type='email']:focus,
  1805. .text-field [type='text']:focus {
  1806. color: #1d8;
  1807. border-bottom-color: #1d8;
  1808. outline: 0;
  1809. }
  1810. @media (min-width: 768px) {
  1811. .text-field [type='email'],
  1812. .text-field [type='text'] {
  1813. width: 92%;
  1814. }
  1815. }
  1816. form .actions button{
  1817. margin: 20px 0;
  1818. }