29 lines
503 B
Plaintext
29 lines
503 B
Plaintext
// IdoMods Custom Pagination
|
|
#idm-pagination {
|
|
display: flex;
|
|
gap: 1rem;
|
|
position: absolute;
|
|
left: 50%;
|
|
bottom: -1.6rem;
|
|
transform: translateX(-50%);
|
|
z-index: 10;
|
|
}
|
|
|
|
#idm-pagination .bar {
|
|
min-width: 4rem;
|
|
flex: 1;
|
|
height: 3px;
|
|
background-color: #C8C8C8;
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
#idm-pagination .fill {
|
|
background-color: @less_idmcolorscheme_primary_black;
|
|
height: 100%;
|
|
width: 0%;
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
transition: width linear;
|
|
} |