diff --git a/style.css b/style.css index cc1fcd2..a84e0e8 100644 --- a/style.css +++ b/style.css @@ -78,6 +78,11 @@ body { cursor: pointer; } +.preset-item:hover { + background-color: #e6e6e6; + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); +} + .new-preset-container { margin-bottom: 15px; } @@ -90,12 +95,17 @@ body { margin: 0; text-align: center; /* Zentriert den gesamten Inhalt */ font-size: 12px; - color: #999 + color: #666; } .preset-set a { - color: #999; /* Farbe der Links */ - text-decoration: underline; /* Entfernt den Unterstreichung */ + color: #666; /* Farbe der Links */ + text-decoration: underline; +} + +.preset-set a:hover { + text-decoration: underline; + color: #333; } .footer { @@ -104,10 +114,15 @@ body { justify-content: center; /* Hier wird die horizontale Zentrierung eingestellt */ margin: 20px 0; font-size: 12px; - color: #999 + color: #666; } .footer a { - color: #999; /* Farbe der Links */ + color: #666; /* Farbe der Links */ text-decoration: none; /* Entfernt den Unterstreichung */ } + +.footer a:hover { + text-decoration: none; + color: #333; +}