Added sass and migrated styles

This commit is contained in:
aronmal 2023-11-09 15:53:13 +01:00
parent ea5a815c2c
commit 906ca7806e
Signed by: aronmal
GPG key ID: 816B7707426FC612
7 changed files with 162 additions and 160 deletions

View file

@ -2,7 +2,7 @@
---
<footer class="footer">
<footer>
<div class="footerIcon">
<img
class="footerImage"
@ -57,7 +57,8 @@
>
</div>
</div>
</div><div class="footerNotice">
</div>
<div class="footerNotice">
<p>
This website is NOT affiliated with Nintendo or any other party. All
product names, logos, and brands are property of their respective owners.
@ -69,8 +70,8 @@
</p>
</div>
</footer>
<style>
.footer {
<style lang="scss">
footer {
align-items: center;
margin: 100px 1px 0 0;
background-color: rgba(0, 0, 0, 0.4);
@ -78,94 +79,92 @@
bottom: 0;
width: 100%;
padding: 5px;
}
.footerIcon {
display: block;
text-align: center;
}
.footerIcon {
display: block;
text-align: center;
.footerImage {
max-width: initial;
max-height: initial;
width: 48px;
margin: 0.5rem auto;
}
.footerImage {
max-width: initial;
max-height: initial;
width: 48px;
margin: 0.5rem auto;
}
.footerImageNote {
font-size: 0.75rem;
}
.footerImageNote {
font-size: 0.75rem;
}
}
.footerTable {
padding: 20px 0;
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
}
.footerTable {
padding: 20px 0;
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
.footerTable h3 {
margin-bottom: 8px;
}
h3 {
margin-bottom: 8px;
}
}
.footerLinks {
display: flex;
flex-direction: column;
align-items: baseline;
}
.footerLinks {
display: flex;
flex-direction: column;
align-items: baseline;
.footerLinks a {
position: relative;
color: #ffffff;
text-decoration: none;
}
a {
position: relative;
color: #ffffff;
text-decoration: none;
.footerLinks a:hover {
color: #ffffff;
}
&:hover {
color: #ffffff;
}
.footerLinks a::before {
content: "";
position: absolute;
display: block;
width: 100%;
height: 2px;
bottom: 0;
left: 0;
transform: scaleX(0);
transform-origin: left;
background-color: #ffffff;
transition: transform 0.3s ease;
}
&::before {
content: "";
position: absolute;
display: block;
width: 100%;
height: 2px;
bottom: 0;
left: 0;
transform: scaleX(0);
transform-origin: left;
background-color: #ffffff;
transition: transform 0.3s ease;
}
.footerLinks a:hover::before {
transform: scaleX(1);
}
&:hover::before {
transform: scaleX(1);
}
}
}
.footerNotice {
margin: 0 auto;
text-align: center;
font-size: 0.75rem;
}
.footerNotice {
margin: 0 auto;
text-align: center;
font-size: 0.75rem;
}
@media (min-width: 768px) {
.footer {
@media (min-width: 768px) {
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
column-gap: 0px;
margin: 0 auto;
}
.footerIcon {
grid-column: span 1;
justify-self: center;
}
.footerIcon {
grid-column: span 1;
justify-self: center;
}
.footerTable {
grid-column: span 3;
}
.footerTable {
grid-column: span 3;
}
.footerNotice {
grid-column: span 4;
.footerNotice {
grid-column: span 4;
}
}
}
</style>