Permalink
Please sign in to comment.
Showing
with
212 additions
and 20 deletions.
- +60 −0 css/base.css
- +23 −0 css/index.css
- +129 −20 index.html
60
css/base.css
@@ -0,0 +1,60 @@ | ||
+/* CSS Reset */ | ||
+.mb5{ | ||
+ margin-bottom:5px; | ||
+} | ||
+body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p, | ||
+blockquote,th,td { | ||
+ margin:0; | ||
+ padding:0; | ||
+ font-size:12px; | ||
+ font-family: 'Microsoft Yahei', Verdana, Simsun, 'Segoe UI', 'Segoe UI Web Regular', 'Segoe UI Symbol', 'Helvetica Neue', 'BBAlpha Sans', 'S60 Sans', Arial, sans-serif; | ||
+} | ||
+table { | ||
+ border-collapse:collapse; | ||
+ border-spacing:0; | ||
+} | ||
+fieldset,img { | ||
+ border:0 | ||
+} | ||
+address,caption,cite,code,dfn,em,strong,th,var { | ||
+ font-style:normal; | ||
+ font-weight:normal; | ||
+} | ||
+ol,ul { | ||
+ list-style:none; | ||
+} | ||
+caption,th { | ||
+ text-align:left; | ||
+} | ||
+h1,h2,h3,h4,h5,h6 { | ||
+ font-size:100%;font-weight:normal; | ||
+} | ||
+q:before,q:after { | ||
+ content:''; | ||
+} | ||
+abbr,acronym { | ||
+ border:0; | ||
+} | ||
+a { | ||
+ color: #ffffff; | ||
+ text-decoration: none; | ||
+} | ||
+a:visited { | ||
+ color: #ffffff; | ||
+} | ||
+ | ||
+.fl { | ||
+ float: left; | ||
+} | ||
+.fr { | ||
+ float: right; | ||
+} | ||
+.clear-fix { | ||
+ clear: both; | ||
+} | ||
+.show { | ||
+ display: default; | ||
+} | ||
+.hide { | ||
+ display: none; | ||
+} |
@@ -0,0 +1,23 @@ | ||
+/* -----------------------------animation style --------------------------*/ | ||
+#animation-stage { | ||
+ position: relative; | ||
+/* top: 70px;*/ | ||
+ left: 10px; | ||
+ border: 1px solid #000; | ||
+ width: 360px; | ||
+ height: 300px; | ||
+ margin: auto; | ||
+} | ||
+.stripe { | ||
+ margin: 0px; | ||
+ position: absolute; | ||
+ bottom: 0px; | ||
+ display: inline-block; | ||
+ background: #000; | ||
+ width: 7px; | ||
+ height: 100px; | ||
+ border: 1px solid white; | ||
+} | ||
+.current { | ||
+ background: red; | ||
+} |
149
index.html
0 comments on commit
59b3248