Last active
March 4, 2024 08:37
-
-
Save oliverlindberg/cb033100f4d8328da85ef8209a9b7504 to your computer and use it in GitHub Desktop.
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
/* Standard-Stile für Desktop-Layout */ | |
.container { | |
max-width: 960px; | |
margin: 0 auto; | |
padding: 1.5em; | |
} | |
/* Media Query für Tablet-Geräte mit einer maximalen Breite von 767px */ | |
@media only screen and (max-width: 767px) { | |
.container { | |
padding: 1em; | |
} | |
} | |
/* Media Query für Smartphone-Geräte mit einer maximalen Breite von 479px */ | |
@media only screen and (max-width: 479px) { | |
.container { | |
padding: 0.5em; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment