Fixes video from being cut off due to high aspect ratio
Coursatee Ultrawide (21:9) video fix by serverside-swzo
Details
Authorserverside-swzo
LicenseNo License
Categoryhttps://www.coursatee.com/
Created
Updated
Size1.2 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name Coursatee Ultrawide (21:9) video fix
@version 20241214.22.39
@namespace https://userstyles.world/user/OS
@description Fixes video from being cut off due to high aspect ratio
@author OS
==/UserStyle== */
@-moz-document url-prefix("https://www.coursatee.com/") {
.gjs-lory-slides, [id^=i]:not([data-gjs-type]):not([class]), [id^=i]:not([data-gjs-type]):not([class]) .gjs-lory-frame {
max-width: 84%;
}
body {
background: #18171c;
color: var(--color-text);
}
.nextId {
right: 870px;
transform: translateY(-50%) rotate(180deg);
margin-left: -40px;
padding: 0 0 0 2px;
}
.video-info-block {
background: var(--color-bg);
border-left: 1px solid #d6d6d6;
flex: 0 0 380px;
height: calc(100vh - 63px);
margin-left: auto;
margin-top: 63px;
max-height: 100%;
overflow: hidden;
overflow-y: scroll;
position: fixed;
right: 0;
top: 0;
transition: right .3s;
width: 870px;
}
.toggle-block {
background-color: #fff;
border-radius: 3px;
padding: 10px;
position: absolute;
right: 12px;
top: 9px;
width: 850px;
z-index: 9999;
}
}