-
Notifications
You must be signed in to change notification settings - Fork 0
/
default.css
105 lines (79 loc) · 1.22 KB
/
default.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
*{
text-decoration: none;
}
body{
margin: 0;
}
.header{
height: 50px;
width: 100%;
top: 0;
left: 0;
position: fixed;
background: #40E0D0;
}
.banner-page{
background: url(./river.jpg);
height: 1000px;
background-size: cover;
margin-top: 0;
padding-top: 0;
}
.logo{
display: block;
width: 60px;
height: 60px;
border-radius: 50%;
background: #00C5CD;
position: fixed;
left: 50%;
margin-left: -30px;
top: 10px;
box-shadow: 0 5px 5px rgba(0,0,0,.4 );
/*font*/
line-height: 50px;
text-align: center;
color: #fff;
font-size: 50px;
font-family: "Microsoft Yahei";
font-weight: normal;
}
.tagline{
padding-top: 150px;
color: #fff;
font-family: "Microsoft Yahei";
font-size: 30px;
text-align: center;
font-weight: normal;
}
.nav{
margin: 0;
padding: 0;
float: left;
margin-top: 13px;
}
li{
list-style: none;
float: left;
margin-right: 8px;
}
li a{
color: #fff;
font-size: 16px;
font-family: "Microsoft Yahei";
font-weight: bold;
padding: 8px 5px;
border: 1px solid transparent;
border-radius: 7px;
}
li.current a{
background: rgba(58,95,205,.6);
border: 1px solid transparent;
}
li a:hover{
border: 1px solid rgba(58,95,205,.6);
}
.container{
width: 960px;
margin: 0 auto;
}