diff --git a/programmieren/spiele/Flappy-Witch/index.html b/programmieren/spiele/Flappy-Witch/index.html index 32c5b21..6004548 100644 --- a/programmieren/spiele/Flappy-Witch/index.html +++ b/programmieren/spiele/Flappy-Witch/index.html @@ -43,15 +43,15 @@ display: flex; } .button { - padding: 16px 32px; /* Doppelte Größe */ + padding: 16px 32px; border-radius: 8px; - background: linear-gradient(to bottom, #007bff, #0056b3); /* Blau */ + background: linear-gradient(to bottom, #007bff, #0056b3); box-shadow: 0 2px 4px rgba(0,0,0,0.7); transition: all 0.2s; display: flex; align-items: center; gap: 8px; - margin-top: 20px; /* Abstand zum oberen Inhalt */ + margin-top: 20px; } .button:hover { box-shadow: 0 4px 8px rgba(0,0,0,0.6); @@ -63,57 +63,180 @@ .button-text { font-weight: 600; color: white; - font-size: 1.5em; /* Textgröße anpassen */ + font-size: 1.5em; } - - -
- -