forked from Darylxyx/JavaScript-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
84 lines (75 loc) · 1.24 KB
/
style.css
File metadata and controls
84 lines (75 loc) · 1.24 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
html, body, div, h1, h2, h3, h4, h5, h6, p, span, img {
margin: 0;
padding: 0;
}
html, body {
font-family: '微软雅黑';
font-size: 14px;
}
.container {
width: 100%;
max-width: 500px;
margin: 0 auto;
position: relative;
overflow: hidden;
background-color: #f7f7f7;
}
.banner {
width: 100%;
height: 0;
padding-bottom: 56.2%;
margin-bottom: 8px;
box-shadow: 0 1px 5px rgba(0,0,0,0.5);
overflow: hidden;
position: relative;
cursor: pointer;
text-align: center;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
background-image: url(../resource/images/banner.jpg);
}
.load-more {
text-align: center;
padding: 10px 0 15px 0;
}
.guide {
width: 100%;
position: absolute;
font-size: 16px;
color: #f1f1f1;
bottom: 20px;
-webkit-animation: fadeInOut ease-in-out 3s infinite;
-moz-animation: fadeInOut ease-in-out 3s infinite;
animation: fadeInOut ease-in-out 3s infinite;
}
@-webkit-keyframes fadeInOut {
0% {
opacity: 0;
} 50% {
opacity: 1;
} 100% {
opacity: 0;
}
}
@-moz-keyframes fadeInOut {
0% {
opacity: 0;
} 50% {
opacity: 1;
} 100% {
opacity: 0;
}
}
@keyframes fadeInOut {
0% {
opacity: 0;
} 50% {
opacity: 1;
} 100% {
opacity: 0;
}
}
.content {
width: 100%;
}