mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-01-23 01:40:10 +00:00
5789b3910a
* Adds alertbox to definition pages * Fixes syntax of links and improves wording of callout links to contribute
43 lines
601 B
SCSS
43 lines
601 B
SCSS
.page {
|
|
align-items: start;
|
|
display: grid;
|
|
grid-template-columns: 1fr;
|
|
|
|
& > * {
|
|
grid-column: 1;
|
|
}
|
|
}
|
|
|
|
.article-content {
|
|
display: grid;
|
|
grid-gap: 1rem;
|
|
|
|
@media (min-width: 800px) {
|
|
grid-template-columns: 10rem 45rem;
|
|
}
|
|
}
|
|
|
|
.wide-content {
|
|
@media (min-width: 800px) {
|
|
display: grid;
|
|
grid-gap: 5rem;
|
|
grid-template-columns: 10rem 1fr;
|
|
}
|
|
}
|
|
|
|
.definition {
|
|
max-width: 47rem;
|
|
}
|
|
|
|
.definition > .alertbox {
|
|
margin: 2.25rem 0;
|
|
}
|
|
|
|
.definition__further-definitions_nav {
|
|
margin-top: 3rem;
|
|
}
|
|
|
|
.definition__header {
|
|
font-family: orpheuspro, Palatino, Times, serif;
|
|
}
|