mirror of
https://github.com/foo-dogsquared/website.git
synced 2025-01-31 10:58:33 +00:00
Gabriel Arazas
321cb32369
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;
|
|
}
|