More screen view on the 3d visor. I needed more view without activate Fullscreen.
More Screen View by marurunk
Details
Authormarurunk
LicenseNo License
Categorysketchfab
Created
Updated
Size645 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name More Screen View
@version 20241122.01.14
@namespace ?
==/UserStyle== */
@-moz-document url-prefix("https://sketchfab.com/3d-models") {
.model-container .main .viewer-container {
height: 99vh!important;
}
header {
position: fixed!important;
translate: 0 -4rem;
padding-bottom: 1rem;
opacity: 0;
transition: opacity .1s ease!important;
}
header:hover {
translate: 0 0rem;
padding-bottom: initial;
opacity: 1;
}
.content, .content > section {
padding-top: 0;
}
.view.model-container.theatre .right {
translate: 0 23vh!important;
}
}