-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFooter.astro
More file actions
48 lines (42 loc) · 936 Bytes
/
Footer.astro
File metadata and controls
48 lines (42 loc) · 936 Bytes
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
<footer class="site-footer">
<div class="footer-content">
<span>© YatCC @ Sun Yat-sen University</span>
<span class="divider" aria-hidden="true">|</span>
<span>粤ICP备2025390388号</span>
<span class="divider" aria-hidden="true">|</span>
<span>arcSYSu Lab</span>
</div>
</footer>
<style>
.site-footer {
width: 100%;
padding: 18px 24px 28px;
box-sizing: border-box;
}
.footer-content {
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
gap: 0.35rem 0.75rem;
color: var(--sub-text-color);
font-size: 0.92rem;
line-height: 1.6;
text-align: center;
}
.divider {
color: var(--border-color);
}
@media (max-width: 640px) {
.site-footer {
padding: 16px 16px 24px;
}
.divider {
display: none;
}
.footer-content {
flex-direction: column;
gap: 0.15rem;
}
}
</style>