-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 6fdde2e
Showing
17 changed files
with
437 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# Ricomida |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
* { | ||
font-family: 'Cabin', 'sans-serif'; | ||
} | ||
|
||
#navbar { | ||
background-color: #373A3C; | ||
color: var(--white); | ||
} | ||
|
||
#ricomida{ | ||
font-size: 37px; | ||
} | ||
|
||
.container { | ||
font-family: 'Cabin', 'sans-serif'; | ||
color: #373A3C | ||
} | ||
|
||
#ingredientes { | ||
color: #373A3C; | ||
} | ||
|
||
.newsletter { | ||
background-color: #DC3545; | ||
color: #fff; | ||
} | ||
|
||
.ricomida { | ||
font-family: 'Lobster', 'sans-serif'; | ||
} | ||
|
||
.btn { | ||
border: #dddddd; | ||
} | ||
|
||
footer { | ||
background-color: #373A3C; | ||
color: #fff; | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
//tooltip y alerta | ||
document.addEventListener('DOMContentLoaded', function(){ | ||
var tooltipTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')); | ||
var tooltipList = tooltipTriggerList.map(function (tooltipTriggerEl) { | ||
return new bootstrap.Tooltip(tooltipTriggerEl); | ||
}); | ||
$("#enviarCorreo").click(function () { | ||
alert("El correo fue enviado correctamente..."); | ||
}); | ||
}); | ||
|
||
//cambio color con dbclick | ||
$(document).ready(function () { | ||
$("#ingredientes").on("dblclick", function () { | ||
$(this).css("color", "red"); | ||
}); | ||
}); | ||
|
||
$(document).ready(function () { | ||
$("#preparacion").on("dblclick", function () { | ||
$(this).css("color", "red"); | ||
}); | ||
}); | ||
|
||
//carrusel botones prev-next | ||
$(document).ready(function () { | ||
$('#customCarousel').carousel(); | ||
|
||
$('.prev-btn').on('click', function () { | ||
$('#customCarousel').carousel('prev'); | ||
}); | ||
|
||
$('.next-btn').on('click', function () { | ||
$('#customCarousel').carousel('next'); | ||
}); | ||
}); | ||
|
||
//cada card desaparece al hacer click en su titulo | ||
$(document).ready(function () { | ||
$("#cardTitle1").click(function () { | ||
$(".card-text").toggle(); | ||
}); | ||
}); | ||
|
||
|
||
$(document).ready(function () { | ||
$("#cardTitle2").click(function () { | ||
$(".card-text").toggle(); | ||
}); | ||
}); | ||
|
||
$(document).ready(function () { | ||
$("#cardTitle3").click(function () { | ||
$(".card-text").toggle(); | ||
}); | ||
}); |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
document.addEventListener('DOMContentLoaded', function () { | ||
var tooltipTriggerList = [].slice.call(document.querySelectorAll('[data-bs-toggle="tooltip"]')); | ||
var tooltipList = tooltipTriggerList.map(function (tooltipTriggerEl) { | ||
return new bootstrap.Tooltip(tooltipTriggerEl); | ||
}); | ||
|
||
$('#enviarCorreo').on('click', function() { | ||
alert("El correo fue enviado correctamente..."); | ||
}); | ||
}); | ||
|
||
$(document).ready(function(){ | ||
$("#ingredientes").dblclick(function(){ | ||
$(this).hide('slow'); | ||
}); | ||
|
||
$("#ingredientes").click(function(){ | ||
$(this).css({ | ||
"color": "red", | ||
"font-size": "2em" | ||
}); | ||
}); | ||
|
||
$("#ingredientes").hover(function(){ | ||
$(this).html("Esto es un boton"); | ||
}, function() { | ||
$(this).html("INGREDIENTES"); | ||
}); | ||
}); | ||
|
||
$(document).ready(function(){ | ||
$("#preparacion").dblclick(function(){ | ||
$(this).hide('slow'); | ||
}); | ||
|
||
$("#preparacion").click(function(){ | ||
$(this).css({ | ||
"color": "red", | ||
"font-size": "2em" | ||
}); | ||
}); | ||
|
||
$("#preparacion").hover(function(){ | ||
$(this).html("Esto es un boton"); | ||
}, function() { | ||
$(this).html("PREPARACIÓN"); | ||
}); | ||
}); | ||
|
||
$(document).ready(function() { | ||
$(".card-title").click(function() { | ||
$(this).siblings(".card-text").toggle(); | ||
}); | ||
}); |
Oops, something went wrong.