3
0
mirror of https://git.coop/cotech/website.git synced 2025-12-18 01:47:32 +00:00

Footer styling

This commit is contained in:
Chris Lowis
2025-12-15 15:48:43 +00:00
parent 43f0e729a1
commit c2235a7c8b
3 changed files with 46 additions and 7 deletions

View File

@ -153,6 +153,10 @@ h3.title {
}
}
strong {
font-family: "open_sansbold", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
}
body {
background-color: var(--cotech-black);
}
@ -169,7 +173,7 @@ img.rounded {
border-radius: var(--space-sm);
}
section {
section, footer {
padding: var(--space-sm);
}
@ -179,6 +183,7 @@ section {
border-radius: var(--space-sm);
padding: var(--space-sm);
display: flex;
flex-direction: column;
justify-content: center;
}
@ -333,3 +338,24 @@ section {
z-index: 1001;
}
}
footer {
h3 {
border-left: none;
padding-left: 0;
}
}
@media screen and (width > 480px) {
footer {
.container {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.reverse {
flex-direction: row-reverse;
}
}
}