Merge pull request #121 from OpzekerIT/dev

Sticky table headers
This commit is contained in:
gr00tie 2023-11-16 09:52:39 +01:00 committed by GitHub
commit 5008161d87
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 2 deletions

View file

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

View file

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