This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media (prefers-reduced-transparency: no-preference) { | |
/* Keine Präferenz für Transparenzen, daher wenden wir die Transparenz an */ | |
.element { | |
opacity: .5; /* Transparenz anwenden */ | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media (prefers-reduced-motion: no-preference) { | |
/* Keine spezifische Präferenz für Bewegungen, standardmäßig Animation ausführen */ | |
.element { | |
animation: slide-in 1s ease-in-out forwards; /* Führe die Animation aus */ | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@media (prefers-color-scheme: dark) { | |
body { | |
background-color: #333; /* Dunkler Hintergrund im Dark Mode */ | |
color: #fff; /* Helle Schriftfarbe im Dark Mode */ | |
} | |
} |
OlderNewer