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

@ -54,8 +54,8 @@ body {
}
code {
color : #186196;
font-weight : bold;
color : #186196;
font-weight : bold;
}
h1 {
@ -102,7 +102,51 @@ pre {
pre code {
color : #ECECEC;
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 {
@ -245,6 +289,11 @@ pre code {
text-align : justify;
}
.nick-cell {
align-items : center;
display : flex;
}
.pagination {
margin : 0px;
padding : 0 0 0 0;
@ -267,19 +316,19 @@ pre code {
}
.wrapper_content {
margin-bottom : 2.5em;
padding : 6em 0 0 0;
margin-bottom : 2.5em;
padding : 6em 0 0 0;
}
.wrapper_header {
background : light-dark(#FFFFFF, #030C12);
color : light-dark(#000000, #FFFFFF);
height : 6em;
left : 0;
position : absolute;
position : fixed;
top : 0;
width : 100%;
background : light-dark(#FFFFFF, #030C12);
color : light-dark(#000000, #FFFFFF);
height : 6em;
left : 0;
position : absolute;
position : fixed;
top : 0;
width : 100%;
}
.wrapper_footer {