move css into separate files
This commit is contained in:
parent
afc3f1c577
commit
bf4f142cb7
6 changed files with 152 additions and 128 deletions
30
_includes/footer.css
Normal file
30
_includes/footer.css
Normal file
|
@ -0,0 +1,30 @@
|
|||
footer {
|
||||
border-top: 1px dotted rgba(0,0,0,.15);
|
||||
padding: 4rem 0;
|
||||
}
|
||||
|
||||
#footerNav ul {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
display: flex;
|
||||
gap: 1em;
|
||||
}
|
||||
|
||||
#footerNav li {
|
||||
display: inline;
|
||||
}
|
||||
|
||||
.footer-container {
|
||||
max-width: var(--page-width);
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
display: grid;
|
||||
grid-template-columns: auto auto;
|
||||
grid-auto-flow: column;
|
||||
grid-template-rows: 1fr 1fr;
|
||||
gap: 1em;
|
||||
}
|
||||
|
||||
.footer-container > :nth-last-child(-n + 2) {
|
||||
text-align: end;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue