2022-01-29 16:23:40 +01:00
|
|
|
@import 'flex.scss';
|
|
|
|
@import 'colors.scss';
|
|
|
|
@import 'common.scss';
|
|
|
|
|
2022-06-14 23:23:08 +02:00
|
|
|
* {
|
|
|
|
font-family: 'Overpass';
|
|
|
|
}
|
|
|
|
|
2022-01-29 16:23:40 +01:00
|
|
|
.uw-ultrawidify-container-root {
|
2022-06-14 23:23:08 +02:00
|
|
|
// 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.)
|
2022-01-29 16:23:40 +01:00
|
|
|
|
|
|
|
// 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;
|
|
|
|
}
|
|
|
|
|