This commit is contained in:
skidoodle 2024-08-24 01:02:02 +02:00
parent 3148a47258
commit b690c6f789
6 changed files with 189 additions and 87 deletions

View file

@ -1,3 +1,9 @@
* {
-webkit-tap-highlight-color: transparent;
-webkit-touch-callout: none;
touch-action: manipulation;
}
body {
font-family: Arial, sans-serif;
background-color: #222;
@ -58,18 +64,21 @@ h1 a:hover {
}
table {
width: 90%;
max-width: 800px;
max-width: 1200px;
border-collapse: collapse;
margin: 0 auto 20px;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
background-color: #333;
table-layout: fixed;
}
th, td {
border: 1px solid #444;
padding: 12px;
text-align: left;
word-wrap: break-word;
overflow-wrap: break-word;
}
th {
cursor: pointer;
@ -107,9 +116,14 @@ tbody tr:nth-child(even) {
background-color: #555;
cursor: not-allowed;
}
@media (max-width: 600px) {
th, td {
padding: 8px;
font-size: 14px;
}
table {
font-size: 14px;
}
.export, .pagination button {
padding: 8px 12px;
@ -119,4 +133,16 @@ tbody tr:nth-child(even) {
padding: 8px;
font-size: 14px;
}
.controls {
flex-direction: column;
align-items: stretch;
}
.export {
width: 100%;
margin-bottom: 10px;
}
.search-bar {
width: 100%;
margin-left: 0;
}
}