87 lines
2.1 KiB
CSS
87 lines
2.1 KiB
CSS
body>footer {
|
|
width: 90%;
|
|
z-index: 10;
|
|
max-width: 1200px;
|
|
margin: 2rem auto 0 auto;
|
|
padding: 2rem;
|
|
background: linear-gradient(to bottom, var(--surface-charcoal), var(--surface-onyx));
|
|
border-radius: 2rem 2rem 0 0;
|
|
box-shadow: 0 8px 20px var(--overlay-black-60);
|
|
text-align: center;
|
|
color: var(--text-dim);
|
|
border-top: 2px solid var(--bg-white-20);
|
|
|
|
p {
|
|
font-size: 0.85rem;
|
|
color: var(--text-muted2);
|
|
margin-top: 1rem;
|
|
text-align: center;
|
|
|
|
a {
|
|
color: var(--link-blue);
|
|
|
|
&:hover {
|
|
color: var(--text-white);
|
|
}
|
|
}
|
|
}
|
|
|
|
nav {
|
|
margin-bottom: 1.5rem;
|
|
|
|
a {
|
|
color: var(--link-blue);
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
transition: color 0.3s ease-in-out, background 0.2s;
|
|
white-space: nowrap;
|
|
|
|
&:hover {
|
|
color: var(--text-white);
|
|
background: var(--accent-blue-alpha-20);
|
|
border-radius: 3px;
|
|
}
|
|
}
|
|
|
|
ul {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
gap: 2rem;
|
|
list-style: none;
|
|
padding-left: 0;
|
|
|
|
li {
|
|
position: relative;
|
|
text-align: center;
|
|
flex: 1 1 0px;
|
|
flex-basis: 0;
|
|
|
|
ul {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin-top: 0.5rem;
|
|
padding-top: 0.5rem;
|
|
border-top: 2px solid var(--bg-white-15);
|
|
list-style: none;
|
|
padding-left: 0;
|
|
gap: 0.3rem;
|
|
|
|
li {
|
|
padding: 0.2rem 0;
|
|
font-size: 0.9rem;
|
|
color: var(--footer-text-muted);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
a,
|
|
span {
|
|
display: block;
|
|
padding: 0.5rem 1rem;
|
|
border-radius: 4px;
|
|
}
|
|
}
|
|
}
|