stylesheet.css 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393
  1. /* http://meyerweb.com/eric/tools/css/reset/
  2. v2.0 | 20110126
  3. License: none (public domain)
  4. */
  5. html, body, div, span, applet, object, iframe,
  6. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  7. a, abbr, acronym, address, big, cite, code,
  8. del, dfn, em, img, ins, kbd, q, s, samp,
  9. small, strike, strong, sub, sup, tt, var,
  10. b, u, i, center,
  11. dl, dt, dd, ol, ul, li,
  12. fieldset, form, label, legend,
  13. table, caption, tbody, tfoot, thead, tr, th, td,
  14. article, aside, canvas, details, embed,
  15. figure, figcaption, footer, header, hgroup,
  16. menu, nav, output, ruby, section, summary,
  17. time, mark, audio, video {
  18. padding: 0;
  19. margin: 0;
  20. font: inherit;
  21. font-size: 100%;
  22. vertical-align: baseline;
  23. border: 0;
  24. }
  25. /* HTML5 display-role reset for older browsers */
  26. article, aside, details, figcaption, figure,
  27. footer, header, hgroup, menu, nav, section {
  28. display: block;
  29. }
  30. body {
  31. line-height: 1;
  32. }
  33. ol, ul {
  34. list-style: none;
  35. }
  36. blockquote, q {
  37. quotes: none;
  38. }
  39. blockquote:before, blockquote:after,
  40. q:before, q:after {
  41. content: '';
  42. content: none;
  43. }
  44. table {
  45. border-spacing: 0;
  46. border-collapse: collapse;
  47. }
  48. /* LAYOUT STYLES */
  49. body {
  50. font-family: 'Roboto Mono';
  51. font-size: 1em;
  52. line-height: 1.5;
  53. background-color: #000;
  54. text-shadow: none;
  55. /*background: #e7e7e7 url(../images/body-bg.png) 0 0 repeat;*/
  56. }
  57. a {
  58. color: #d5000d;
  59. }
  60. a:hover {
  61. color: #c5000c;
  62. }
  63. header {
  64. padding-top: 25px;
  65. padding-bottom: 25px;
  66. }
  67. header h1 {
  68. font-family: 'Roboto Mono', 'Helvetica Neue', Helvetica, Arial, serif;
  69. font-size: 38px; font-weight: 300;
  70. line-height: 1.2;
  71. color: #fff;
  72. text-transform: uppercase;
  73. cursor: pointer;
  74. }
  75. header a,
  76. header a:hover {
  77. color: #fff;
  78. }
  79. .light {
  80. font-weight: 100;
  81. }
  82. header h2 {
  83. font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, serif;
  84. font-size: 20px;
  85. font-weight: 400;
  86. line-height: 1.3;
  87. margin-top: 20px;
  88. color: #fff;
  89. }
  90. #container {
  91. min-height: 595px;
  92. }
  93. .inner {
  94. /*width: 620px;*/
  95. margin: 0 auto;
  96. padding: 0 30px;
  97. }
  98. #container .inner img {
  99. max-width: 100%;
  100. }
  101. #main_content {
  102. color: #fff;
  103. max-width: 620px;
  104. }
  105. .eyebeam {
  106. position: absolute;
  107. right: 90px;
  108. }
  109. #social {
  110. position: absolute;
  111. right: 50px;
  112. top: 30px;
  113. }
  114. #social a {
  115. padding: 0 8px;
  116. }
  117. a.button {
  118. display: block;
  119. float: left;
  120. width: 179px;
  121. padding: 12px 8px 12px 8px;
  122. margin-right: 14px;
  123. font-size: 15px;
  124. font-weight: bold;
  125. line-height: 25px;
  126. color: #303030;
  127. background: #fdfdfd; /* Old browsers */
  128. background: -moz-linear-gradient(top, #fdfdfd 0%, #f2f2f2 100%); /* FF3.6+ */
  129. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fdfdfd), color-stop(100%,#f2f2f2)); /* Chrome,Safari4+ */
  130. background: -webkit-linear-gradient(top, #fdfdfd 0%,#f2f2f2 100%); /* Chrome10+,Safari5.1+ */
  131. background: -o-linear-gradient(top, #fdfdfd 0%,#f2f2f2 100%); /* Opera 11.10+ */
  132. background: -ms-linear-gradient(top, #fdfdfd 0%,#f2f2f2 100%); /* IE10+ */
  133. background: linear-gradient(top, #fdfdfd 0%,#f2f2f2 100%); /* W3C */
  134. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fdfdfd', endColorstr='#f2f2f2',GradientType=0 ); /* IE6-9 */
  135. border-top: solid 1px #cbcbcb;
  136. border-right: solid 1px #b7b7b7;
  137. border-bottom: solid 1px #b3b3b3;
  138. border-left: solid 1px #b7b7b7;
  139. border-radius: 30px;
  140. -webkit-box-shadow: 10px 10px 5px #888;
  141. -moz-box-shadow: 10px 10px 5px #888;
  142. box-shadow: 0px 1px 5px #e8e8e8;
  143. -moz-border-radius: 30px;
  144. -webkit-border-radius: 30px;
  145. }
  146. a.button:hover {
  147. background: #fafafa; /* Old browsers */
  148. background: -moz-linear-gradient(top, #fdfdfd 0%, #f6f6f6 100%); /* FF3.6+ */
  149. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fdfdfd), color-stop(100%,#f6f6f6)); /* Chrome,Safari4+ */
  150. background: -webkit-linear-gradient(top, #fdfdfd 0%,#f6f6f6 100%); /* Chrome10+,Safari5.1+ */
  151. background: -o-linear-gradient(top, #fdfdfd 0%,#f6f6f6 100%); /* Opera 11.10+ */
  152. background: -ms-linear-gradient(top, #fdfdfd 0%,#f6f6f6 100%); /* IE10+ */
  153. background: linear-gradient(top, #fdfdfd 0%,#f6f6f6, 100%); /* W3C */
  154. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fdfdfd', endColorstr='#f6f6f6',GradientType=0 ); /* IE6-9 */
  155. border-top: solid 1px #b7b7b7;
  156. border-right: solid 1px #b3b3b3;
  157. border-bottom: solid 1px #b3b3b3;
  158. border-left: solid 1px #b3b3b3;
  159. }
  160. a.button span {
  161. display: block;
  162. height: 23px;
  163. padding-left: 50px;
  164. }
  165. code, pre {
  166. margin-bottom: 30px;
  167. font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal;
  168. font-size: 14px;
  169. color: #222;
  170. }
  171. code {
  172. padding: 0 3px;
  173. background-color: #f2f2f2;
  174. border: solid 1px #ddd;
  175. }
  176. pre {
  177. padding: 20px;
  178. overflow: auto;
  179. color: #f2f2f2;
  180. text-shadow: none;
  181. background: #303030;
  182. }
  183. pre code {
  184. padding: 0;
  185. color: #f2f2f2;
  186. background-color: #303030;
  187. border: none;
  188. }
  189. ul, ol, dl {
  190. margin-bottom: 20px;
  191. }
  192. /* COMMON STYLES */
  193. hr {
  194. height: 1px;
  195. padding-bottom: 1em;
  196. margin-top: 1em;
  197. line-height: 1px;
  198. background: transparent url('../images/hr.png') 50% 0 no-repeat;
  199. border: none;
  200. }
  201. strong {
  202. font-weight: bold;
  203. }
  204. em {
  205. font-style: italic;
  206. }
  207. table {
  208. width: 100%;
  209. border: 1px solid #ebebeb;
  210. }
  211. th {
  212. font-weight: 500;
  213. }
  214. td {
  215. font-weight: 300;
  216. text-align: center;
  217. border: 1px solid #ebebeb;
  218. }
  219. form {
  220. padding: 20px;
  221. background: #f2f2f2;
  222. }
  223. /* GENERAL ELEMENT TYPE STYLES */
  224. h1 {
  225. font-size: 32px;
  226. }
  227. h2 {
  228. margin-bottom: 8px;
  229. font-size: 22px;
  230. font-weight: bold;
  231. color: #303030;
  232. }
  233. h3 {
  234. margin-bottom: 8px;
  235. font-size: 18px;
  236. font-weight: bold;
  237. color: #d5000d;
  238. }
  239. h4 {
  240. font-size: 16px;
  241. font-weight: bold;
  242. color: #303030;
  243. }
  244. h5 {
  245. font-size: 1em;
  246. color: #303030;
  247. }
  248. h6 {
  249. font-size: .8em;
  250. color: #303030;
  251. }
  252. p {
  253. margin-bottom: 20px;
  254. font-weight: 300;
  255. }
  256. a {
  257. text-decoration: none;
  258. }
  259. p a {
  260. font-weight: 400;
  261. }
  262. blockquote {
  263. padding: 0 0 0 30px;
  264. margin-bottom: 20px;
  265. font-size: 1.6em;
  266. border-left: 10px solid #e9e9e9;
  267. }
  268. ul li {
  269. list-style-position: inside;
  270. list-style: disc;
  271. padding-left: 20px;
  272. }
  273. ol li {
  274. list-style-position: inside;
  275. list-style: decimal;
  276. padding-left: 3px;
  277. }
  278. dl dt {
  279. color: #303030;
  280. }
  281. footer {
  282. padding-top: 20px;
  283. padding-bottom: 30px;
  284. margin-top: 40px;
  285. font-size: 13px;
  286. color: #aaa;
  287. background: transparent url('../images/hr.png') 0 0 no-repeat;
  288. }
  289. footer a {
  290. color: #666;
  291. }
  292. footer a:hover {
  293. color: #444;
  294. }
  295. nav {
  296. position: absolute;
  297. top: 35px;
  298. right: 160px;
  299. }
  300. nav li {
  301. display: inline;
  302. padding-left: 0;
  303. padding-right: 20px;
  304. }
  305. /* MISC */
  306. .clearfix:after {
  307. display: block;
  308. height: 0;
  309. clear: both;
  310. visibility: hidden;
  311. content: '.';
  312. }
  313. .clearfix {display: inline-block;}
  314. * html .clearfix {height: 1%;}
  315. .clearfix {display: block;}
  316. /* #Media Queries
  317. ================================================== */
  318. /* Smaller than standard 960 (devices and browsers) */
  319. @media only screen and (max-width: 959px) { }
  320. /* Tablet Portrait size to standard 960 (devices and browsers) */
  321. @media only screen and (min-width: 768px) and (max-width: 959px) { }
  322. /* All Mobile Sizes (devices and browser) */
  323. @media only screen and (max-width: 767px) {
  324. header {
  325. padding-top: 10px;
  326. padding-bottom: 10px;
  327. }
  328. .inner {
  329. width: 94%;
  330. margin: 0 auto;
  331. }
  332. }
  333. /* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
  334. @media only screen and (min-width: 480px) and (max-width: 767px) { }
  335. /* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
  336. @media only screen and (max-width: 479px) { }