ui/notices.razor.scss
Notices
{
	position: absolute;
	width: 100%;
	height: 100%;
	bottom: 96px;

	justify-content: flex-end;
	align-items: center;
	flex-direction: column;
	gap: 8px;
}

.notice {
	height: 50px;
	transition: all 0.1s ease-out;
	opacity: 1;
	transform: scale( 1 );
	top: 0px;
	position: relative;
	left: 0px;
	background-color: #ffcc550a;
	box-shadow: 0px 0px 50px #f802;
	background-image: radial-gradient( #ffc94400, #f4ab2cc6 );
	padding: 8px 32px;
	border: 1px solid #e6ad12;
	backdrop-filter: blur( 50px );
	flex-shrink: 0;

	&:intro {
		transform: scale( 0.7 );
		left: 200px;
		height: 0px;
		opacity: 0;
		margin-bottom: 0px;
	}

	&:outro {
		opacity: 0;
		transition: all 1.2s ease-in;
	}

	&:before {
		left: 0;
		top: 0;
		position: absolute;
		width: 100%;
		height: 100%;
		background-color: #00000050;
		mask-position: center;
		mask-size: 32px;
		mask-image: url( ui/diag_line_mask.png );
	}

	label {
		font-size: 22px;
		font-family: Open Sans;
		font-weight: bold;
		color: #fc5;
		text-shadow: 0px 0px 5px #f50a;
	}
}