2020-02-20 08:38:32 +11:00
|
|
|
.word__type {
|
2020-08-26 12:10:24 +02:00
|
|
|
font-family: $con-sans;
|
|
|
|
font-size: 0.85rem;
|
|
|
|
padding-right: 1rem;
|
|
|
|
text-align: right;
|
|
|
|
text-transform: uppercase;
|
2020-02-20 08:38:32 +11:00
|
|
|
}
|
2020-05-29 00:08:35 +01:00
|
|
|
|
|
|
|
.content-flag {
|
2020-08-26 12:10:24 +02:00
|
|
|
background-color: var(--clr-warning-background);
|
2020-05-29 00:08:35 +01:00
|
|
|
overflow: hidden;
|
|
|
|
padding: 0 1rem 0 3rem;
|
|
|
|
position: relative;
|
|
|
|
|
2020-08-26 12:10:24 +02:00
|
|
|
& a:focus {
|
|
|
|
background-color: var(--clr-background);
|
|
|
|
}
|
|
|
|
|
2020-05-29 00:08:35 +01:00
|
|
|
&:before {
|
2020-08-26 12:10:24 +02:00
|
|
|
content: '⚠️';
|
2020-05-29 00:08:35 +01:00
|
|
|
left: 1rem;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&--avoid {
|
2020-08-26 12:10:24 +02:00
|
|
|
background-color: var(--clr-avoid-background);
|
2020-05-29 00:08:35 +01:00
|
|
|
|
|
|
|
&:before {
|
2020-08-26 12:10:24 +02:00
|
|
|
content: '🚨';
|
2020-05-29 00:08:35 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|