mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-23 18:56:29 +02:00
22 lines
369 B
SCSS
22 lines
369 B
SCSS
.statistic {
|
|
/* Center the content */
|
|
align-items: center;
|
|
display: inline-flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.statistic__value {
|
|
/* Big font size */
|
|
font-size: 3rem;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.statistic__label {
|
|
/* Smaller font size */
|
|
font-size: 1rem;
|
|
font-weight: 700;
|
|
|
|
/* Uppercase the label */
|
|
text-transform: uppercase;
|
|
}
|