23 lines
482 B
CSS
23 lines
482 B
CSS
/*.arrowItem {
|
|
transform: skewX(20deg);
|
|
}*/
|
|
.button2Click {
|
|
background-color: var(--itemColor);
|
|
}
|
|
.arrow-right {
|
|
width: 0;
|
|
height: 0;
|
|
border-top: 25px solid transparent;
|
|
border-left: 30px solid var(--itemColor);
|
|
border-bottom: 25px solid transparent;
|
|
}
|
|
.tail-left {
|
|
width: 0;
|
|
height: 0;
|
|
border-top: 25px solid var(--itemColor);
|
|
border-left: 30px solid transparent;
|
|
border-bottom: 25px solid var(--itemColor);
|
|
}
|
|
.containerAll {
|
|
border-radius: 0.3rem;
|
|
} |