Newer
Older
smart-home-server / webclient / src / scss / ui_components / _cards.scss
@eugene-sukhodolskiy eugene-sukhodolskiy 7 days ago 400 bytes UI kit
.card {
	max-width: 420px;
	width: 100%;
	border: 2px solid $color-text-light;

	.card-title {
		color: $color-black;
		background: $color-text-light;
		padding: $space-2 $space-3;
	}

	.card-content {
		padding: $space-4;

		.card-thumb {
			width: 100%;
		}

		p {
			margin-top: $space-2;
			margin-bottom: 0;
		}
	}

	.card-footer {
		padding: $space-2 $space-4;
		padding-bottom: $space-4;
	}
}