Skip to content

Commit

Permalink
Updating website
Browse files Browse the repository at this point in the history
  • Loading branch information
glbessa committed Dec 1, 2023
1 parent 0ac7aa5 commit 4f14051
Show file tree
Hide file tree
Showing 2 changed files with 109 additions and 0 deletions.
48 changes: 48 additions & 0 deletions assets/css/style.css
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%;
}
61 changes: 61 additions & 0 deletions index.html
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>

0 comments on commit 4f14051

Please sign in to comment.