1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
| * {
| padding: 0;
| margin: 0;
| }
|
| *, *:before, *:after {
| -webkit-box-sizing: border-box;
| -moz-box-sizing: border-box;
| box-sizing: border-box;
| }
| body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td,hr,button,article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{
| margin: 0;
| padding: 0;
| }
|
| article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
| display: block;
| }
|
| audio, canvas, video {
| display: inline-block;
| }
|
| img {
| border: none;
| vertical-align: middle;
| }
|
| ul, ol {
| /*list-style: none;*/
| }
|
| .clear {
| *zoom: 1; /* for IE 6/7 */
| }
|
| .clear:before, .clear:after {
| height: 0;
| content: "";
| font-size: 0;
| display: table;
| line-height: 0; /* for Opera */
| visibility: hidden;
| }
|
| .clear:after {
| clear: both;
| }
|
| body {
| font-size: 14px;
| color: #666;
| font-family: "Microsoft YaHei", "微软雅黑", Helvetica, Tahoma, STXihei, "华文细黑", STHeiti, "Helvetica Neue", Helvetica, Tahoma, "Droid Sans", "wenquanyi micro hei", FreeSans, Arimo, Arial, SimSun, "宋体", Heiti, "黑体", sans-serif;
| background: #fff;
| text-align: center;
| }
|
| #layout {
| text-align: left;
| }
|
| #layout > header, .btns {
| padding: 15px 0;
| width: 90%;
| margin: 0 auto;
| }
|
| .btns {
| padding-top: 0;
| }
|
| .btns button {
| padding: 2px 8px;
| }
|
| #layout > header > h1 {
| font-size: 20px;
| margin-bottom: 10px;
| }
|
| .btns button, .btn {
| padding: 8px 10px;
| background: #fff;
| border: 1px solid #ddd;
| -webkit-border-radius: 3px;
| border-radius: 3px;
| cursor: pointer;
| -webkit-transition: background 300ms ease-out;
| transition: background 300ms ease-out;
| }
|
| .btns button:hover, .btn:hover {
| background: #f6f6f6;
| }
|
|