finished building footer section

This commit is contained in:
Yusuf Ipek
2021-05-04 11:53:00 +03:00
parent b396a9b6e9
commit 1da98261e5
4 changed files with 116 additions and 1 deletions
+60
View File
@@ -0,0 +1,60 @@
.footer {
background-color: $color-grey-dark-3;
padding: 10rem 0;
font-size: $normal-font-size;
&__logo-box {
text-align: center;
margin-bottom: 8rem;
}
&__logo {
width: 10rem;
height: auto;
}
&__navigation {
border-top: 1px solid $color-grey-dark;
padding-top: 2rem;
display: inline-block;
}
&__list {
list-style-type: none;
}
&__item {
display: inline-block;
&:not(:last-child) {
margin-right: 1.5rem;
}
}
&__link {
&:link,
&:visited {
color: $color-grey-light-1;
background-color: $color-grey-dark-3;
text-decoration: none;
text-transform: uppercase;
display: inline-block;
transition: all 0.2s;
}
&:hover,
&:active {
color: $color-primary;
box-shadow: $shadow-link;
transform: rotate(5deg) scale(1.3);
}
}
&__copyright {
border-top: 1px solid $color-grey-dark;
padding-top: 2rem;
float: right;
color: $color-grey-dark;
color: $color-grey-light-1;
}
}