mirror of
https://github.com/Karaka-Management/cssOMS.git
synced 2026-01-11 11:18:39 +00:00
21 lines
397 B
SCSS
21 lines
397 B
SCSS
@import "_mixins", "_vars";
|
|
|
|
.pagination {
|
|
li {
|
|
display: inline;
|
|
}
|
|
|
|
a {
|
|
@include border-radius(3px);
|
|
@include box-shadow-out(#ffffff);
|
|
background: $content-background-color;
|
|
padding: 5px 10px 5px 10px;
|
|
}
|
|
|
|
.active, a:hover, a:active {
|
|
color: #ffffff;
|
|
background: #353535;
|
|
@include box-shadow-out(#e8e8e8);
|
|
}
|
|
}
|