24 lines
674 B
CSS
24 lines
674 B
CSS
/* Custom CSS - This file has the highest priority and will override other styles */
|
|
[data-component-id="umass_base:tophat"] {
|
|
background-color: transparent !important;
|
|
}
|
|
|
|
/* Creates an overlay gradient on top of the ambient video */
|
|
.f--ambient-video {
|
|
position: relative;
|
|
}
|
|
|
|
.f--ambient-video::after {
|
|
content: "";
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 50%;
|
|
/* Adjust how far up the gradient goes */
|
|
background-image: linear-gradient(180deg, transparent, #000);
|
|
pointer-events: none;
|
|
/* Allows clicks to pass through to the video controls */
|
|
z-index: 1;
|
|
/* Ensures it sits above the video */
|
|
} |