diff --git a/index.html b/index.html index d824895..d3f8a8f 100644 --- a/index.html +++ b/index.html @@ -182,7 +182,22 @@ font-size: 20px; /* Größere Schriftgröße für 4K */ border-radius: 15px; /* Größere abgerundete Ecken */ } - } + + .koenig-button { + padding: 1.5vh 4vw; /* Gleiche Polsterung wie die Such- und Zurücksetzen-Buttons */ + font-size: 1.5vw; /* Gleiche Schriftgröße */ + background-color: #3498db; /* Gleiche Hintergrundfarbe */ + color: white; /* Gleiche Textfarbe */ + border: none; /* Kein Rahmen */ + border-radius: 1vw; /* Gleiche abgerundete Ecken */ + cursor: pointer; /* Mauszeiger als Hinweis auf Klickbarkeit */ + transition: background-color 0.3s ease; /* Sanfter Übergang für Hover-Effekt */ + margin-top: 2vh; /* Etwas Abstand nach oben */ + } + + .koenig-button:hover { + background-color: #2980b9; /* Gleiche Hover-Farbe */ + } @@ -461,7 +476,7 @@
-