style.css 5.0 KB

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