Skip to content
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
20 changes: 16 additions & 4 deletions landing-page-1/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@ body {

.navbar {
display: flex;
justify-content: flex-end;
margin-right: 2%;
}

.menu {
Expand All @@ -109,15 +111,22 @@ body {
display: flex;
justify-content: space-between;
align-items: center;
margin-left: 1%;
margin-top: 4%;
}

.content__section-presentation__mixed {
position: relative;
}



.content__section-presentation__mixed::after {
content: "";
position: absolute;
display: flex;
justify-content: flex-start;
margin-top: -6%;
margin-bottom: 2%;
height: 1rem;
background: var(--bg-primary);
width: 100%;
Expand All @@ -128,16 +137,19 @@ body {
.content__section-gallery {
display: flex;
justify-content: flex-end;
margin-right: 2%;
}

.content__section-gallery__profile {
border-radius: 100%;
width: 85%;
border-radius: 150%;
width: 60%;
}

.footer {
display: flex;
justify-content: center;
align-items: center;
margin-top: 6%;
}

.footer__section-social {
Expand All @@ -153,5 +165,5 @@ body {
}

.footer__section-social__item path{
fill: #000000;
fill: #6D6AE0;
}
2 changes: 1 addition & 1 deletion landing-page-1/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<span class="menu__option__text">Sobre mí</span>
</li>
<li class="menu__option">
<span class="menu__option__text">Contacto</span>
<span class="menu__option__text">Contactos</span>
</li>
</ul>
</div>
Expand Down
14 changes: 12 additions & 2 deletions landing-page-2/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,9 @@ body {

.navbar {
display: flex;
justify-content: flex-end;
margin-bottom: 2%;
margin-right: 2%;
}

.navbar__section-social {
Expand All @@ -100,7 +103,7 @@ body {
}

.navbar__section-social__item path{
fill: #000000;
fill: #3ED182;
}

.content {
Expand All @@ -111,6 +114,7 @@ body {
.content__section-menu {
flex: 1;
height: 100%;
margin-left: 2%;
}

.menu {
Expand All @@ -132,12 +136,13 @@ body {
cursor: pointer;
border: 1px solid var(--bg-primary);
width: 90%;
box-shadow: 2px 2px 2px #3ED182;
}

.menu__option:nth-child(even) {
align-self: flex-end;
margin: 6rem 0;
text-align: center;
text-align: left;
}

.menu__option__text {
Expand All @@ -159,10 +164,15 @@ body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-end;
margin-right: 1%;
}

.content__section-gallery {
margin-top: 3rem;
display: flex;
justify-content: flex-end;
margin-right: 2%;
}

.content__section-gallery__profile {
Expand Down
6 changes: 3 additions & 3 deletions landing-page-2/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Landing page #2</title>
<title>Landing Page 2</title>
<link rel="stylesheet" href="index.css">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@300;500&display=swap" rel="stylesheet">
</head>
Expand All @@ -29,10 +29,10 @@
<div class="content__section content__section-menu">
<ul class="menu">
<li class="menu__option">
<span class="menu__option__text">Inicio</span>
<span class="menu__option__text">Sobre mí</span>
</li>
<li class="menu__option">
<span class="menu__option__text">Sobre mí</span>
<span class="menu__option__text">Proyectos</span>
</li>
<li class="menu__option">
<span class="menu__option__text">Contacto</span>
Expand Down