Add CSS styles for table elements
All checks were successful
Builds / ExectOS WebSite (push) Successful in 12s

This commit is contained in:
Aiken Harris 2025-08-17 18:54:56 +02:00 committed by CodingWorkshop Signing Team
parent b476c3e83f
commit b702ce1694
Signed by: CodingWorkshop Signing Team
GPG Key ID: 6DC88369C82795D2

View File

@ -105,6 +105,50 @@ pre code {
font-weight : normal; font-weight : normal;
} }
table {
border-collapse : collapse;
font-family : "trebuchet ms", verdana, sans-serif;
font-size : 14px;
margin : 1em auto;
width : 90%;
}
td, th {
border-bottom : 1px solid #DDDDDD;
padding : 6px 15px;
text-align : left;
}
td.nick-cell .avatar {
border-radius : 50%;
display : inline-block;
flex-shrink : 0;
height : 25px;
margin : 0;
margin-right : 10px;
object-fit : cover;
width : 25px;
}
thead th {
background-color : #BEE0FF;
border-bottom : 2px solid #186196;
color : #186196;
font-size : 1.1em;
}
tbody tr {
background-color : #FFFFFF;
}
tbody tr:nth-of-type(even) {
background-color : #f2f2f2;
}
tbody tr:hover {
background-color : #e0e0e0;
}
.content { .content {
font-size : 15px; font-size : 15px;
margin-left : 30%; margin-left : 30%;
@ -245,6 +289,11 @@ pre code {
text-align : justify; text-align : justify;
} }
.nick-cell {
align-items : center;
display : flex;
}
.pagination { .pagination {
margin : 0px; margin : 0px;
padding : 0 0 0 0; padding : 0 0 0 0;