-
Notifications
You must be signed in to change notification settings - Fork 2
/
styles.css
77 lines (67 loc) · 1.25 KB
/
styles.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
* {
margin: 0;
padding: 0;
outline: none;
}
body {
color: #ffffff;
font-size: 14px;
font-family: tahoma, "Microsoft YaHei", 'PingFang SC', 'Helvetica Neue', 'Helvetica', 'STHeitiSC-Light', 'Arial', sans-serif;
}
canvas {
display: block;
margin: 0;
width:100%;
height:100%;
position: fixed;
left: 0;
right: 0;
top:0;
bottom:0;
z-index: -1;
}
.box_S {
box-sizing: border-box;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
}
.content {
padding-top:10%;
width: 100%;
margin: 0;
}
.input_wrap_box {
background: #0f1034;
text-align: center;
display: block;
margin: 0 auto;
border-radius: 25px;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
width: 770px;
height: 50px;
line-height: 50px;
margin-top: 20px;
position: relative;
}
.input_wrap_box #sercHead {
background: #0f1034;
width: 100%;
display: block;
text-align: center;
line-height: 48px;
border: 1px solid #1d2556;
border-radius: 25px;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
color: #ffffff;
}
.options {
width: 100%;
text-align: center;
margin-top:20px;
}
.footer {
width: 100%;
margin-top: 50px;
}