www-new/pages/about/our-supporters.module.css

43 lines
720 B
CSS

.headerContainer {
display: flex;
flex-direction: row;
align-items: flex-end;
padding-bottom: 1rem;
border-bottom: calc(1rem / 16) solid var(--purple-2);
}
.header {
color: var(--purple-2);
font-size: calc(48rem / 16);
margin: 0 1rem 0 0;
text-align: center;
}
.content h2 {
font-weight: 600;
font-size: calc(24rem / 16);
color: var(--blue-2);
margin-top: calc(35rem / 16);
}
@media only screen and (max-width: calc(768rem / 16)) {
.headerContainer {
flex-direction: column-reverse;
align-items: center;
border: none;
}
.header {
font-size: calc(24rem / 16);
}
.codey {
width: calc(100rem / 16);
}
.content ol,
.content ul {
padding: 0 1rem;
}
}