-
Notifications
You must be signed in to change notification settings - Fork 128
Expand file tree
/
Copy pathfooter.css
More file actions
119 lines (103 loc) · 1.94 KB
/
footer.css
File metadata and controls
119 lines (103 loc) · 1.94 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
108
109
110
111
112
113
114
115
116
117
118
119
.site-footer {
background: #111111;
border-top: 1px solid var(--border-color);
margin-top: 80px;
padding-top: 50px;
width: 100%;
display: block;
padding-bottom: 40px;
font-family: "Times New Roman", Times, serif;
}
/* MAIN CONTAINER */
.footer-container {
max-width: 1400px;
margin: auto;
padding: 0 40px 50px;
display: grid;
grid-template-columns: 2.5fr 1fr 1fr;
gap: 80px;
}
/* Prevent footer from inheriting section centering behavior */
footer.site-footer {
text-align: left;
}
/* Footer columns layout fix */
.footer-top {
display: grid;
grid-template-columns: 1.5fr 1fr 1fr 1fr;
gap: 40px;
width: 100%;
}
/* BRAND */
.footer-brand {
max-width: 420px;
}
.footer-logo {
display: flex;
align-items: center;
gap: 10px;
font-size: 20px;
font-weight: 600;
color: var(--primary-gold);
margin-bottom: 12px;
}
.footer-description {
color: var(--text-secondary);
line-height: 1.6;
margin-bottom: 15px;
}
/* COLUMNS */
.footer-column h4 {
margin-bottom: 12px;
color: var(--text-main);
}
.footer-column a {
display: block;
margin-bottom: 8px;
color: var(--text-secondary);
text-decoration: none;
}
.footer-column a:hover {
color: var(--primary-gold);
}
/* BADGES */
.footer-badges {
margin-top: 10px;
}
.footer-pill {
display: inline-block;
padding: 4px 10px;
margin-right: 8px;
margin-bottom: 6px;
border-radius: 20px;
border: 1px solid var(--border-color);
font-size: 12px;
color: var(--text-secondary);
}
/* BOTTOM BAR */
.footer-bottom {
border-top: 1px solid var(--border-color);
padding: 15px 20px;
text-align: center;
color: var(--text-secondary);
}
.footer-bottom a {
color: var(--primary-gold);
text-decoration: none;
}
.footer-dot {
margin: 0 8px;
}
/* Responsive */
@media (max-width: 900px) {
.footer-top {
grid-template-columns: 1fr;
}
}
/* MOBILE */
@media (max-width: 768px) {
.footer-container {
grid-template-columns: 1fr;
gap: 30px;
}
}