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

49 lines
756 B
CSS
Raw Normal View History

.page {
margin-bottom: calc(60rem / 16);
}
2021-06-21 21:22:54 -04:00
.headerContainer {
display: flex;
flex-direction: row;
align-items: flex-end;
padding-bottom: 1rem;
border-bottom: calc(1rem / 16) solid var(--border);
2021-06-21 21:22:54 -04:00
}
.header {
color: var(--primary-title);
2021-06-21 21:22:54 -04:00
margin: 0 1rem 0 0;
text-align: center;
}
.content h2 {
2021-06-21 21:22:54 -04:00
font-size: calc(24rem / 16);
color: var(--primary-accent);
2021-06-21 21:22:54 -04:00
}
@media only screen and (max-width: calc(768rem / 16)) {
.page {
margin: calc(30rem / 16) 0;
}
2021-06-21 21:22:54 -04:00
.headerContainer {
flex-direction: column-reverse;
align-items: center;
border: none;
}
.header {
font-size: calc(24rem / 16);
margin: 0;
}
2021-06-21 21:22:54 -04:00
.codey {
width: calc(100rem / 16);
}
.content ol,
.content ul {
padding: 0 1rem;
2021-06-21 21:22:54 -04:00
}
}