-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathfooter.css
More file actions
107 lines (92 loc) · 1.87 KB
/
Copy pathfooter.css
File metadata and controls
107 lines (92 loc) · 1.87 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/**
* Footer Styles
* Owner: Scenario 7 - Footer
*
* Styles for:
* - Footer layout and spacing
* - Copyright and license text
* - Footer link styling
* - Visual separation from main content
*/
/* Footer container with distinct visual separation */
.site-footer {
background-color: var(--color-card-bg, #f9fafb);
border-top: 1px solid var(--color-border, #e5e7eb);
padding: var(--spacing-xl) 0;
margin-top: auto;
}
/* Footer content layout */
.footer-content {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
gap: var(--spacing-md);
}
/* Copyright text styling */
.footer-copyright p {
font-size: 0.875rem;
color: var(--color-muted, #6b7280);
margin: 0;
}
.footer-copyright-symbol {
margin-right: 0.25rem;
}
/* License text styling */
.footer-license p {
font-size: 0.875rem;
color: var(--color-muted, #6b7280);
margin: 0;
}
.footer-license a {
color: var(--color-primary, #2563eb);
text-decoration: none;
}
.footer-license a:hover {
text-decoration: underline;
}
/* Footer links navigation */
.footer-links {
flex-shrink: 0;
}
.footer-link-list {
display: flex;
list-style: none;
gap: var(--spacing-lg);
margin: 0;
padding: 0;
}
.footer-link-list li {
display: flex;
align-items: center;
}
.footer-link-list a {
display: inline-flex;
align-items: center;
gap: 0.375rem;
font-size: 0.875rem;
color: var(--color-muted, #6b7280);
text-decoration: none;
transition: color 0.2s ease;
}
.footer-link-list a:hover {
color: var(--color-primary, #2563eb);
text-decoration: none;
}
.footer-link-icon {
width: 1rem;
height: 1rem;
flex-shrink: 0;
}
/* Responsive adjustments */
@media (max-width: 768px) {
.footer-content {
flex-direction: column;
text-align: center;
gap: var(--spacing-sm);
}
.footer-link-list {
justify-content: center;
flex-wrap: wrap;
}
}