Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.
Revision as of 20:41, 4 March 2025 by Muqsit (talk | contribs) (Created page with ".home-event { border: 1px solid var( --border-color-base ); border-radius: var( --border-radius-medium ); background: var( --color-surface-1 ); } .home-gameinfo { display: flex; align-items: center; justify-content: space-between; padding: var( --space-xs ) var( --space-md ); white-space: nowrap; line-height: 1; overflow-x: auto; font-size: var( --font-size-small ); gap: var( --space-xl ); } .home-gameinfo-label { color: var( --color-subtle ); font-size:...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
.home-event {
	border: 1px solid var( --border-color-base );
	border-radius: var( --border-radius-medium );
	background: var( --color-surface-1 );
}

.home-gameinfo {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var( --space-xs ) var( --space-md );
	white-space: nowrap;
	line-height: 1;
	overflow-x: auto;
	font-size: var( --font-size-small );
	gap: var( --space-xl );
}

.home-gameinfo-label {
	color: var( --color-subtle );
	font-size: var( --font-size-x-small );
	letter-spacing: 0.05em;
}

.home-gameinfo-list {
	display: flex;
}

.home-gameinfo-list-item {
	display: flex;
	align-items: center;
	gap: var( --space-xs );
	font-weight: var( --font-weight-medium );
}

.home-gameinfo-list-item + .home-gameinfo-list-item {
	margin-left: var( --space-sm );
	border-left: 1px solid var( --border-color-base );
	padding-left: var( --space-sm );
}

.home-event .home-card {
	height: 5rem;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.home-event .home-card__background:after {
	/*
	 * Theme gradient color
	 * FIXME: Find a way to make customize it through wikitext 
	 */
	background: linear-gradient(to right,#101e3c 1%,transparent 33.3%);
}