-
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.
- Loading branch information
Showing
2 changed files
with
109 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
body { | ||
margin: 0; | ||
padding: 0 10%; | ||
background-color: #f99f00; | ||
} | ||
|
||
main { | ||
backdrop-filter: blur(80%); | ||
} | ||
|
||
a { | ||
text-decoration: none; | ||
color: white; | ||
} | ||
|
||
a:hover { | ||
text-decoration: none; | ||
} | ||
|
||
#cardsContainer { | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: center; | ||
align-items: center; | ||
flex-wrap: wrap; | ||
} | ||
|
||
.card { | ||
display: inline-block; | ||
align-items: center; | ||
width: 200px; | ||
height: 200px; | ||
border-radius: 10px 0px 10px 0px; | ||
background: radial-gradient(circle, rgba(255,90,159,1) 35%, rgba(195,29,127,1) 100%); | ||
margin: 10px; | ||
padding: 20px; | ||
} | ||
|
||
.card * { | ||
text-align: center; | ||
} | ||
|
||
.card img { | ||
display: block; | ||
margin: 0 auto; | ||
border: 3.5px solid white; | ||
border-radius: 50%; | ||
} |
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,61 @@ | ||
<!DOCTYPE html> | ||
<html lang="pt-br"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Pop Planet Team</title> | ||
<link rel="stylesheet" href="./assets/css/style.css"> | ||
</head> | ||
<body> | ||
<main> | ||
<h1>Pop Planet Team</h1> | ||
<p>Olá, seja bem vindo ao nosso site!</p> | ||
<p>Estamos em construção, mas em breve teremos novidades!</p> | ||
|
||
<section id="projects"> | ||
<h2>Nossos projetos</h2> | ||
</section> | ||
<section id="team"> | ||
<h2>Conheça nosso time</h2> | ||
<div id="cardsContainer"> | ||
<div id="gabrielCard" class="card"> | ||
<a href="https://github.com/glbessa"> | ||
<img src="https://avatars.githubusercontent.com/u/20001136?v=4" width="100px" height="100px"> | ||
<div> | ||
<h3>Gabriel Leite Bessa</h3> | ||
<p>Game Designer</p> | ||
</div> | ||
</a> | ||
</div> | ||
<div id="jelsonCard" class="card"> | ||
<a href="https://github.com/JelsonRodrigues"> | ||
<img src="https://avatars.githubusercontent.com/u/88675696?v=4" width="100px" height="100px"> | ||
<div> | ||
<h3>Jelson Rodrigues</h3> | ||
<p>Game Designer</p> | ||
</div> | ||
</a> | ||
</div> | ||
<div id="viniciusCard" class="card"> | ||
<a href="https://github.com/Vinigperuzzi"> | ||
<img src="https://avatars.githubusercontent.com/u/88754301?v=4" width="100px" height="100px"> | ||
<div> | ||
<h3>Vinícius Garcia Peruzzi</h3> | ||
<p>Game Designer</p> | ||
</div> | ||
</a> | ||
</div> | ||
<div id="ravilonCard" class="card"> | ||
<a href="https://github.com/ravilon"> | ||
<img src="https://avatars.githubusercontent.com/u/94138486?v=4" width="100px" height="100px"> | ||
<div> | ||
<h3>Ravilon Aguiar dos Santos</h3> | ||
<p>Game Designer</p> | ||
</div> | ||
</a> | ||
</div> | ||
</div> | ||
</section> | ||
</main> | ||
</body> | ||
</html> |