模板:Main page/wikibuild/styles.css:修订间差异

来自决策链云智库
无编辑摘要
 
无编辑摘要
第3行: 第3行:
flex-direction: column;
flex-direction: column;
justify-content: space-between;
justify-content: space-between;
}
.home-gamebuild-links {
grid-template-columns: 1fr 1fr;
}
}


第17行: 第13行:
.home-gamebuild-patch {
.home-gamebuild-patch {
display: flex;
display: flex;
white-space: nowrap;
align-items: center;
align-items: center;
}
}
第38行: 第33行:
.home-gamebuild-patch__type--live {
.home-gamebuild-patch__type--live {
background: var( --background-color-success );
background: var( --background-color-success );
color: var( --color-text-success );
}
}


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


.home-gamebuild-patch__type--ptu {
.home-gamebuild-patch__type--ptu {
background: var( --background-color-warning );
background: var( --background-color-warning );
color: var( --color-text-warning );
}
}

2023年12月9日 (六) 23:38的版本

#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 );
	color: var( --color-text-success );
}

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

.home-gamebuild-patch__type--ptu {
	background: var( --background-color-warning );
	color: var( --color-text-warning );
}