2020-02-20 08:38:32 +11:00
|
|
|
.word__type {
|
|
|
|
font-family: $con-sans;
|
|
|
|
font-size: 0.85rem;
|
2020-03-07 11:23:05 -07:00
|
|
|
padding-right: 1rem;
|
|
|
|
text-align: right;
|
2020-02-20 08:38:32 +11:00
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
2020-03-07 11:23:05 -07:00
|
|
|
|
2020-02-20 08:38:32 +11:00
|
|
|
.word__link {
|
|
|
|
border-bottom: darkgrey solid 0.1em;
|
2020-03-07 11:23:05 -07:00
|
|
|
color: black;
|
2020-02-20 08:38:32 +11:00
|
|
|
font-family: $ext-sans;
|
2020-03-07 11:23:05 -07:00
|
|
|
text-decoration: none;
|
2020-02-20 08:38:32 +11:00
|
|
|
}
|
2020-03-07 11:23:05 -07:00
|
|
|
|
2020-02-20 08:38:32 +11:00
|
|
|
.word__breakdown {
|
|
|
|
border-left: 0.1rem solid lightgrey;
|
2020-03-07 11:23:05 -07:00
|
|
|
font-family: $sans-serif;
|
2020-02-20 08:38:32 +11:00
|
|
|
padding-left: 1rem;
|
|
|
|
}
|
2020-05-29 00:08:35 +01:00
|
|
|
|
|
|
|
.content-flag {
|
|
|
|
background-color: $lt-background-color-warning;
|
|
|
|
overflow: hidden;
|
|
|
|
padding: 0 1rem 0 3rem;
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
content: "⚠️";
|
|
|
|
left: 1rem;
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
transform: translateY(-50%);
|
|
|
|
}
|
|
|
|
|
|
|
|
&--avoid {
|
|
|
|
background-color: $pink;
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
content: "🚨";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|