fix due too requirements not being met

This commit is contained in:
2026-04-22 11:06:32 +02:00
parent 2c48db1dd3
commit c68082c1a7
3 changed files with 10 additions and 4 deletions
Binary file not shown.
-1
View File
@@ -9,7 +9,6 @@
<body>
<h1>Gruppen der Fußball-WM 2026</h1>
<div class="container">
<div class="group-card">
<table>
+10 -3
View File
@@ -2,7 +2,7 @@ body {
font-family: sans-serif;
line-height: 1.6;
color: #333;
max-width: 800px;
max-width: 1200px;
margin: 40px auto;
padding: 0 20px;
background-color: #f9f9f9;
@@ -13,16 +13,23 @@ h1 {
text-align: center;
}
.container {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 15px;
}
table {
width: 100%;
font-size: 12px;
border-collapse: collapse;
background: white;
margin-bottom: 20px;
margin: 0;
}
th, td {
border: 1px solid #ddd;
padding: 12px;
padding: 6px;
text-align: left;
}