Initial commit.

This commit is contained in:
Leo
2021-10-18 22:57:11 -05:00
commit d0bfe6c145
11 changed files with 661 additions and 0 deletions

27
scss/elements/footer.scss Normal file
View File

@@ -0,0 +1,27 @@
#footer {
margin-top: 1rem;
padding-top: 1rem;
padding-bottom: 1.5rem;
color: $gray-500;
background-color: $gray-800;
h2 {
margin-top: 1rem;
margin-bottom: 0.75rem;
font-size: $font-size-base * 1.25;
&.small {
font-size: $font-size-base * 1.5;
font-variant: all-small-caps;
}
}
.nav-link {
color: $gray-500;
padding: 0.25rem 0;
&:hover {
color: $white;
}
}
}