Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

reinicio #1

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.vscode/*
146 changes: 0 additions & 146 deletions contacto.html

This file was deleted.

1 change: 1 addition & 0 deletions css/aos.css

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions css/bootstrap.min.css

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions css/font-awesome.min.css

Large diffs are not rendered by default.

86 changes: 86 additions & 0 deletions css/galeria.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
:root {
/*colores*/
--color_principal: #00448c;
--color_secundario: #c0d1e3;
/*
var(--color_principal)
var(--color_secundario)
class="color-principal"
class="color-secundario"
*/
}

body {
padding: 0 20px;
}

main {
max-width: 1440px;
margin: auto;
}

h1,
h2,
h3,
h4 {
text-align: center;
}

a {
text-decoration: none;
color: black;
}

img {
/*max-width: 100%;*/
}


.espacio {
height: 20px;
}

.navbar-nav li {
margin: auto;
}

.navbar-nav {
width: 100%;
}

.navbar-collapse li {
padding: 5px 0;
}

.menu2 {
color: black;
background-color: rgba(255, 255, 255, 1);
}

.imagen {
margin: 10px;
padding: 0;
}
.eslogan{
font-family: 'Zeyada', cursive;
}

@media (min-width: 576px) {
.navbar-collapse {
display: grid !important;
}

.navbar-collapse li {
padding: 0;
}

}

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {}

/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {}

/* Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {}
1 change: 1 addition & 0 deletions css/lightbox.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

113 changes: 113 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,113 @@
:root {
/*colores*/
--color_principal: #00448c;
--color_secundario: #c0d1e3;
/*
var(--color_principal)
var(--color_secundario)
class="color-principal"
class="color-secundario"
*/
}

body {
padding: 0 20px;
}

main {
max-width: 1440px;
margin: auto;
}
h1,h2,h3,h4{
text-align: center;
}

a {
text-decoration: none;
color: black;
}

img {
}

.menu {
background-color: rgba(255, 255, 255, 1);
}

.espacio {
height: 20px;
}

.cambiarColor {
color: black;
}


.navbar-nav li {
margin: auto;
}

.navbar-nav {
width: 100%;
}

.navbar-collapse li {
padding: 5px 0;
}

img {
max-width: 100%;
max-height: 100%;
}
.inp_contacto{
margin: 3px 0;
}

.Copyright {}

.zoom_img{
transition: transform .2s;
}

.zoom_img:hover {
transform: scale(1.3);
}
.menu2{
color: black;
background-color: rgba(255, 255, 255, 1);
}

@media (min-width: 576px) {
.navbar-collapse {
display: grid !important;
}


.navbar-collapse li {
padding: 0;
}

.menu {
background-color: rgba(255, 255, 255, 0);
}

.cambiarColor {
color: white;
}

.principal {
margin-top: -116px;
}
.nosotros{
padding: 30px;
}
}

/* Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {}

/* Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {}

/* Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {}
13 changes: 13 additions & 0 deletions enviar.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php
$nombre = $_POST['nombre'];
$email = $_POST['correo'];
$telefono=$_POST['telefono'];
$mensaje=$_POST['mensaje'];
$asunto = 'Formulario pagina';
$correo = "Nombre: $nombre <br> Email: $email<br> telefono: $telefono <br><br> Mensaje: $mensaje"


if(mail('tuEmail', $asunto, $mensaje)){
echo "<script> alert('Correo enviado'); </script>";
}
?>
Loading