main.css 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. html, body, div, span, p, a, del, em, img, ol, ul, li, fieldset, form, label {
  2. margin: 0;
  3. padding: 0;
  4. border: 0;
  5. font-size: 100%;
  6. font: inherit;
  7. vertical-align: baseline;
  8. }
  9. article, aside, details, figcaption, figure,
  10. footer, header, hgroup, menu, nav, section {
  11. display: block;
  12. }
  13. html, body {
  14. line-height: 1;
  15. min-height:100%;
  16. font-family:Artial, Verdana, sans-serif;
  17. }
  18. body {
  19. background: #eeeeee;
  20. background: -webkit-linear-gradient(top, #eeeeee, #cccccc 100%);
  21. background: -moz-linear-gradient(top, #eeeeee, #cccccc 100%);
  22. background: -o-linear-gradient(top, #eeeeee, #cccccc 100%);
  23. background: -ms-linear-gradient(top, #eeeeee, #cccccc 100%);
  24. background: linear-gradient(top, #eeeeee, #cccccc 100%);
  25. background-attachment:fixed;
  26. }
  27. ol, ul {
  28. list-style: none;
  29. }
  30. p {
  31. margin:1em 0;
  32. line-height:1.1em;
  33. }
  34. q {
  35. font-style:italic;
  36. color:#333;
  37. }
  38. h1 {
  39. font-size:2.91em;
  40. margin:0;
  41. }
  42. h1 > small {
  43. text-align:right;
  44. display:inline-block;
  45. font-size:.71em;
  46. text-indent:15em;
  47. color:#444;
  48. }
  49. h2 {
  50. color:inherit;
  51. font-size:1.91em;
  52. margin:2em 0 1em 0;
  53. }
  54. h2:first-child {margin-top:0;}
  55. h3 {
  56. color:#333;
  57. font-size:1.41em;
  58. margin:1em 0;
  59. }
  60. h4 {
  61. color:#444;
  62. font-size:1.11em;
  63. margin:1em 0;
  64. }
  65. #progress {
  66. height:2%;
  67. background:#444;
  68. bottom:0;
  69. z-index:200;
  70. }
  71. #scrollbar {
  72. position:fixed;
  73. right:2px;
  74. height:50px;
  75. width:6px;
  76. background:#444;
  77. background:rgba(0,0,0,0.6);
  78. border:1px solid rgba(255,255,255,0.6);
  79. z-index:300;
  80. border-radius:3px;
  81. }
  82. .skrollr-desktop #scrollbar {display:none;}
  83. #bg1, #bg2, #bg3 {
  84. z-index:50;
  85. top:0;
  86. left:0;
  87. width:100%;
  88. height:100%;
  89. background:url(images/bubbles.png) repeat 0 0;
  90. }
  91. #bg2 {
  92. z-index:49;
  93. background-image:url(images/bubbles2.png);
  94. }
  95. #bg3 {
  96. z-index:48;
  97. background-image:url(images/bubbles3.png);
  98. }
  99. #intro {
  100. width:80%;
  101. left:50%;
  102. top:1em;
  103. margin-left:-40%;
  104. padding:2em;
  105. background:#fff;
  106. text-align:center;
  107. border-radius:1em;
  108. -webkit-transform-origin:0 0;
  109. -moz-transform-origin:0 0;
  110. -ms-transform-origin:0 0;
  111. -o-transform-origin:0 0;
  112. transform-origin:0 0;
  113. -webkit-box-sizing: border-box;
  114. -moz-box-sizing: border-box;
  115. box-sizing: border-box;
  116. }
  117. #intro .arrows {
  118. font-size:2em;
  119. color:#09f;
  120. }
  121. #transform {
  122. width:70%;
  123. left:50%;
  124. top:20%;
  125. margin-left:-35%;
  126. text-align:center;
  127. font-size:150%;
  128. .transform-origin(50%, 50%);
  129. }
  130. #properties {
  131. width:100%;
  132. height:100%;
  133. padding-top:10%;
  134. text-align:center;
  135. -webkit-box-sizing: border-box;
  136. -moz-box-sizing: border-box;
  137. box-sizing: border-box;
  138. }
  139. #easing_wrapper {
  140. width:100%;
  141. height:100%;
  142. }
  143. #easing {
  144. top:10%;
  145. width:50%;
  146. z-index:101;
  147. }
  148. .drop {
  149. background:#09f;
  150. font-weight:bold;
  151. padding:1em;
  152. }
  153. #download {
  154. width:80%;
  155. left:10%;
  156. height:80%;
  157. padding:3em;
  158. border:0 solid #222;
  159. -webkit-box-sizing: border-box;
  160. -moz-box-sizing: border-box;
  161. box-sizing: border-box;
  162. }
  163. .twitter-share-button, .twitter-follow-button {
  164. vertical-align:middle;
  165. }