SiteWebAstrolabe/src/scss/components/_site-foot.scss
2020-06-19 23:47:44 +02:00

37 lines
559 B
SCSS

.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;
}
}
a {
color: currentColor;
&:hover {
text-decoration: none;
}
}
&__credit {
// text-align: center;
}
}