-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' of https://github.com/IEEE-ESTl/IEEE-ESTl-Student…
- Loading branch information
Showing
17 changed files
with
260 additions
and
193 deletions.
There are no files selected for viewing
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
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,53 @@ | ||
<section id="Inicio"> | ||
<div class="containerInicio"> | ||
<section class="filtroInicio"> | ||
<div class="menuInicio"> | ||
<img | ||
src="/Inicio/ieeelogo1.png" | ||
class="logoIEEE" | ||
alt="Logo de IEEE" | ||
/> | ||
|
||
<button class="botonNav">Inicio</button> | ||
<button class="botonNav">Eventos</button> | ||
<button class="botonNav">Próximamente</button> | ||
<button class="botonNav"><a href="#Unete">Únete</a></button> | ||
<button class="botonNav">FAQ</button> | ||
<div class="RedesyInicio"> | ||
<button class="botonNav">Redes</button> | ||
<button class="irInicio">Inicio</button> | ||
</div> | ||
</div> | ||
|
||
<div class="contenedorBienvenida"> | ||
<div class="textobienvenida"> | ||
<h1>Save time by building fast with Boldo</h1> | ||
<p> | ||
Lorem Ipsum es simplemente el texto de relleno de | ||
las imprentas y archivos de texto. Lorem Ipsum ha | ||
sido el texto de relleno estándar de las | ||
</p> | ||
<div class="divContactar"> | ||
<button class="Contactar1">Contactar</button> | ||
<button class="Contactar2">Contactar</button> | ||
</div> | ||
</div> | ||
<div class="imagenesbienvenida"> | ||
<img class="imgarriba" src="/Inicio/1.png" /> | ||
<div> | ||
<img class="imgabajo" src="/Inicio/2.png" /> | ||
<img class="imgabajo" src="/Inicio/3.jpg" /> | ||
</div> | ||
</div> | ||
</div> | ||
<div class="logotiposBienvenida"> | ||
<img src="/Inicio/csociety_logo.png" /> | ||
<img src="/Inicio/uaeh_logo_color.png" /> | ||
<img src="/Inicio/logoESTL.png" /> | ||
<img src="/Inicio/ieeelogo2.png" /> | ||
</div> | ||
</section> | ||
|
||
<div class="esferaAzul ubicacionEsfera"></div> | ||
</div> | ||
</section> |
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
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
228 changes: 122 additions & 106 deletions
228
cssInicio/contenedorBienvenida.css → ...onents/cssInicio/contenedorBienvenida.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,107 +1,123 @@ | ||
.contenedorBienvenida { | ||
border: none; | ||
overflow: auto; | ||
margin-top: 15vh; | ||
display: flex; | ||
flex-direction: row; | ||
font-family: "Cousine", monospace; | ||
} | ||
|
||
.textobienvenida { | ||
width: 45%; | ||
padding: 35px; | ||
padding-top: 13vh; | ||
padding-left: 6vw; | ||
} | ||
|
||
.textobienvenida p { | ||
padding-left: 3px; | ||
text-align: justify; | ||
} | ||
|
||
.imagenesbienvenida { | ||
width: 55%; | ||
} | ||
|
||
.imagenesbienvenida { | ||
background-color: transparent; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
|
||
.logotiposBienvenida { | ||
clear: both; | ||
background-color: transparent; | ||
} | ||
|
||
.divContactar { | ||
margin-left: 30px; | ||
} | ||
|
||
|
||
|
||
.Contactar1, | ||
.Contactar2 { | ||
font-weight: bolder; | ||
letter-spacing: 0.7px; | ||
margin-right: 6px; | ||
padding: 5px; | ||
border: none; | ||
cursor: pointer; | ||
transition: transform 0.3s ease; | ||
border-radius: 16px; | ||
padding-left: 20px; | ||
padding-right: 20px; | ||
} | ||
|
||
.Contactar1 { | ||
background-color: var(--azulfuerte); | ||
color: white; | ||
border: 2px solid var(--azulfuerte); | ||
} | ||
|
||
.Contactar2 { | ||
background-color: white; | ||
color: var(--azulfuerte); | ||
border: 2px solid var(--azulfuerte); | ||
} | ||
|
||
.Contactar1:hover, | ||
.Contactar2:hover { | ||
transform: translateY(-5px); | ||
} | ||
|
||
.imagenesbienvenida img { | ||
height: 170px; | ||
object-fit: cover; | ||
border-radius: 4px; | ||
margin: 9px; | ||
} | ||
|
||
|
||
.imagenesbienvenida .imgarriba { | ||
width: 490px; | ||
position: relative; | ||
} | ||
|
||
.imagenesbienvenida .imgabajo { | ||
position: relative; | ||
width: 230px; | ||
} | ||
|
||
|
||
|
||
.logotiposBienvenida { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
padding-top: 8vh; | ||
} | ||
|
||
.logotiposBienvenida img { | ||
height: 44px; | ||
margin-left: 22px; | ||
* | ||
{ | ||
border: 0; | ||
margin: 0; | ||
padding: 0; | ||
scroll-behavior: smooth; | ||
} | ||
.contenedorBienvenida { | ||
|
||
margin-top: 15vh; | ||
display: flex; | ||
flex-direction: row; | ||
font-family: "Cousine", monospace; | ||
} | ||
|
||
.textobienvenida { | ||
width: 45%; | ||
padding: 35px; | ||
padding-top: 13vh; | ||
padding-left: 6vw; | ||
color: black; | ||
} | ||
|
||
.textobienvenida p { | ||
padding-left: 3px; | ||
text-align: justify; | ||
color: black; | ||
} | ||
|
||
.imagenesbienvenida { | ||
width: 55%; | ||
} | ||
|
||
.imagenesbienvenida { | ||
background-color: transparent; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
align-items: center; | ||
} | ||
|
||
|
||
.logotiposBienvenida { | ||
clear: both; | ||
background-color: transparent; | ||
} | ||
|
||
.divContactar { | ||
margin-left: 30px; | ||
} | ||
|
||
|
||
|
||
.Contactar1, | ||
.Contactar2 { | ||
font-weight: bolder; | ||
letter-spacing: 0.7px; | ||
margin-right: 6px; | ||
padding: 5px; | ||
border: none; | ||
cursor: pointer; | ||
transition: transform 0.3s ease; | ||
border-radius: 16px; | ||
padding-left: 20px; | ||
padding-right: 20px; | ||
} | ||
|
||
.Contactar1 { | ||
background-color: var(--azulfuerte); | ||
color: white; | ||
border: 2px solid var(--azulfuerte); | ||
} | ||
|
||
.Contactar2 { | ||
background-color: white; | ||
color: var(--azulfuerte); | ||
border: 2px solid var(--azulfuerte); | ||
} | ||
|
||
.Contactar1:hover, | ||
.Contactar2:hover { | ||
transform: translateY(-5px); | ||
} | ||
|
||
.imagenesbienvenida img { | ||
height: 170px; | ||
object-fit: cover; | ||
border-radius: 4px; | ||
margin: 9px; | ||
} | ||
|
||
|
||
.imagenesbienvenida .imgarriba { | ||
width: 490px; | ||
position: relative; | ||
} | ||
|
||
.imagenesbienvenida .imgabajo { | ||
position: relative; | ||
width: 230px; | ||
} | ||
|
||
|
||
|
||
.logotiposBienvenida { | ||
height: 90px; | ||
width: 100vw; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
margin-top: 8vh; | ||
} | ||
|
||
.logotiposBienvenida img { | ||
width: 100%; | ||
height: 100%; | ||
margin-left: 22px; | ||
} | ||
a | ||
{ | ||
text-decoration: none; | ||
color: black; | ||
} |
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
Oops, something went wrong.