-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
121 lines (105 loc) · 1.94 KB
/
index.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/*导航栏*/
#nav-left {
font-size: 13px;
float: right;
font: 13px 'PingFang SC', Arial, 'Microsoft YaHei', sans-serif;
position: absolute;
top: 22px;
left: 24px;
}
#nav-left a {
color: black;
margin-right: 15px;
text-decoration: none;
}
#nav-left a:hover {
color: #0000FF;
}
#nav-right {
font-size: 13px;
float: right;
font: 13px 'PingFang SC', Arial, 'Microsoft YaHei', sans-serif;
position: absolute;
top: 22px;
right: 24px;
}
#nav-right a {
color: black;
margin-right: 15px;
text-decoration: none;
}
#nav-right a:hover {
color: #0000FF;
}
/*输入栏*/
#search-box,
#search-wrapper {
position: relative;
padding: 10px;
}
#search-wrapper {
width: 650px;
margin: auto;
margin-top: 150px;
}
#search-box {
width: 80%;
border: 1px solid #ccc;
outline: 0;
border-radius: 10px 0px 0px 10px;
}
#search-box:focus {
box-shadow: 0 0 15px 5px #b0e0ee;
border: 1px solid #4e6ef2;
}
/*搜索按钮和输入栏*/
button {
width: 100px;
height: 36px;
color: white;
margin-left: -4px;
margin-top: 10px;
border: none;
background-color: #4e6ef2;
border-radius: 0px 10px 10px 0px;
}
button:hover {
outline: none;
background-color: #4662d9;
}
input {
border: 1px solid #4e6ef2;
width: 500px;
height: 36px;
margin-right: -1px;
}
/*关于部分*/
#about {
font: 13px 'PingFang SC', Arial, 'Microsoft YaHei', sans-serif;
font-size: 13px;
padding-top: 200px;
position: absolute;
bottom: 80px;
left: 50%;
margin-left: -165.34px;
}
#about a {
color: blue;
margin-left: 10px;
margin-right: 10px;
text-decoration: none;
}
/*版权部份*/
#copyright {
color: gray;
position: absolute;
bottom: 40px;
left: 50%;
margin-left: -242.195px;
}
#copyright a {
color: gray;
margin-right: 5px;
padding-bottom: 100px;
text-decoration: none;
}