-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path界面优化.css
78 lines (78 loc) · 1.46 KB
/
界面优化.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
body {
background-color: #FFC600;
text-align: center;
color: #FFC600;
border-radius: 30px;
}
img {
border-radius: 30px;
}
h1 {
color: #E80505;
text-align: center;
}
h2 {
color: #DE4313;
text-align: center;
}
h3 {
color: #FEC163;
text-align: center;
}
p {
color: #FDD819;
text-align: center;
}
.help{
background-color: #FA742B;
border-radius: 30px;
text-align: center;
}
ol {
color: #FFC600;
}
button:hover {
color: #FA742B;
background-color: #FFC600;
}
a{
display:block;
color:orange;
text-decoration: none;
width: 80px;
line-height: 20px;
}
audio {
text-align: center;
}
/*动画-start*/
.animated {
animation-duration: 1.5s !important;
-webkit-animation-duration: 1.5s !important;
animation-fill-mode: both !important;
-webkit-animation-fill-mode: both !important;
}
.animated02 {
animation-duration: 1s !important;
-webkit-animation-duration: 1s !important;
animation-fill-mode: both !important;
-webkit-animation-fill-mode: both !important;
}
/*逐渐显示*/
.toShow {
position: fixed;
top: 0;
border-radius: 30px;
height: 60px;
background-color: #ff9f5a;
width: 100%;
left: 50%;
transform: translate(-50%, 0);
animation: toShow 1.5s 0.5s;
animation-fill-mode: both !important;
-webkit-animation-fill-mode: both !important;
}
@keyframes toShow {
0% {opacity: 0;}
100% {opacity: 1;}
}