25 lines
416 B
CSS
25 lines
416 B
CSS
.bignum {
|
|
font-size: 60px;
|
|
background-color: aquamarine;
|
|
color: hsl(159.8, 100%, 39.9%);
|
|
width: 150px;
|
|
height: 200px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.horizontal-scroller {
|
|
.next-button,
|
|
.prev-button {
|
|
pointer-events: none;
|
|
opacity: 0.5;
|
|
}
|
|
}
|
|
|
|
.horizontal-scroller.has-next .next-button,
|
|
.horizontal-scroller.has-prev .prev-button {
|
|
pointer-events: all;
|
|
opacity: 1;
|
|
}
|