This commit is contained in:
2025-11-17 17:42:16 +01:00
parent cf75d78792
commit 8bff5902cd
7 changed files with 108 additions and 9 deletions

View File

@@ -0,0 +1,45 @@
table {
width: 100%;
border-collapse: collapse;
margin-top: 10px;
font-family: Arial, sans-serif;
}
th, td {
border: 1px solid #ccc;
padding: 8px 12px;
text-align: left;
}
th {
background-color: #f2f2f2;
font-weight: bold;
}
tr:nth-child(even) {
background-color: #fafafa;
}
nav {
display: flex;
gap: 20px;
padding: 15px 25px;
border-bottom: 1px solid #ccc;
align-items: center;
}
nav a {
text-decoration: none;
color: inherit;
font-family: Arial, sans-serif;
font-size: 16px;
}
nav a:hover {
text-decoration: underline;
}