File size: 903 Bytes
019ae15 aaac1e7 019ae15 aaac1e7 019ae15 aaac1e7 019ae15 aaac1e7 019ae15 aaac1e7 019ae15 aaac1e7 019ae15 aaac1e7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | body {
font-family: Arial, sans-serif;
background: #0f172a;
color: white;
margin: 0;
}
header {
text-align: center;
padding: 30px;
}
h1 {
font-size: 36px;
}
main {
padding: 20px;
}
.controls {
display: flex;
gap: 20px;
margin-bottom: 20px;
}
select,
button {
padding: 10px;
border-radius: 8px;
border: none;
font-size: 15px;
}
button {
cursor: pointer;
}
.table-container {
overflow-x: auto;
}
table {
width: 100%;
border-collapse: collapse;
background: #1e293b;
}
th {
background: #334155;
padding: 12px;
text-align: center;
}
td {
padding: 10px;
text-align: center;
border-bottom: 1px solid #475569;
}
tr:hover {
background: #334155;
}
a {
color: #60a5fa;
text-decoration: none;
}
footer {
text-align: center;
padding: 20px;
opacity: 0.7;
} |