View UtilityComponentizedClasses.css
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
/* Clases de compononentes */ | |
.btn { | |
font-size: 16px; | |
} | |
/* Utility Classes */ | |
.large-text { | |
@media screen and (min-width: 700px) { | |
font-size: 20px; | |
} |
View componentizedClasses.css
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
.btn { | |
font-size: 16px; | |
@media screen and (min-width: 700px) { | |
font-size: 20px; | |
} | |
@media screen and (min-width: 1000px) { | |
font-size: 24px; | |
} | |
} |
View specificityExample.css
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
button.btn { | |
/* Mayor especificidad incluso en pantallas de más de 20px */ | |
font-size: 16px; | |
} | |
@media screen and (min-width: 20px) { | |
.large-text { | |
font-size: 40px; | |
} | |
} |
View tailwindSpecificity.css
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
/* Otras clases (componentes) */ | |
.btn { | |
color: blue; | |
} | |
/* Media Queries */ | |
@media (min-width: 640px) { | |
.sm\:text-base { | |
font-size: 16px; | |
} |
View MyMediaQueries.css
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
@media (min-width: 640px) and (max-width: 767px) { | |
/* mobile */ | |
} | |
@media (min-width: 768px) and (max-width: 1023px) { | |
/* tablet */ | |
} | |
@media (min-width: 1024px) { | |
/* desktop */ | |
} |
View TailwindMediaQueries.css
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
@media (min-width: 640px) { | |
/* sm */ | |
} | |
@media (min-width: 768px) { | |
/* md */ | |
} | |
@media (min-width: 1024px) { | |
/* lg */ | |
} |