30 lines
568 B
SCSS
30 lines
568 B
SCSS
|
|
div.paginator {
|
|
.arrow-right {
|
|
display:inline-block;
|
|
width: 0;
|
|
height: 0;
|
|
border-top: 4px solid transparent;
|
|
border-bottom: 4px solid transparent;
|
|
border-left: 4px solid #FFCC00;
|
|
padding-left:5px;
|
|
}
|
|
|
|
span.arrow-right {
|
|
border-left: 4px solid #aaa;
|
|
}
|
|
|
|
.arrow-left {
|
|
display:inline-block;
|
|
width: 0;
|
|
height: 0;
|
|
border-top: 4px solid transparent;
|
|
border-bottom: 4px solid transparent;
|
|
border-right: 4px solid #FFCC00;
|
|
padding-right:5px;
|
|
}
|
|
|
|
span.arrow-left {
|
|
border-right: 4px solid #aaa;
|
|
}
|
|
} |