stylesheet.css 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397
  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. .eyebeam img {
  110. margin-top: 7px;
  111. }
  112. #social {
  113. position: absolute;
  114. right: 50px;
  115. top: 30px;
  116. }
  117. #social a {
  118. padding: 0 8px;
  119. }
  120. a.button {
  121. display: block;
  122. float: left;
  123. width: 179px;
  124. padding: 12px 8px 12px 8px;
  125. margin-right: 14px;
  126. font-size: 15px;
  127. font-weight: bold;
  128. line-height: 25px;
  129. color: #303030;
  130. background: #fdfdfd; /* Old browsers */
  131. background: -moz-linear-gradient(top, #fdfdfd 0%, #f2f2f2 100%); /* FF3.6+ */
  132. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fdfdfd), color-stop(100%,#f2f2f2)); /* Chrome,Safari4+ */
  133. background: -webkit-linear-gradient(top, #fdfdfd 0%,#f2f2f2 100%); /* Chrome10+,Safari5.1+ */
  134. background: -o-linear-gradient(top, #fdfdfd 0%,#f2f2f2 100%); /* Opera 11.10+ */
  135. background: -ms-linear-gradient(top, #fdfdfd 0%,#f2f2f2 100%); /* IE10+ */
  136. background: linear-gradient(top, #fdfdfd 0%,#f2f2f2 100%); /* W3C */
  137. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fdfdfd', endColorstr='#f2f2f2',GradientType=0 ); /* IE6-9 */
  138. border-top: solid 1px #cbcbcb;
  139. border-right: solid 1px #b7b7b7;
  140. border-bottom: solid 1px #b3b3b3;
  141. border-left: solid 1px #b7b7b7;
  142. border-radius: 30px;
  143. -webkit-box-shadow: 10px 10px 5px #888;
  144. -moz-box-shadow: 10px 10px 5px #888;
  145. box-shadow: 0px 1px 5px #e8e8e8;
  146. -moz-border-radius: 30px;
  147. -webkit-border-radius: 30px;
  148. }
  149. a.button:hover {
  150. background: #fafafa; /* Old browsers */
  151. background: -moz-linear-gradient(top, #fdfdfd 0%, #f6f6f6 100%); /* FF3.6+ */
  152. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fdfdfd), color-stop(100%,#f6f6f6)); /* Chrome,Safari4+ */
  153. background: -webkit-linear-gradient(top, #fdfdfd 0%,#f6f6f6 100%); /* Chrome10+,Safari5.1+ */
  154. background: -o-linear-gradient(top, #fdfdfd 0%,#f6f6f6 100%); /* Opera 11.10+ */
  155. background: -ms-linear-gradient(top, #fdfdfd 0%,#f6f6f6 100%); /* IE10+ */
  156. background: linear-gradient(top, #fdfdfd 0%,#f6f6f6, 100%); /* W3C */
  157. filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fdfdfd', endColorstr='#f6f6f6',GradientType=0 ); /* IE6-9 */
  158. border-top: solid 1px #b7b7b7;
  159. border-right: solid 1px #b3b3b3;
  160. border-bottom: solid 1px #b3b3b3;
  161. border-left: solid 1px #b3b3b3;
  162. }
  163. a.button span {
  164. display: block;
  165. height: 23px;
  166. padding-left: 50px;
  167. }
  168. code, pre {
  169. margin-bottom: 30px;
  170. font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal;
  171. font-size: 14px;
  172. color: #222;
  173. }
  174. code {
  175. padding: 0 3px;
  176. background-color: #f2f2f2;
  177. border: solid 1px #ddd;
  178. }
  179. pre {
  180. padding: 20px;
  181. overflow: auto;
  182. color: #f2f2f2;
  183. text-shadow: none;
  184. background: #303030;
  185. }
  186. pre code {
  187. padding: 0;
  188. color: #f2f2f2;
  189. background-color: #303030;
  190. border: none;
  191. }
  192. ul, ol, dl {
  193. margin-bottom: 20px;
  194. }
  195. /* COMMON STYLES */
  196. hr {
  197. height: 1px;
  198. padding-bottom: 1em;
  199. margin-top: 1em;
  200. line-height: 1px;
  201. background: transparent url('../images/hr.png') 50% 0 no-repeat;
  202. border: none;
  203. }
  204. strong {
  205. font-weight: bold;
  206. }
  207. em {
  208. font-style: italic;
  209. }
  210. table {
  211. width: 100%;
  212. border: 1px solid #ebebeb;
  213. }
  214. th {
  215. font-weight: 500;
  216. }
  217. td {
  218. font-weight: 300;
  219. text-align: center;
  220. border: 1px solid #ebebeb;
  221. }
  222. form {
  223. padding: 20px;
  224. background: #f2f2f2;
  225. }
  226. /* GENERAL ELEMENT TYPE STYLES */
  227. h1 {
  228. font-size: 32px;
  229. }
  230. h2 {
  231. margin-bottom: 8px;
  232. font-size: 22px;
  233. font-weight: bold;
  234. color: #303030;
  235. }
  236. h3 {
  237. margin-bottom: 8px;
  238. font-size: 18px;
  239. font-weight: bold;
  240. color: #d5000d;
  241. }
  242. h4 {
  243. font-size: 16px;
  244. font-weight: bold;
  245. color: #303030;
  246. }
  247. h5 {
  248. font-size: 1em;
  249. color: #303030;
  250. }
  251. h6 {
  252. font-size: .8em;
  253. color: #303030;
  254. }
  255. p {
  256. margin-bottom: 20px;
  257. font-weight: 300;
  258. }
  259. a {
  260. text-decoration: none;
  261. }
  262. p a {
  263. font-weight: 400;
  264. }
  265. blockquote {
  266. padding: 0 0 0 30px;
  267. margin-bottom: 20px;
  268. font-size: 1.6em;
  269. border-left: 10px solid #e9e9e9;
  270. }
  271. ul li {
  272. list-style: none;
  273. padding-left: 10px;
  274. padding-bottom: 5px;
  275. }
  276. ol li {
  277. list-style-position: inside;
  278. list-style: decimal;
  279. padding-left: 3px;
  280. }
  281. dl dt {
  282. color: #303030;
  283. }
  284. footer {
  285. padding-top: 20px;
  286. padding-bottom: 30px;
  287. margin-top: 40px;
  288. font-size: 13px;
  289. color: #aaa;
  290. background: transparent url('../images/hr.png') 0 0 no-repeat;
  291. }
  292. footer a {
  293. color: #666;
  294. }
  295. footer a:hover {
  296. color: #444;
  297. }
  298. nav {
  299. position: absolute;
  300. top: 35px;
  301. right: 160px;
  302. }
  303. nav li {
  304. display: inline;
  305. padding-left: 0;
  306. padding-right: 20px;
  307. }
  308. /* MISC */
  309. .clearfix:after {
  310. display: block;
  311. height: 0;
  312. clear: both;
  313. visibility: hidden;
  314. content: '.';
  315. }
  316. .clearfix {display: inline-block;}
  317. * html .clearfix {height: 1%;}
  318. .clearfix {display: block;}
  319. /* #Media Queries
  320. ================================================== */
  321. /* Smaller than standard 960 (devices and browsers) */
  322. @media only screen and (max-width: 959px) { }
  323. /* Tablet Portrait size to standard 960 (devices and browsers) */
  324. @media only screen and (min-width: 768px) and (max-width: 959px) { }
  325. /* All Mobile Sizes (devices and browser) */
  326. @media only screen and (max-width: 767px) {
  327. header {
  328. padding-top: 10px;
  329. padding-bottom: 10px;
  330. }
  331. .inner {
  332. width: 94%;
  333. margin: 0 auto;
  334. }
  335. }
  336. /* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
  337. @media only screen and (min-width: 480px) and (max-width: 767px) { }
  338. /* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
  339. @media only screen and (max-width: 479px) { }