mirror of
https://github.com/foo-dogsquared/website.git
synced 2025-02-07 15:19:08 +00:00
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;
|
||
|
}
|