Advertisement
Guest User

Untitled

a guest
Apr 21st, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. /* CSS Styles ausserhalb der folgenden speziellen Media Querys sind fuer grosse Monitore, breiter als 1199px, vorgesehen */
  2. @media all and (max-width: 1199px) {
  3. /* CSS Styles fuer grosse Displays */
  4. }
  5. @media all and (max-width: 991px) {
  6. /* CSS Styles fuer Tablets hochkant */
  7. }
  8. @media all and (max-width: 768px) {
  9. /* CSS Styles fuer Smartphones, horizontal */
  10. }
  11. @media all and (max-width: 575px) {
  12. /* CSS Styles fuer kleine Mobiltelefone, hochkant */
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement