Created
August 23, 2019 10:02
-
-
Save sharbel93/d7e94833b1bc0f8585ac4912478ce79f to your computer and use it in GitHub Desktop.
Media queries for mobile apps ionic
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 (max-device-width: 375px) { | |
.card_cl{ | |
background-color: #e60003; | |
} | |
} | |
@media only screen and (min-device-width: 380px) { | |
.card_cl{ | |
background-color: #2a015e; | |
} | |
} | |
@media only screen and (min-device-width: 414px) { | |
.card_cl{ | |
background-color: #3a9d5d; | |
} | |
} | |
@media only screen and (min-device-width: 768px) { | |
.card_cl{ | |
background-color: #1e9ecb; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment