39 lines
688 B
SCSS
39 lines
688 B
SCSS
/* @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;
|
|
background-color: none transparent !important;
|
|
|
|
/* Ensure we're display:block */
|
|
display: block;
|
|
|
|
/* we are click-through by default: */
|
|
pointer-events: none;
|
|
}
|
|
|