style.css aktualisiert
Kleiner Fehler behoben, Kontrast verbessert
This commit is contained in:
parent
4ea26db7c8
commit
1d4d673c13
1 changed files with 20 additions and 5 deletions
25
style.css
25
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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue