mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-01-22 17:30:00 +00:00
909c90f776
* Move speech definition into main template * Remove speech definition from definition-content.njk * add margin top helper * add content flag components * Add selection styling to .box class * Change content warning flag styling * Add additional content warning guidance and change styling * Expand examples list * reworded topic[s] after testing in screen reader * Also adjust wording on avoid content guidelines block * Output title into content warning example * Update 11ty/_includes/components/content-warning.njk Co-authored-by: Tatiana Mac <github@tatianamac.com> * Update 11ty/_includes/components/content-warning-flag.njk Co-authored-by: Tatiana Mac <github@tatianamac.com> * Update 11ty/_includes/components/content-warning.njk Co-authored-by: Tatiana Mac <github@tatianamac.com> Co-authored-by: Tatiana Mac <github@tatianamac.com>
92 lines
1.4 KiB
SCSS
92 lines
1.4 KiB
SCSS
.grid {
|
|
display: grid;
|
|
grid-column-gap: 4rem;
|
|
grid-row-gap: 10rem;
|
|
grid-template-columns: repeat(4, [col] 1fr [col]);
|
|
grid-template-rows: fit-content, fit-content, auto;
|
|
}
|
|
|
|
.auto-grid {
|
|
display: grid;
|
|
grid-gap: var(--l-gap);
|
|
grid-template-columns: repeat(
|
|
auto-fit,
|
|
minmax(var(--auto-grid-min-size), 1fr)
|
|
);
|
|
}
|
|
|
|
@media screen and (max-width: 880px) {
|
|
.auto-grid {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
.small-left-grid {
|
|
display: grid;
|
|
grid-gap: 1rem;
|
|
|
|
@media (min-width: #{pxToRem(800)}) {
|
|
grid-template-columns: 10rem 60ch;
|
|
}
|
|
}
|
|
|
|
.block__dictionary {
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
max-width: 50rem;
|
|
padding: 0 1rem;
|
|
}
|
|
|
|
.block__word {
|
|
display: flex;
|
|
flex-direction: column;
|
|
grid-column: span 2;
|
|
margin: 1rem;
|
|
}
|
|
|
|
.block__type {
|
|
align-items: flex-start;
|
|
display: grid;
|
|
grid-template-columns: 1fr 4fr;
|
|
}
|
|
|
|
.box {
|
|
background: black;
|
|
color: white;
|
|
grid-column: span 2;
|
|
height: auto;
|
|
margin: 1rem 0;
|
|
padding: 1rem;
|
|
@media (min-width: #{pxToRem(768)}) {
|
|
margin: 1rem 0.5rem;
|
|
}
|
|
|
|
&--divider {
|
|
margin: 2rem 0;
|
|
}
|
|
|
|
a {
|
|
color: white;
|
|
|
|
&:focus {
|
|
background-color: $lt-background-color;
|
|
color: $black;
|
|
}
|
|
}
|
|
*::selection {
|
|
background: white; /* WebKit/Blink Browsers */
|
|
color: black;
|
|
}
|
|
}
|
|
|
|
.list {
|
|
margin: 1rem 0;
|
|
li {
|
|
margin: 0.75rem 0;
|
|
}
|
|
a {
|
|
word-break: break-word;
|
|
}
|
|
}
|