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> <body>
<h1>Gruppen der Fußball-WM 2026</h1> <h1>Gruppen der Fußball-WM 2026</h1>
<div class="container"> <div class="container">
<div class="group-card"> <div class="group-card">
<table> <table>
+10 -3
View File
@@ -2,7 +2,7 @@ body {
font-family: sans-serif; font-family: sans-serif;
line-height: 1.6; line-height: 1.6;
color: #333; color: #333;
max-width: 800px; max-width: 1200px;
margin: 40px auto; margin: 40px auto;
padding: 0 20px; padding: 0 20px;
background-color: #f9f9f9; background-color: #f9f9f9;
@@ -13,16 +13,23 @@ h1 {
text-align: center; text-align: center;
} }
.container {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 15px;
}
table { table {
width: 100%; width: 100%;
font-size: 12px;
border-collapse: collapse; border-collapse: collapse;
background: white; background: white;
margin-bottom: 20px; margin: 0;
} }
th, td { th, td {
border: 1px solid #ddd; border: 1px solid #ddd;
padding: 12px; padding: 6px;
text-align: left; text-align: left;
} }