xP: improve paging

This commit is contained in:
2022-09-21 07:32:18 +02:00
parent 5a7f2d16df
commit 414859d309
2 changed files with 42 additions and 18 deletions

View File

@@ -53,8 +53,31 @@ body {
bottom: -1px;
background: #ccc;
}
.toolbar {
display: flex;
align-items: baseline;
gap: .3em;
}
button {
font: inherit;
background: transparent;
border: 1px solid transparent;
}
button:focus {
border: 1px dashed #000;
}
button:hover {
border-left: 1px solid #fff;
border-top: 1px solid #fff;
border-right: 1px solid #888;
border-bottom: 1px solid #888;
}
button:hover:active {
border-left: 1px solid #888;
border-top: 1px solid #888;
border-right: 1px solid #fff;
border-bottom: 1px solid #fff;
}
.middle {