website/assets/scss/roles.scss
Gabriel Arazas 321cb32369
Modularize site styles
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.
2023-05-15 13:20:50 +08:00

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;
}