mirror of
https://github.com/foo-dogsquared/website.git
synced 2025-02-07 12:19:36 +00:00
The content is starting to use more and more custom Asciidoctor roles so it is starting to be tedious to put it in one SCSS file.
25 lines
391 B
SCSS
25 lines
391 B
SCSS
// Asciidoctor roles (e.g., [.text-center]) on a block.
|
|
.inline-block {
|
|
display: inline-block;
|
|
}
|
|
|
|
.text-center {
|
|
text-align: center;
|
|
}
|
|
|
|
.line-through {
|
|
text-decoration: line-through;
|
|
}
|
|
|
|
.break-anywhere {
|
|
overflow-wrap: anywhere;
|
|
}
|
|
|
|
.shake {
|
|
animation: shake 0.1s alternate ease-in-out infinite;
|
|
}
|
|
|
|
.extreme-shake {
|
|
animation: extreme-shake 0.1s alternate ease-in-out infinite;
|
|
}
|