This commit is contained in:
David Štaleker
2024-02-28 11:17:12 +01:00
parent e92956075f
commit dc24cb22a6
5 changed files with 249 additions and 5 deletions

View File

@@ -51,3 +51,36 @@
.input-hidden {
display: none;
}
.div-pages {
margin: 5px;
height: 50px;
}
.div-pages > div {
float: left;
text-align: center;
width: 100px;
height: 50px;
border:1px solid rgba(24, 28, 33, 0.06);
border-radius: 0.25rem;
margin-right: 5px;
}
.div-pages > div:hover {
cursor: pointer;
background-color: rgba(24, 28, 33, 0.06);
}
.page-active {
background-color: rgba(128, 171, 226, 0.5);
}
.div-pages > div > h5 {
margin-top: 5px;
margin-bottom: 2px;
}
.div-pages > div > i {
margin-top: 10px;
}