UNPKG

@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.

23 lines (21 loc) 425 B
/* Position Fixed */ .fixed { --fixed-top: 0; --fixed-bottom: var(); --fixed-left: var(); --fixed-right: 0; --fixed-width: 100%; position: fixed; width: var(--fixed-width); top: var(--fixed-top); left: var(--fixed-left); right: var(--fixed-right); } .fixed.top-right { --fixed-width: auto; --fixed-right: 0; } .fixed.top-left { --fixed-width: auto; --fixed-left: 0; }