34 lines
520 B
SCSS
34 lines
520 B
SCSS
@import "variables";
|
|
|
|
.footer {
|
|
margin-top: 40px;
|
|
text-align: center;
|
|
color: $white;
|
|
background: linear-gradient(to bottom left, $primary-color, $primary-color-light);
|
|
clear: both;
|
|
|
|
.footer-text,
|
|
.footer-link {
|
|
display: inline-block;
|
|
padding: 40px;
|
|
}
|
|
.footer-text {
|
|
padding-bottom: 0;
|
|
|
|
.hearts {
|
|
font-size: 18px;
|
|
color: $primary-color-dark;
|
|
}
|
|
}
|
|
.footer-link {
|
|
text-decoration: none;
|
|
color: $white;
|
|
transition: color 0.15s;
|
|
|
|
&:hover,
|
|
&:focus {
|
|
color: $primary-color-dark;
|
|
}
|
|
}
|
|
}
|