Skip to content

Commit

Permalink
Fixing some styling details
Browse files Browse the repository at this point in the history
  • Loading branch information
Ezequiel-Mathias committed Aug 5, 2023
1 parent 08fe0cc commit 515cb99
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 31 deletions.
Binary file added img/perfil.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 13 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<body>

<header>

<nav>

<div class="menu-name">
Expand Down Expand Up @@ -64,12 +64,16 @@ <h1>Ezequiel Mathias</h1>
<p>“O código limpo sempre parece ter sido escrito por alguém que se importa.” <br>
― Robert C. Martin, Clean Code
</p>
<a href="./Curriculum/Ezequeil-Mathias.docx" download="Ezequiel-Mathias.docx"
type="application/vnd.openxmlformats-officedocument.wordprocessingml.document">
<div class="button-download-curriculum">
BAIXAR CURRÍCULO
</div>
</a>

<div class="container-button-download-curriculum">
<a href="./Curriculum/Ezequeil-Mathias.docx" download="Ezequiel-Mathias.docx"
type="application/vnd.openxmlformats-officedocument.wordprocessingml.document">
<div class="button-download-curriculum">
BAIXAR CURRÍCULO
</div>
</a>
</div>



</div>
Expand All @@ -92,9 +96,10 @@ <h1>Ezequiel Mathias</h1>

<div class="profile-picture">
<div class="picture">

<img src="./img/perfil.jpeg" alt="">
</div>
</div>

<h1>Ezequiel Mathias</h1>

<div class="contacts">
Expand Down
10 changes: 0 additions & 10 deletions js/ScrollReveal.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,6 @@ window.sr = ScrollReveal({ reset: true });

sr.reveal('.short-presentation', {duration: 2000});

sr.reveal('.about', {
rotate: {x: 20, y: 80, z: 0},
duration: 2000
});

sr.reveal('.profile-contacts', {
rotate: {x: 20, y: 80, z: 20},
duration: 2000
});

sr.reveal('.all-skills', {
duration: 2000
});
Expand Down
44 changes: 31 additions & 13 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

html {
scroll-behavior: smooth;

}

body {
Expand Down Expand Up @@ -44,6 +45,7 @@ header {
z-index: 10;
}


header nav {
display: flex;
justify-content: space-between;
Expand Down Expand Up @@ -151,6 +153,11 @@ header nav h1 {

.short-presentation a {
text-decoration: none;

}

.container-button-download-curriculum {
width: clamp(12rem, 16vw, 14.4rem);
}

.button-download-curriculum {
Expand Down Expand Up @@ -209,7 +216,7 @@ header nav h1 {
display: flex;
flex-direction: column;
align-items: center;
visibility: hidden;

}

.about p {
Expand Down Expand Up @@ -258,14 +265,15 @@ header nav h1 {
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
position: absolute;
visibility: hidden;

justify-content: center;

}

.profile-picture {
height: 150px;
width: 150px;
height: 180px;
width: 180px;
border-radius: 100%;
border: solid 5px var(--green-water);
display: flex;
Expand All @@ -274,31 +282,41 @@ header nav h1 {
}

.picture {
height: 130px;
width: 130px;
height: 160px;
width: 160px;
border-radius: 100%;
background-color: var(--white);
}

.picture img {
width: 100%;
height: 100%;
border-radius: 100%;

}

.profile-contacts h1 {
font-weight: bolder;
margin-top: 8px;
font-size: clamp(1.4rem, 2vw, 1.5rem);
}

.profile-contacts .contacts {
.contacts {
margin-top: 16px;
display: flex;
align-items: center;
justify-content: center;
gap: clamp(1.3rem, 1.5vw, 2rem);
position: relative;
}



.profile-contacts .contacts img {
width: clamp(1.7rem, 3vw, 2rem);
}

.profile-contacts .contacts img:hover {
.contacts img:hover {
cursor: pointer;
transform: scale(1.1);
}
Expand Down Expand Up @@ -584,7 +602,7 @@ header nav h1 {
cursor: pointer;
}

#cell-phone:hover{
#cell-phone:hover {
cursor: auto;
}

Expand All @@ -608,7 +626,7 @@ header nav h1 {

footer {
margin-top: 168px;
height: clamp(4rem, 10vw, 5.625rem);
height: clamp(4rem, 10vw, 5rem);
background-color: var(--dark-blue);
display: flex;
justify-content: center;
Expand All @@ -622,8 +640,8 @@ footer span {
font-weight: bolder;
}

.button-download-curriculum:hover
,.container-close-information img:hover {
.button-download-curriculum:hover,
.container-close-information img:hover {
cursor: pointer;
}

Expand Down

0 comments on commit 515cb99

Please sign in to comment.