Skip to content

Instantly share code, notes, and snippets.

@oliverlindberg
Last active March 4, 2024 08:37
Show Gist options
  • Save oliverlindberg/cb033100f4d8328da85ef8209a9b7504 to your computer and use it in GitHub Desktop.
Save oliverlindberg/cb033100f4d8328da85ef8209a9b7504 to your computer and use it in GitHub Desktop.
/* 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