Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
BrennonMeireles committed Mar 6, 2024
1 parent f28c8df commit 541a4e4
Show file tree
Hide file tree
Showing 14 changed files with 212 additions and 0 deletions.
Empty file added css/experiencia.css
Empty file.
Empty file added css/footer.css
Empty file.
Empty file added css/formacao.css
Empty file.
37 changes: 37 additions & 0 deletions css/global.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
body {
font-family: "Fira Sans", Arial, sans-serif;
margin: 0px;
color: #141414;
}

h1, h2, h3, p {
margin: 0px;
}

ul {
margin: 0px;
padding: 0px;
list-style: none;
}

img {
max-width: 100%;
height: auto;
display: block;
}

.subtitulo {
font-size: 8rem;
line-height: 1;
text-transform: uppercase;
word-break: break-all;
max-width: 4ch;
}

@media (max-width: 800px) {
.subtitulo {
font-size: 3rem;
text-transform: capitalize;
max-width: initial !important;
}
}
29 changes: 29 additions & 0 deletions css/header.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
.header{
max-width: 1200px;
justify-content:space-between;
align-items: center;
padding: 40px 20px;
margin: auto;
display: flex;
}

#logo{
width: 105px;
height: 40px
}

.header-menu{
display: flex;
justify-content:center;
flex-wrap: wrap;
gap: 10px;
}

.header-menu a{
font-size: 16px;
line-height: 1.3;
padding: 10px 20px;
text-decoration: none;
color: #141414;
display: block;
}
64 changes: 64 additions & 0 deletions css/introducao.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
.introducao{
max-width: 1200px;
padding: 40px 20px;
margin: auto;
display: grid;
align-items: center;
gap: 100px;
grid-template-columns: 1fr 2fr;
}

.introducao h1{
/* font-size: 4.5rem; */
font-size: 72px;
line-height: 1.2;
margin-bottom: 30px;
position: relative;
}

.introducao h1::before{
content:"";
display: block;
width: 130px;
height: 100px;
background: url("../img/detalhe.svg") no-repeat center;
position: absolute;
top: -15px;
left: -40px;
z-index: -1;
}

.introducao p{
font-size: 24px;
color: #525252;
}

@media (max-width: 1000px){
.introducao h1{
font-size: 48px;
}
}

@media (max-width: 800px){
.introducao{
grid-template-columns: 1fr 1fr;
gap: 80px;
}
.introducao h1{
font-size: 32px;
}
.introducao h1::before{
width: 30px;
height: 10px;
left: 0px;
}
}

@media (max-width: 400px){
.introducao{
grid-template-columns: 1fr;
}
.introducao img {
display: none;
}
}
6 changes: 6 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
@import './global.css';
@import './header.css';
@import './introducao.css';
@import './experiencia.css';
@import './formacao.css';
@import './footer.css';
24 changes: 24 additions & 0 deletions img/cursos.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 4 additions & 0 deletions img/detalhe.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions img/idiomas.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 6 additions & 0 deletions img/marca.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added img/perfil.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
32 changes: 32 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>Lobo</title>
</head>
<body>
<header class="header">
<img src="./img/marca.svg" alt="logo" id="logo">
<nav>
<ul class="header-menu">
<li><a href="#experiencia">Experiência</a></li>
<li><a href="#formacao">Formação</a></li>
<li><a href="#contato">Contato</a></li>
</ul>
</nav>
</header>

<main class="introducao">
<img src="./img/perfil.jpg" alt="Logo do perfil">

<div>
<h1>Desenvolvedor<br>Front End &<br>UX/UI Designer</h1>
<p>Localizado no Rio de Janeiro</p>
</div>
</main>


</body>
</html>
1 change: 1 addition & 0 deletions onde paramos.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
vamos adicionar a section class = experiencia

0 comments on commit 541a4e4

Please sign in to comment.