More actions
Content deleted Content added
Created page with "#home-gamestatus { padding: 0; display: flex; } .home-gamestatus-patches, .home-gamestatus-links { padding: 10px; } .home-gamestatus-patches { background: var(--color-surface-2); border-top-left-radius: 10px; border-bottom-left-radius: 10px; display: flex; flex-direction: column; gap: 5px; } .home-gamestatus-links { flex-grow: 1; } .home-badge.home-gamestatus-patch__type { background: var(--color-surface-3); } .home-badge.home-gamestatus-patch__t..." |
(No difference)
|
Revision as of 07:20, 28 September 2024
#home-gamestatus {
padding: 0;
display: flex;
}
.home-gamestatus-patches,
.home-gamestatus-links {
padding: 10px;
}
.home-gamestatus-patches {
background: var(--color-surface-2);
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
display: flex;
flex-direction: column;
gap: 5px;
}
.home-gamestatus-links {
flex-grow: 1;
}
.home-badge.home-gamestatus-patch__type {
background: var(--color-surface-3);
}
.home-badge.home-gamestatus-patch__type::before {
content: '๐';
}
.home-badge.home-gamestatus-patch__type--live {
background: var( --background-color-success-subtle );
color: green;
}
.home-badge.home-gamestatus-patch__type--live::before {
content: '๐ ';
}
.home-badge.home-gamestatus-patch__type--evo {
background: var( --background-color-destructive-subtle );
color: red;
}
.home-badge.home-gamestatus-patch__type--evo::before {
content: '๐จ ';
}
.home-badge.home-gamestatus-patch__type[ class*="ptu" ] {
background: var( --background-color-warning-subtle );
color: white;
}
.home-badge.home-gamebuild-patch__type[ class*="ptu" ]::before {
content: '๐งช ';
}
.home-gamestatus-patch {
display: flex;
flex-direction: column;
align-items: flex-start;
line-height: 1;
gap: 2px;
}
.home-gamestatus-patches__divider {
height: 1px;
background: var(--border-color-base);
}
.home-gamestatus-patch__name {
font-size: 1rem;
font-weight: 600;
}
.home-gamestatus-links .home-link {
margin-top: 0;
}