[minor] update stylesheets

This commit is contained in:
Marcel Paffrath 2023-04-21 16:40:58 +02:00
parent 353f073d12
commit a15aee1da6
2 changed files with 18 additions and 24 deletions

View File

@ -3,27 +3,23 @@ body {
place-items: center; place-items: center;
text-align: center; text-align: center;
padding-bottom: 30px; padding-bottom: 30px;
font-family: "Helvetica", "sans-serif" font-family: "Helvetica", "sans-serif";
} }
table { table {
position: relative position: relative
} }
#managerTable {
max-height: 800px;
overflow: auto;
}
td { td {
border-radius: 4px; border-radius: 2px;
padding: 0px; padding: 0px;
white-space: nowrap; white-space: nowrap;
} }
th { th {
background-color: #999; background-color: #17365c;
border-radius: 4px; color: #fff;
border-radius: 2px;
padding: 3px 1px; padding: 3px 1px;
position: sticky; position: sticky;
top: 0; top: 0;
@ -35,7 +31,7 @@ a:link, a:visited {
text-decoration: none; text-decoration: none;
display: block; display: block;
border-radius: 4px; border-radius: 4px;
border: 1px solid #bbb; border: 1px solid #ccc;
} }
a:hover { a:hover {

View File

@ -3,37 +3,35 @@ body {
place-items: center; place-items: center;
text-align: center; text-align: center;
padding-bottom: 30px; padding-bottom: 30px;
font-family: "Helvetica", "sans-serif" font-family: "Helvetica", "sans-serif";
} }
table { table {
position: relative position: relative
} }
#managerTable {
max-height: 800px;
overflow: auto;
}
td { td {
border-radius: 4px; border-radius: 3px;
padding: 10px 2px; padding: 10px 2px;
white-space: nowrap; white-space: nowrap;
} }
th { th {
background-color: #999; background-color: #17365c;
border-radius: 4px; color: #fff;
border-radius: 3px;
padding: 10px, 2px; padding: 10px, 2px;
position: sticky;
top: 0;
} }
a:link { a:link, a:visited {
background-color: #e8e8e8; background-color: #e8e8e8;
color: #000; color: #000;
text-decoration: none; text-decoration: none;
display: block; display: block;
border-radius: 4px; border-radius: 6px;
border: 1px solid #bbb; border: 1px solid #ccc;
} }
a:hover { a:hover {
@ -49,9 +47,9 @@ a:hover {
animation: blinkingBackground 2s infinite; animation: blinkingBackground 2s infinite;
} }
@keyframes blinkingBackground{ @keyframes blinkingBackground{
0% { background-color: #ffee00;} 0% { background-color: #ffcc00;}
50% { background-color: #ff3200;} 50% { background-color: #ff3200;}
100% { background-color: #ffee00;} 100% { background-color: #ffcc00;}
} }
.footer { .footer {