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
<div class="container"> | |
<div class="card"> | |
… | |
</div> | |
</div> |
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 only screen and (min-width: 48em) { | |
.container { | |
max-width: 50rem; | |
} |
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 { |
NewerOlder