styles.css

来自异世界百科
.index-banner {
	padding: 28px 18px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: darkgreen;
	gap: 55px;
	background-color: #38909F;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.index-banner .banner-text {
	display: flex;
	flex-direction: column;
	gap: 8px;
	color: white;
}

.index-banner .banner-text .banner-welcome {
	font-size: 18px;
	opacity: 0.9;
}

.index-banner .banner-text .banner-subtitle {
	text-align: right;
	font-size: 18px;
	font-style: oblique;
	opacity: 0.8;
}

@media (max-width: 768px) {
	.index-banner {
		gap: 28px;
	}
	
	.index-banner .banner-text .banner-welcome,
	.index-banner .banner-text .banner-subtitle {
		font-size: 14px;
	}
}