30 lines
434 B
CSS
30 lines
434 B
CSS
.header {
|
|
position: relative;
|
|
margin-top: 5rem;
|
|
z-index: 1;
|
|
&.clickable {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
.title {
|
|
font-size: 1.5rem;
|
|
margin: 0;
|
|
}
|
|
.counter {
|
|
font-size: 2rem;
|
|
font-weight: 600;
|
|
margin: 0.5rem 0 0.2rem;
|
|
line-height: 2rem;
|
|
color: var(--hover-color);
|
|
}
|
|
.counter_per_seconds {
|
|
font-size: 1.2rem;
|
|
font-weight: 600;
|
|
margin: 0;
|
|
}
|
|
.counter_available {
|
|
font-size: 1rem;
|
|
margin: 0;
|
|
opacity: 0.76;
|
|
}
|