Last active
December 12, 2015 09:29
-
-
Save rubillionaire/4751981 to your computer and use it in GitHub Desktop.
Media query exmaple.
This file contains 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
.article { | |
/* styles used regardless of window size */ | |
} | |
@media all and (min-width: 320px) { | |
.article { | |
width: 100px; | |
height: 100px; | |
} | |
} | |
@media all and (min-width: 500px) { | |
.article { | |
width: 150px; | |
height: 150px; | |
} | |
} | |
@media all and (min-width: 700px) { | |
.article { | |
width: 200px; | |
height: 200px; | |
} | |
} | |
@media all and (min-width: 900px) { | |
.article { | |
width: 250px; | |
height: 250px; | |
} | |
} | |
@media all and (min-width: 1100px) { | |
.article { | |
width: 300px; | |
height: 300px; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment