Sticky table headers #121

Merged
gr00tie merged 3 commits from dev into main 2023-11-16 08:52:40 +00:00
2 changed files with 8 additions and 2 deletions

View file

@ -152,6 +152,13 @@ table {
margin-top: 20px; margin-top: 20px;
} }
thead {
position: sticky;
top: 22px;
background: black;
box-shadow: 0 0 50px 5px #ff6f114d;
}
table, th, td { table, th, td {
border: 1px solid #e6910924; border: 1px solid #e6910924;
border-radius: 1px; border-radius: 1px;
@ -210,7 +217,7 @@ a {
/* Specific button styles for .btn class to match the hacker theme */ /* Specific button styles for .btn class to match the hacker theme */
.btn { .btn {
font-family: 'Courier New', monospace; font-family: 'Roboto', monospace;
background: #222; /* Dark background for buttons */ background: #222; /* Dark background for buttons */
color: #e69109; /* Bright green text */ color: #e69109; /* Bright green text */
border: 1px solid #e69109; /* Border to match text color */ border: 1px solid #e69109; /* Border to match text color */

View file

@ -59,7 +59,6 @@
max-width: 500px; max-width: 500px;
margin: 5px; margin: 5px;
padding: 10px; padding: 10px;
border: 1px solid rgb(255, 255, 255);
border-radius: 10px; border-radius: 10px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
} }