Template:MainPageInfopush.css: Difference between revisions
From VRChat Wiki
No edit summary |
No edit summary |
||
Line 14: | Line 14: | ||
.tpl-infopush-navigation { | .tpl-infopush-navigation { | ||
display: grid; | display: grid; | ||
grid-template-columns: repeat( | grid-template-columns: repeat(8, minmax(0, 1fr)); | ||
position: absolute; | position: absolute; | ||
inset: 0; | inset: 0; | ||
Line 32: | Line 32: | ||
.tpl-infopush-action { | .tpl-infopush-action { | ||
height: 100%; | height: 100%; | ||
grid-column: span | grid-column: span 4 / span 4; | ||
} | } |
Revision as of 03:03, 29 July 2024
.tpl-infopush {
position: relative;
padding: 0;
overflow: hidden;
aspect-ratio: 1024 / 312;
}
.tpl-infopush-content {
display: flex;
transition: transform 0.3s;
transform: translateX(-1200%);
}
.tpl-infopush-navigation {
display: grid;
grid-template-columns: repeat(8, minmax(0, 1fr));
position: absolute;
inset: 0;
pointer-events: none;
}
.tpl-infopush-navigation-item {
pointer-events: auto;
height: 100%;
cursor: pointer;
background-image: url("https://wiki-files.vrchat.com/Icons_Arrow_Left.png");
background-size: 2rem;
background-repeat: no-repeat;
background-position: center;
}
.tpl-infopush-action {
height: 100%;
grid-column: span 4 / span 4;
}