Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
brennovic committed Sep 8, 2024
2 parents 2ce7c22 + 9471e59 commit 8e9b618
Show file tree
Hide file tree
Showing 5 changed files with 81 additions and 23 deletions.
9 changes: 5 additions & 4 deletions 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>Portfolio Pessoa 1 & Pessoa 2</title>
<title>CodeHub</title>
<link rel="stylesheet" href="style.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<script type="module" src="https://unpkg.com/ionicons@7.1.0/dist/ionicons/ionicons.esm.js"></script>
Expand Down Expand Up @@ -129,9 +129,10 @@ <h2>Contato</h2>
<footer>
<p>© 2024 Brenno Victor & Matheus Fernandes – Todos os direitos reservados.</p>
<div class="social-icons">
<a href="#">Facebook</a>
<a href="#">Instagram</a>
<a href="#">LinkedIn</a>
<a href="#">Github Matheus</a>
<a href="#">Github Brenno</a>
<a href="#">LinkedIn Matheus</a>
<a href="#">LinkedIn Brenno</a>
</div>
</footer>

Expand Down
19 changes: 0 additions & 19 deletions matheus.html

This file was deleted.

Empty file added portf/brenno.html
Empty file.
50 changes: 50 additions & 0 deletions portf/matheus.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
@charset "UTF-8";

* {
padding: 0;
margin: 0;
font-family: Arial, Helvetica, sans-serif;
box-sizing: border-box;
}

html, body {
font-family: "Nunito";
height: 100vh;
width: 100vw;
background-color: #d3d3d3;
overflow-x: hidden;
}

#tree {
width: 100px;
height: 100px;
border-radius: 50%;
box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.41);
margin: 10px;
position: absolute;
left: 0;
top: 50%;
transform: translateY(-50%);
display: flex;
align-items: center;
justify-content: center;
text-align: center;
color: rgb(0, 0, 0);

}

#tree:hover {
border: 2px solid white;
transform: translate(-3px, calc(-50% - 3px));
box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.41);
}

main {
position: relative;
height: 96vh;
}

body {
background-size: cover;
background-attachment: fixed;
}
26 changes: 26 additions & 0 deletions portf/matheus.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="/portf/matheus.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
</style>

</head>
<body>
<header>

</header>
<section>
<div id="tree">
<strong>projetos</strong>
</div>
</section>
<footer>

</footer>
</body>
</html>

0 comments on commit 8e9b618

Please sign in to comment.