-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.css
63 lines (56 loc) · 1012 Bytes
/
main.css
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
body {
font-family: "Microsoft YaHei", Arial, Helvetica, sans-serif;
}
main {
width: 455px;
height: 450px;
background: #000;
margin: 60px auto;
padding: 5px 0 0 6px;
}
main button {
margin: 5px;
width: 140px;
height: 138px;
float: left;
font-size: 80px;
font-family: "Microsoft YaHei", Arial;
}
.mask {
position: fixed;
top: 0;
left: 0;
bottom: 0;
right: 0;
background: rgba(30, 30, 30, 0.6);
}
.select {
width: 600px;
height: 250px;
background: #000;
padding: 10px;
margin: 130px auto;
border-radius: 20px;
color: #fff;
}
@media only screen and (max-width: 50em) {
.select {
width: 70%;
}
}
div input {
float: left;
margin-top: 30px;
margin-left: 30%;
border-radius: 5px;
width: 40px;
height: 40px;
font-size: 30px;
font-family: "Microsoft YaHei", Arial;
}
p {
text-align: center;
width: 300px;
margin: 20px auto 40px;
line-height: 40px;
}