-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylespy.css
121 lines (113 loc) · 1.76 KB
/
stylespy.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
*{
margin: 0;
padding: 0;
}
#nav{
width: 100%;
height: 50px;
background: black;
margin: 0 auto;
}
#nav .main-menu ul{
display: none;
}
#nav .main-menu li:hover > ul{
display: block;
}
#nav .main-menu ul .dropdown{
background: black;
border-bottom: 1px solid #494949;
}
#nav ul li{
float: left;
list-style: none;
width: 120px;
height: 50px;
text-align: center;
border-right: 1px solid #494949;
line-height: 50px;
font-size: 15px;
}
#nav ul li a{
color: white;
text-decoration: none;
}
#nav ul li:hover{
height: 50px;
background: #c3acac;
color: black;
}
#nav ul .first{
border-left: 1px solid #494949;
}
#nav .search{
width: 230px;
/*height: 31px*/;
height: 29px;
background: #f1f1f1;
float: right;
margin: 10px 10px 10px 0;
border: 1px solid gray;
}
#nav .search .text{
/*width: 214px*/;
width: 188px;
height: 29px;
border: none;
float: left;
padding-left: 16px;
font-size: 10px;
background: #f1f1f1;
}
#nav .search .bt{
height: 29px;
width: 26px;
float: left;
background: #f1f1f1;
background-image: url(img/search.png);
background-repeat: no-repeat;
background-position: left center;
border: none;
}
#main{
width:100%;
height: 1130px;
margin: 0 auto;
background: #dddbdb;
}
#main .left{
width: 120px;
height: 1130px;
float: left;
background: #5a5959;
}
#main .left ul li{
list-style: none;
width: 120px;
height: 50px;
text-align: center;
line-height: 50px;
font-size: 17px;
}
#main .left ul li a{
color: white;
text-decoration: none;
}
#main .content{
width: 1100px;
height: 1000px;
padding-top: 20px;
margin-left: 150px;
}
#main .content p{
font-size: 25px;
padding-bottom: 10px;
}
#main .content a{
display: inline-block;
height: 40px;
color: #606366;
text-decoration: none;
font-size: 20px;
display: inline-block;
}