countDownCom.less 1.74 KB
@charset "UTF-8";

.count-down-com {
	.count-down {
		display: flex;
		justify-content: flex-start;
		align-items: center;
		.container {
			display: flex;
			justify-content: center;
			align-items: center;
			.block {
				display: flex;
				justify-content: center;
				align-items: center;
				background-color: #ECECEC;
				margin-left: 10px;
				width: 36px;
				height: 30px;
				color: #333333;
				font-size: 20px;
				border-radius: 4px;
				&.transparent {
					background-color: transparent;
				}
			}
			.colon {
				margin-left: 10px;
				color: #999999;
				font-size: 20px;
			}
		}
		&.style-2 {
			.container {
				.block {
					background-color: #3C3C3C;
					width: 46px;
					height: 36px;
					color: #FFFFFF;
					font-size: 25px;
					&.transparent {
						background-color: transparent;
						color: #333333;
					}
				}
				.colon {
					color: #3C3C3C;
					font-size: 24px;
				}
			}
		}
		&.style-3 {
			.container {
				.block {
					background-color: rgba(189, 164, 127, 1);
					width: 36px;
					height: 36px;
					color: #FFFFFF;
					font-size: 20px;
					font-weight: 400;
				}
				.colon {
					color: rgba(189, 164, 127, 1);
					font-size: 20px;
					font-weight: 400;
				}
			}
		}
		&.style-4 {
			.container {
				.block {
					background-color: #3C3C3C;
					width: 36px;
					height: 36px;
					color: #FCF7F1;
					font-size: 20px;
					font-weight: 400;
				}
				.colon {
					color: #3C3C3C;
					font-size: 20px;
					font-weight: 400;
				}
			}
		}
		&.style-5 {
			.container {
				.block {
					background-color: #481814;
					width: 36px;
					height: 36px;
					color: #FFFFFF;
					font-size: 20px;
					font-weight: 400;
				}
				.colon {
					color: #633531;
					font-size: 24px;
					font-weight: 300;
				}
			}
		}
	}
}