-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.css
102 lines (84 loc) · 1.57 KB
/
footer.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
footer{
background-color: #1F1F1F;
width: 100vw;
position: absolute;
color: white;
text-decoration: none;
display: flex;
flex-direction:column;
flex-wrap: wrap;
letter-spacing: 2px;
line-height: 2rem;
}
footer ul{
margin: 50px;
list-style: none;
font-size: 16px;
font-weight: 400;
}
footer h3{
font-size: 18px;
font-weight: 500;
}
footer a{
text-decoration: none;
color: #C7C7C7;
}
footer a:hover{
color: gainsboro;
}
.ft0{
display: flex;
flex-direction: row;
justify-content: flex-start;
align-items: center;
flex-wrap: wrap;
margin: 30px;
}
.ft1{
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-evenly;
}
.fyw{
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: center;
}
#Copyright{
display: flex;
flex-wrap: wrap;
justify-content: center;
font-size: 14px;
text-align: center;
color: #C7C7C7;
margin: 10px 0;
}
.weixin1 {
display: block;
}
.weixin2 {
background-image: url("https://upload-bbs.miyoushe.com/upload/2024/11/12/198629752/87dc64f71073dd02c4254ad69b5929e2_2056224211245865412.png");
background-repeat: no-repeat;
background-size: cover;
width: 100px;
height: 100px;
position: absolute;
opacity: 0;
display: none;
}
/* When .div1 is hovered, show .div2 */
.weixin1:hover + .weixin2 {
display: block;
animation: ru 1s ease forwards;
}
@keyframes ru{
from {
opacity: 0;
}
to {
opacity: 1;
}
}