Created
September 29, 2011 07:34
-
-
Save machal/1250191 to your computer and use it in GitHub Desktop.
Křápy first šablona
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
| /* | |
| * Zjednodusena ukazka vrstveni | |
| * designu webu v CSS ("krapy first") | |
| */ | |
| /* | |
| Vrstva pro krapy: | |
| * reset/normalizace | |
| * zakladni typografie | |
| */ | |
| /* css pravidla... */ | |
| /* | |
| Vrstva pro smartphony: | |
| * vzhled prvku (barvy, vlastni pisma, formatovane boxy) | |
| */ | |
| @media screen and (max-width: 480px) { | |
| /* css pravidla... */ | |
| } | |
| /* | |
| Vrstva pro tablety a desktop: | |
| * uprava vzhledu | |
| * layout | |
| */ | |
| @media screen and (min-width: 481px) { | |
| /* css pravidla... */ | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment