├── css └── styles.css ├── img ├── platillo1.jpg ├── platillo2.jpg ├── platillo3.jpg ├── platillo4.jpg └── platillo5.jpg ├── index.html └── js └── scripts.js /css/styles.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-color: #110f0fea; 3 | } 4 | header, .alert{ 5 | z-index: 100; 6 | } 7 | .description{ 8 | height: 25px; 9 | overflow: hidden; 10 | transition: height .3s ease-in .3s; 11 | } 12 | .description:hover{ 13 | height: 80px; 14 | } 15 | .carrito{ 16 | min-height: 80vh; 17 | max-width: 1000px; 18 | margin: 0 auto; 19 | width: 100%; 20 | } 21 | .table__productos{ 22 | display: flex; 23 | } 24 | .table__productos > img{ 25 | width: 9rem; 26 | object-fit: contain; 27 | border-radius: 6px; 28 | margin-right: 20px; 29 | } 30 | .table__cantidad > input{ 31 | width: 40px; 32 | border: none; 33 | outline: 0; 34 | font-size: 16px; 35 | font-weight: 700; 36 | margin-right: 30px; 37 | margin-bottom: 20px; 38 | } 39 | .hide, .remove{ 40 | display: none; 41 | } -------------------------------------------------------------------------------- /img/platillo1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jehingson/vanilla-javascript/fb5d21b0711cfb71969893fc7741768a99c347fe/img/platillo1.jpg -------------------------------------------------------------------------------- /img/platillo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jehingson/vanilla-javascript/fb5d21b0711cfb71969893fc7741768a99c347fe/img/platillo2.jpg -------------------------------------------------------------------------------- /img/platillo3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jehingson/vanilla-javascript/fb5d21b0711cfb71969893fc7741768a99c347fe/img/platillo3.jpg -------------------------------------------------------------------------------- /img/platillo4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jehingson/vanilla-javascript/fb5d21b0711cfb71969893fc7741768a99c347fe/img/platillo4.jpg -------------------------------------------------------------------------------- /img/platillo5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jehingson/vanilla-javascript/fb5d21b0711cfb71969893fc7741768a99c347fe/img/platillo5.jpg -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 |Some quick example text to build on the card title and make up the bulk of the card's content.
102 |Some quick example text to build on the card title and make up the bulk of the card's content.
115 |Some quick example text to build on the card title and make up the bulk of the card's content.
128 |Some quick example text to build on the card title and make up the bulk of the card's content.
141 |Some quick example text to build on the card title and make up the bulk of the card's content.
154 |Some quick example text to build on the card title and make up the bulk of the card's content.
167 |Some quick example text to build on the card title and make up the bulk of the card's content.
180 |Some quick example text to build on the card title and make up the bulk of the card's content.
193 |# | 216 |Productos | 217 |Precio | 218 |Cantidad | 219 |
---|
${item.precio}