style.css 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308
  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. margin: 0;
  19. padding: 0;
  20. border: 0;
  21. font-size: 100%;
  22. font: inherit;
  23. vertical-align: baseline;
  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-collapse: collapse;
  46. border-spacing: 0;
  47. }
  48. body {
  49. background: #FAF8F1 url(../images/bg.png) repeat;
  50. font-family: Georgia, "Times New Roman", serif;
  51. font-size: 18px;
  52. color: #333;
  53. }
  54. .clear {clear: both;}
  55. a {
  56. color: #d27324;
  57. text-decoration: none;
  58. }
  59. a:hover {
  60. text-decoration: underline;
  61. }
  62. p {
  63. margin-bottom: 15px;
  64. }
  65. pre {
  66. font-family: monospace;
  67. margin: 15px 0;
  68. padding: 10px;
  69. background: white;
  70. border: 1px dashed #aaa;
  71. }
  72. h1, h2 {
  73. color: #222;
  74. font-family: Georgia;
  75. font-size: 40px;
  76. margin: 30px 0;
  77. }
  78. h2 {
  79. font-size: 32px;
  80. border-bottom: 1px solid #aaa;
  81. padding-bottom: 10px;
  82. }
  83. h2 span.info {
  84. background: none;
  85. }
  86. h3 {
  87. font-size: 22px;
  88. color: #666;
  89. margin: 10px 0;
  90. margin-top: 40px;
  91. }
  92. #header {
  93. width: 900px;
  94. text-align: center;
  95. margin: 0 auto;
  96. padding: 80px;
  97. padding-bottom: 60px;
  98. }
  99. #header .logo {
  100. margin-bottom: -30px;
  101. margin-right: 20px;
  102. }
  103. #header #links {
  104. display: none;
  105. position: absolute;
  106. top: 100px;
  107. right: 30px;
  108. }
  109. #social {
  110. position: absolute;
  111. top: 60px;
  112. right: 10px;
  113. }
  114. #links a {
  115. opacity: 0.6;
  116. transition: all .5s;
  117. -webkit-transition: all .5s;
  118. -moz-transition: all .5s;
  119. -o-transition: all .5s;
  120. -ms-transition: all .5s;
  121. }
  122. #links a:hover {
  123. opacity: 1;
  124. }
  125. #links a img {
  126. height: 80px;
  127. }
  128. #header .main {
  129. display: inline-block;
  130. text-align: left;
  131. }
  132. #header h1 {
  133. text-align: left;
  134. font-family: Georgia, serif;
  135. font-size: 80px;
  136. margin: 10px 0;
  137. color: #000;
  138. }
  139. #header h2 {
  140. text-align: left;
  141. font-family: Arapey;
  142. font-size: 30px;
  143. font-style: italic;
  144. color: #333;
  145. margin: 10px 0;
  146. border-bottom: 0 none;
  147. }
  148. #tabs {
  149. position: fixed;
  150. top: 0;
  151. left: 0;
  152. right: 0;
  153. list-style: none;
  154. text-align: center;
  155. padding: 5px;
  156. background: #333;
  157. font-size: 13px;
  158. box-shadow: 0 -20px 50px 20px rgba(0,0,0,0.6);
  159. font-family: "Open Sans", "Helvetica Neue", Arial, sans;
  160. text-transform: uppercase;
  161. letter-spacing: .1em;
  162. }
  163. #tabs li {
  164. display: inline;
  165. }
  166. #tabs li a {
  167. padding: 5px 10px;
  168. display: inline-block;
  169. text-decoration: none;
  170. border-radius: 20px;
  171. color: #d27324;
  172. border: 1px solid transparent;
  173. }
  174. #tabs li a:hover {
  175. color: rgb(255, 177, 111);
  176. }
  177. .teaser {
  178. background: white;
  179. border-top: 3px solid #999;
  180. border-bottom: 3px solid #999;
  181. }
  182. .teaser .main {
  183. width: 900px;
  184. margin: 0 auto;
  185. }
  186. .teaser .main h2 {
  187. border: 0 none;
  188. padding-bottom: 0;
  189. }
  190. .teaser p {
  191. font-family: Georgia, serif;
  192. line-height: 1.5em;
  193. font-size: 16px;
  194. color: #666;
  195. margin: 10px 0;
  196. }
  197. .teaser p.try {
  198. text-align: center;
  199. margin-top: 20px;
  200. }
  201. .teaser p.try button {
  202. box-shadow: rgba(255, 255, 255, 0.2) 0px 1px 0px 0px inset, rgba(0, 0, 0, 0.0470588) 0px 1px 2px 0px;
  203. border: 1px solid #333;
  204. padding: 10px 20px;
  205. margin-bottom: 30px;
  206. border-radius: 8px;
  207. font-size: 22px;
  208. background-color: rgb(81, 163, 81);
  209. background-image: -webkit-linear-gradient(top, rgb(98, 196, 98), rgb(81, 163, 81));
  210. color: #fff;
  211. text-shadow: rgba(0, 0, 0, 0.247059) 0px -1px 0px;
  212. cursor: pointer;
  213. }
  214. .teaser p.try button:hover {
  215. background-image: none;
  216. }
  217. .column {
  218. width: 400px;
  219. float: left;
  220. margin-right: 20px;
  221. }
  222. span.info {
  223. font-style: italic;
  224. background: lightyellow;
  225. margin: 10px;
  226. display: inline-block;
  227. }
  228. .box {
  229. width: 900px;
  230. margin: 50px auto;
  231. line-height: 1.5em;
  232. }
  233. .box dt {
  234. float: left;
  235. width: 300px;
  236. font-style: italic;
  237. font-family: Georgia, serif;
  238. font-size: 18px;
  239. }
  240. .box dt:before {
  241. content: "★";
  242. font-style: normal;
  243. padding-right: 10px;
  244. font-size: 12px;
  245. }
  246. .box dd {
  247. display: inline-block;
  248. width: 500px;
  249. margin-bottom: 30px;
  250. }
  251. #footer {
  252. font-size: 12px;
  253. text-align: center;
  254. }
  255. #footer .main {
  256. width: 900px;
  257. margin: 0 auto;
  258. }
  259. .box li {}
  260. .box li:before {
  261. content: "★";
  262. font-style: normal;
  263. padding-right: 10px;
  264. font-size: 12px;
  265. }