ultrawidify/src/csui/res/css/uwui-base.scss

35 lines
617 B
SCSS
Raw Normal View History

@import 'flex.scss';
@import 'colors.scss';
@import 'common.scss';
* {
font-family: 'Overpass';
}
.uw-ultrawidify-container-root {
// here's the defaults:
// all: initial;
// * {
// all: unset;
// }
// here's things that we don't want as defaults
// (must come after the all: declaration, otherwise
// all: declaration overrides everything.)
// we put our UI _over_ site's player:
z-index: 999999;
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
// Ensure we're display:block
display: block;
// we are click-through by default:
pointer-events: none;
}