-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathmain.css
More file actions
90 lines (75 loc) · 1.23 KB
/
main.css
File metadata and controls
90 lines (75 loc) · 1.23 KB
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
body{
background-color: #999;
font-family: Arial,"微軟正黑體";
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
}
#header {
margin: 0 auto;
width:700px;
}
#header h1 {
display: block;
width: 700px;
height: 20px;
text-align: center;
}
#nav {
width: :700px;
margin: 0 auto;
overflow: hidden;
text-align: center;
}
#nav ul {
display: inline-block;
margin: 10 auto;
padding: 0;
list-style: none;
}
#nav li {
float: left;
list-style-type: none;
margin-right: 20px
}
#footer {
margin: 0 auto;
}
#footer h2 {
font-size: 15px;
text-align: center;
}
.btn {
text-transform: uppercase;
padding: 10px 40px;
text-decoration: none;
color: #fff;
letter-spacing: 1px;
display: inline-block;
}
.btn--primary {
background: #000000 ;
transition: all .3s;
}
.btn--primary:hover {
background: #2b3033;
}
.btn--round {
border-radius: 20px;
}
.btn--checked {
background: #b03a2e ;
transition: all .3s;
}
.btn--checked:hover {
background: #C93E2F;
}
canvas {
padding-left: 0;
padding-right: 0;
margin-left: auto;
margin-right: auto;
display: block;
width: 700;
}