86 lines
2.0 KiB
CSS
86 lines
2.0 KiB
CSS
body>footer {
|
|
width: 90%;
|
|
z-index: 10;
|
|
max-width: 1200px;
|
|
margin: 2rem auto 0 auto;
|
|
padding: 2rem;
|
|
background: linear-gradient(to bottom, rgba(15, 15, 15, 1), rgba(1, 1, 1, 1));
|
|
border-radius: 2rem 2rem 0 0;
|
|
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
|
|
text-align: center;
|
|
color: #d0d0d0;
|
|
border-top: 2px solid rgba(255, 255, 255, 0.2);
|
|
|
|
p {
|
|
font-size: 0.85rem;
|
|
color: #999;
|
|
margin-top: 1rem;
|
|
text-align: center;
|
|
|
|
a {
|
|
color: #8ab4f8;
|
|
|
|
&:hover {
|
|
color: #fff;
|
|
}
|
|
}
|
|
}
|
|
|
|
nav {
|
|
margin-bottom: 1.5rem;
|
|
|
|
a {
|
|
color: #8ab4f8;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
transition: color 0.3s ease-in-out, background 0.2s;
|
|
white-space: nowrap;
|
|
|
|
&:hover {
|
|
color: #fff;
|
|
background: rgba(138, 180, 248, 0.2);
|
|
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 rgba(255, 255, 255, 0.15);
|
|
list-style: none;
|
|
padding-left: 0;
|
|
gap: 0.3rem;
|
|
|
|
li {
|
|
padding: 0.2rem 0;
|
|
font-size: 0.9rem;
|
|
color: #b0b0b0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
a,
|
|
span {
|
|
display: block;
|
|
padding: 0.5rem 1rem;
|
|
border-radius: 4px;
|
|
}
|
|
}
|
|
} |