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
.listado-productos { | |
background-color: #f3f3f3; | |
} | |
.contenedor { | |
max-width: 1200px; | |
width: 95%; | |
padding: 5rem 0; | |
margin: 0 auto; | |
} | |
.bg-white { |
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
LoadModule php_module "C:/php/php8apache2_4.dll" | |
AddHandler application/x-httpd-php .php | |
PHPIniDir "c:/php" |
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
body { | |
font-family: 'Hubballi', cursive; | |
background-color: #f1f5f9; | |
font-size: 1.6rem; | |
} | |
header { | |
background-color: #0ea5e9; | |
padding: 1.5rem; | |
border-bottom: 1rem solid #0284c7; | |
} |
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
const CATEGORIAS = [ | |
{ value: 'general', label: 'General'}, | |
{ value: 'business', label: 'Negocios'}, | |
{ value: 'entertainment', label: 'Entretenimiento'}, | |
{ value: 'health', label: 'Salud'}, | |
{ value: 'science', label: 'Ciencia'}, | |
{ value: 'sports', label: 'Deportes'}, | |
{ value: 'technology', label: 'Tecnología'}, | |
] |
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
const categorias = [ | |
{ | |
icono: "cafe", | |
nombre: "Café" | |
}, | |
{ | |
icono: "hamburguesa", | |
nombre: "Hamburguesas" | |
}, |
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
let regex = new RegExp("([!#-'*+/-9=?A-Z^-~-]+(\.[!#-'*+/-9=?A-Z^-~-]+)*|\"\(\[\]!#-[^-~ \t]|(\\[\t -~]))+\")@([!#-'*+/-9=?A-Z^-~-]+(\.[!#-'*+/-9=?A-Z^-~-]+)*|\[[\t -Z^-~]*])"); |
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
@import url('https://necolas.github.io/normalize.css/8.0.1/normalize.css'); | |
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;700;900&display=swap'); | |
:root { | |
--primary: #e99401; | |
--black: #262626; | |
--white: #FFF; | |
--fuente-principal: 'Outfit', sans-serif; | |
} | |
html { |
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
.contenido { | |
display: grid; | |
gap: 4rem; | |
} | |
@media (min-width: 768px) { | |
.contenido { | |
grid-template-columns: repeat(2, 1fr); | |
align-items: center; | |
} | |
} |
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
.guitarra { | |
display: grid; | |
grid-template-columns: 2fr 3fr; | |
gap: 1rem; | |
align-items: center; | |
max-width: 70rem; | |
margin: 0 auto; | |
} | |
.contenido { |
OlderNewer