mirror of
https://github.com/foo-dogsquared/website.git
synced 2025-01-31 13:58:05 +00:00
31 lines
480 B
SCSS
31 lines
480 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;
|
|
}
|
|
|
|
@media (prefers-reduced-motion) {
|
|
.shake, .extreme-shake {
|
|
animation: none;
|
|
}
|
|
}
|