This repository has been archived on 2021-11-24. You can view files and clone it, but cannot push or open issues or pull requests.
2021-08-23 10:26:02 +02:00

30 lines
477 B
SCSS

//
// Number Box
//
.number-box {
padding: 20px 0;
.number-box-header {
display: table;
margin: 0 0 5px;
}
.number-box-title,
.number-box-number {
vertical-align: middle;
display: table-cell;
}
.number-box-title {
padding-left: 8px;
}
.number-box-number {
font-size: rem(30px);
}
.number-box-content > *:last-child {
margin-bottom: 0;
}
}