Add new styles for listing tables

This commit is contained in:
Johannes Schriewer 2025-01-05 19:02:14 +01:00
parent 39c8a9af80
commit 83ae8350b7

View file

@ -78,6 +78,11 @@ nav .icon-only-button {
background-color: transparent; background-color: transparent;
} }
nav .icon-nav {
border-left: 1px solid white;
padding-left: 25px;
}
h1 { h1 {
margin-top: 20px; margin-top: 20px;
} }
@ -136,7 +141,7 @@ main {
} }
} }
.icon { img.icon {
display: inline-block; display: inline-block;
margin-right: 10px; margin-right: 10px;
width: 18px; width: 18px;
@ -145,6 +150,24 @@ main {
top: 2px; top: 2px;
} }
td.icon, th.icon {
width: 28px;
}
td.icon img, th.icon img {
max-height: 18px;
}
td.logo {
padding-right: 10px;
width: 70px;
}
.logo img {
max-height: 18px;
max-width: 50px;
}
h2 .icon { h2 .icon {
width: 25px; width: 25px;
height: 25px; height: 25px;
@ -159,6 +182,7 @@ ul.nav-list {
width: 30%; width: 30%;
margin: 0; margin: 0;
padding: 0; padding: 0;
align-items: left;
} }
ul.nav-list li { ul.nav-list li {
@ -170,3 +194,23 @@ ul.nav-list li {
text-indent: 0; text-indent: 0;
list-style-type: none; list-style-type: none;
} }
table.list {
border: 2px solid black;
border-spacing: 0px;
border-collapse: collapse;
}
table.list thead th {
text-align: left;
border-bottom: 2px solid black;
padding: 10px;
}
table.list tbody tr {
}
table.list tbody td {
border-bottom: 1px solid black;
padding: 10px;
}