Template:Main page/gamebuild/styles.css: Difference between revisions

From IxWiki
Jump to navigation Jump to search
No edit summary
ย 
m 1 revision imported
ย 
(No difference)

Latest revision as of 00:42, 2 August 2024

#home-gamebuild {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.home-gamebuild-patch__container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.home-gamebuild-patch {
	display: flex;
	align-items: center;
}

.home-gamebuild-patch__name {
	font-size: 1.2rem;
	font-weight: 600;
}

.home-gamebuild-patch__type {
	padding: 0.1rem 0.6rem;
	margin-left: 0.4rem;
	background: var( --color-surface-3 );
	border-radius: 100px;
	font-size: 0.8125rem;
	font-weight: 500;
	text-transform: uppercase;
}

.home-gamebuild-patch__type--live {
	background: var( --background-color-success-subtle );
    color: var( --color-success );
}

.home-gamebuild-patch__type--live::before {
	content: '๐ŸŽ‰ ';
}

.home-gamebuild-patch__type--evo {
	background: var( --background-color-destructive-subtle );
	color: var( --color-destructive );
}

.home-gamebuild-patch__type--evo::before {
	content: '๐Ÿšจ ';
}

.home-gamebuild-patch__type[ class*="ptu" ] {
	background: var( --background-color-warning-subtle );
	color: var( --color-base );
}

.home-gamebuild-patch__type[ class*="ptu" ]::before {
	content: '๐Ÿงช ';
}