SiteWebAstrolabe/src/scss/components/_site-foot.scss

54 lines
796 B
SCSS
Raw Normal View History

2020-06-19 23:47:44 +02:00
.site-foot {
background: var(--color-secondary);
color: var(--color-white);
&__inner {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: 1fr;
grid-column-gap: 1.5rem;
grid-row-gap: 0;
padding: 3.5rem 0 2.5rem;
font-weight: 300;
h3 {
font-size: 1rem;
font-weight: 400;
margin-bottom: 1.5rem;
}
p {
margin-bottom: 1rem;
}
2020-07-15 16:35:35 +02:00
.social {
+ .social {
margin-left: 1.5rem;
}
}
2020-06-19 23:47:44 +02:00
}
2020-07-16 18:07:36 +02:00
.footer-link {
color: var(--color-white);
2020-07-16 23:34:37 +02:00
font-weight: 600;
2020-07-16 18:07:36 +02:00
}
2020-06-19 23:47:44 +02:00
2020-07-16 18:07:36 +02:00
a {
2020-06-19 23:47:44 +02:00
&:hover {
text-decoration: none;
}
&:focus {
outline-color: var(--color-white);
}
2020-06-19 23:47:44 +02:00
}
}
2020-07-17 13:33:39 +02:00
@media (max-width: 575.98px) {
.site-foot {
&__inner {
display: block;
}
}
}