-
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.
[ADD] - Adicionando novos arquivos e desenvolvendo todo o conteudo do…
… site
- Loading branch information
1 parent
78feaea
commit 1b29010
Showing
4 changed files
with
138 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
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,97 @@ | ||
*{ | ||
padding: 0; | ||
margin: 0; | ||
box-sizing: border-box; | ||
} | ||
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap'); | ||
:root { | ||
--color-back: #141414; | ||
--color-white: #FFFFFF; | ||
--color-gray: #7B7B7B; | ||
} | ||
body { | ||
background-color: var(--color-back); | ||
font-family: 'Roboto', sans-serif; | ||
} | ||
h1 { | ||
color: var(--color-white); | ||
font-size: 3.5vw; | ||
font-weight:lighter; | ||
text-align: center; | ||
margin-bottom: 3%; | ||
} | ||
article h3 { | ||
color: var(--color-gray); | ||
font-weight:bolder; | ||
text-align: center; | ||
} | ||
article button { | ||
align-items: center; | ||
} | ||
section { | ||
width: 100%; | ||
max-width: 1155px; | ||
margin: 244px auto 0px auto; | ||
height: 100%; | ||
padding-left: 20px; | ||
padding-right: 20px; | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: space-between; | ||
align-items: center; | ||
|
||
} | ||
.list-profile { | ||
width: 100%; | ||
display: flex; | ||
justify-content: space-around; | ||
margin-bottom: 10%; | ||
} | ||
.list-profile__box { | ||
max-width: 16.78%; | ||
cursor: pointer; | ||
} | ||
article img { | ||
width: 100%; | ||
max-width: 194px; | ||
max-height: 194px; | ||
border-radius: 3%; | ||
margin-bottom: 10px; | ||
} | ||
article:hover img { | ||
border: solid 4px var(--color-white); | ||
} | ||
article:hover h3 { | ||
transition: 5ms; | ||
color: var(--color-white); | ||
} | ||
button { | ||
width: 100%; | ||
max-width: 270px; | ||
height: 55px; | ||
background-color: transparent; | ||
border: solid 2px var(--color-gray); | ||
font-family: 'Roboto', sans-serif; | ||
font-size: 25px; | ||
font-weight: 500; | ||
color: var(--color-gray); | ||
cursor: pointer; | ||
} | ||
|
||
button:hover{ | ||
color: var(--color-white); | ||
border: solid 2px var(--color-white); | ||
transition: 0.2s; | ||
} | ||
.hidden { | ||
opacity: 0; | ||
visibility: hidden; | ||
transition: opacity 1s; | ||
} | ||
|
||
.visible { | ||
opacity: 1; | ||
visibility: visible; | ||
transition: 1s; | ||
} | ||
|
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,8 @@ | ||
//Efeito Delay list profile | ||
document.addEventListener("DOMContentLoaded", function() { | ||
var container = document.getElementById('container'); | ||
setTimeout(function() { | ||
container.classList.remove('hidden'); | ||
container.classList.add('visible'); | ||
}, 100); | ||
}); |