mirror of
https://github.com/Karaka-Management/cssOMS.git
synced 2026-01-10 02:48:40 +00:00
21 lines
304 B
SCSS
Executable File
21 lines
304 B
SCSS
Executable File
.pagination {
|
|
li, a {
|
|
display: inline-block;
|
|
}
|
|
|
|
li+li {
|
|
margin-left: .5rem;
|
|
}
|
|
|
|
a {
|
|
border-radius: 3px;
|
|
background: #ccc;
|
|
padding: 5px 10px 5px 10px;
|
|
}
|
|
|
|
.active, a:hover, a:active {
|
|
color: #000;
|
|
background: #fff;
|
|
}
|
|
}
|