1
0

Updated
Some checks failed
Test / test (push) Has been cancelled

This commit is contained in:
Aiden
2026-06-11 09:12:17 +10:00
parent 1d4b3ce307
commit b674df1555
21 changed files with 1176 additions and 202 deletions

View File

@@ -51,6 +51,71 @@
filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
}
.vrwp-launcher-host {
position: fixed;
left: -1px;
top: -1px;
width: 1px;
height: 1px;
overflow: hidden;
clip-path: inset(50%);
pointer-events: none;
}
.vrwp-modal {
position: fixed;
inset: 0;
z-index: 2147483647;
display: grid;
place-items: center;
padding: 18px;
background: rgba(8, 8, 8, 0.82);
}
.vrwp-modal[hidden] {
display: none !important;
}
.vrwp-modal-dialog {
position: relative;
width: min(1120px, 100%);
max-height: calc(100vh - 36px);
padding: 14px;
border-radius: 8px;
background: #111;
box-shadow: 0 18px 70px rgba(0, 0, 0, 0.42);
overflow: auto;
}
.vrwp-modal-content {
width: 100%;
}
.vrwp-modal .vrwp {
width: 100%;
}
.vrwp-modal-close {
position: absolute;
top: 14px;
right: 14px;
z-index: 20;
display: grid;
place-items: center;
width: 42px;
height: 42px;
padding: 0;
border: 1px solid rgba(255, 255, 255, 0.22);
border-radius: 999px;
background: rgba(0, 0, 0, 0.58);
color: #fff;
cursor: pointer;
}
.vrwp-modal-close:hover {
background: rgba(0, 0, 0, 0.76);
}
@media (max-width: 600px) {
.vrwp-play-button {
width: 60px;