@ou-imdt/css
Version:
The IMDT CSS library styles native elements with light, extendable CSS. It is developed for Interactive Media Developers at the Open University.
15 lines (14 loc) • 309 B
CSS
:root,
:host {
/* Abbr */
--abbr-border: none;
--abbr-border-bottom: 1px dotted;
--abbr-decoration: none;
--abbr-transform: none;
}
abbr {
text-decoration: var(--abbr-decoration);
border: var(--abbr-border);
border-bottom: var(--abbr-border-bottom);
text-transform: var(--abbr-transform);
}