eye candy

This commit is contained in:
Jörg Henke
2023-10-17 14:19:59 +02:00
parent ee41117a57
commit 4f5db460ae
3 changed files with 28 additions and 6 deletions

View File

@ -368,4 +368,26 @@ body {
min-height: calc(90vh - 100px);
max-height: calc(90vh - 100px);
margin: 8px;
}
}
.btn-list {
padding-left: 8px;
padding-right: 8px;
padding-top: 4px;
padding-bottom: 4px;
border-radius: 4px;
border: 1px solid transparent;
}
.btn-list:hover {
border: 1px solid rgb(119, 118, 123);
color: white;
background-image: linear-gradient(to right bottom, #99c1f1, #1a5f64);
}
[data-bs-theme=dark] .btn-list:hover {
border: 1px solid rgb(246, 245, 244);
color: rgb(246, 245, 244);
background-image: linear-gradient(to right bottom, #99c1f1, #1a5f64);
}