-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
65 lines (54 loc) · 988 Bytes
/
style.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
body,header{
margin: 0;
padding: 0;
/*background-color: beige;*/
background-color: #F9F5F0;
}
h1,h2,h3,h4,h5{
margin-left: 10px;
}
header{
width: 100%;
height: 40px;
background-color: #70ACB1;
}
span a{
display: inline-block;
height: 40px;
width:120px;
text-align: center;
float: right;
color:white;
font-size: 20px;
line-height: 40px;
}
span a:hover{
/*color: #C6F1E7;*/
color:white;
/*background-color: #C6F1E7;*/
opacity: 0.6;
}
span a:visited,link{
color:white;
}
a{
font-family: 微软雅黑,"Helvetica Neue", Helvetica, Arial, sans-serif;
text-decoration: none;
font-weight: 500;
}
a:visited{
color:black;
}
a:link{
color:black;
}
/*********************/
@media screen and (min-width: 1000px){
#container{
display: flex;
flex-wrap: wrap;
justify-content: space-around;
align-items: flex-start;
align-self: stretch;
}
}