Files
Globaly-CSS-Practice/style/_footer.scss
2024-06-18 16:52:52 +02:00

48 lines
958 B
SCSS

footer{
background-color: #31353d;
.scrollToTopBtn{
button{
display: none;
position: fixed;
bottom: 70px;
right: 20px;
z-index: 99;
background-color: #15c1c6;
padding: 18px;
border-radius: 50%;
font-size: 23px;
color: white;
background-color: #15c1c6;
border: none;
}
button:hover{
background-color: #31353d;
transition: 0.3s;
}
}
.footer-copyright{
color: #ffffff;
font-size: .875rem;
font-style: normal;
font-weight: 400;
line-height: 1.4375;
font-family: MerriweatherSans;
letter-spacing: 0px;
a{
color: #ffffff;
text-decoration: none;
}
a:hover{
color: #15c1c6;
transition: 0.3s;
}
}
}