68
assets/sass/footer.scss
Normal file
68
assets/sass/footer.scss
Normal file
@@ -0,0 +1,68 @@
|
||||
.footer {
|
||||
padding: 4rem 2rem;
|
||||
|
||||
.footer-container {
|
||||
max-width: $width-content;
|
||||
|
||||
width: 100%;
|
||||
margin: 0 auto;
|
||||
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
|
||||
font-size: 0.85rem;
|
||||
|
||||
color: color-mix(in srgb, var(--text) 30%, var(--background));
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
color: inherit;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: var(--text-900);
|
||||
}
|
||||
|
||||
.footer-nav {
|
||||
.middot {
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
ul {
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
list-style: none;
|
||||
|
||||
li {
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: $width-mobile) {
|
||||
.footer {
|
||||
padding: 2rem 1rem;
|
||||
|
||||
.footer-container {
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
gap: 1rem;
|
||||
|
||||
.footer-nav {
|
||||
.middot {
|
||||
display: none;
|
||||
}
|
||||
|
||||
ul {
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user