platojs
Version:
Libraries of PLATO
31 lines (26 loc) • 638 B
CSS
.c-picker {
position: relative;
overflow: hidden;
}
.c-picker-cover {
position: absolute;
width: 100%;
height: 100%;
z-index: 3;
background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.6)), linear-gradient(0deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.6));
background-repeat: no-repeat;
background-position: top, bottom;
}
.c-picker-highlight {
margin-top: -1px;
border-top: 1px solid var(--disabled);
border-bottom: 1px solid var(--disabled);
}
.c-picker-content {
&.transition {
transition: transform 0.2s linear;
}
& > * {
text-align: center;
}
}