-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
69 lines (65 loc) · 1.12 KB
/
Copy pathstyle.css
File metadata and controls
69 lines (65 loc) · 1.12 KB
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
html, body {
font-family: "Arial","Microsoft YaHei","黑体","宋体",sans-serif;
color: #333;
background-color: #ffeef1;
text-align: center;
}
.container {
width: 1180px;
margin: 0 auto;
}
@media screen and (max-width: 1280px) {
.container {
width: 980px;
}
}
.header {
background-color: #fff;
border: 1px #eeeeee solid;
padding-bottom: 40px;
margin-bottom: 40px;
margin-top: 40px;
box-shadow: 0px 40px 70px -30px #563d7c;
}
.title {
font-size: 28px;
}
.subtitle {
font-size: 18px;
color: #999;
}
.item {
margin: 20px;
padding: 20px;
font-size: 24px;
line-height: 2;
vertical-align: middle;
background-color: #fff;
color: #666;
box-shadow: 1px 1px 25px -10px #000;
}
.item:hover {
background-color: #563d7c;
color: #ffeeff;
}
.item > a {
display: block;
color: inherit;
text-decoration: none;
}
.item > a:hover {
color: inherit;
text-decoration: none;
}
.item > a:link {
color: inherit;
text-decoration: none;
}
.item > a:active {
color: inherit;
text-decoration: none;
}
.item > a:visited {
color: inherit;
text-decoration: none;
}