Skip to content

Commit

Permalink
1 versão tela de perfil
Browse files Browse the repository at this point in the history
  • Loading branch information
Fenelas committed Nov 3, 2023
1 parent 07f157e commit 1d1ffb7
Show file tree
Hide file tree
Showing 2 changed files with 107 additions and 16 deletions.
9 changes: 5 additions & 4 deletions frontend/src/pages/Perfil.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@ function Perfil () {
<div className="fundo-Perfil">
<div className="main-perfil">
<div className="left-perfil">
<span>Editar Perfil</span>
<span>Gerenciador de Falta</span>
<button>Voltar</button>
<h2> UNB </h2>
<span className="Editar-perfil"> Editar Perfil</span><br></br><br></br><br></br><br></br><br></br>
<span className="Geren-falt">Gerenciador de Falta</span><br></br>
<button className="button-Perfil">Voltar</button>
</div>
<div className="right-perfil">
<h3>Materias Semestre</h3>
<h3>Materias Semestre </h3>

</div>
</div>
Expand Down
114 changes: 102 additions & 12 deletions frontend/src/stylesheets/Perfil.css
Original file line number Diff line number Diff line change
Expand Up @@ -20,25 +20,115 @@ html {
body {
background: linear-gradient(180deg, #0a0e19 0%, rgba(10, 14, 25, 0) 100%);
}

/*Tela-de-fundo*/
.fundo-Perfil{

background-color: white;
width: 50%;
height: 50%;
width:100%;
height: 100%;
margin: 0 auto;
background-color: #0d1117;
border-radius: 30px 30px 30px 30px;
}
/*Principal*/
.main-perfil{
background-color: green;
width: 80%;
height: 40%;
}
width: 1520px;
height: 735px;
display: flex;

.left-Perfil{
background-color: red;
color: green;
}

.h3{
font-size: 50%;
/*Parte-esquerda*/
.left-Perfil{
display: flex;
width: 50%;
height: 50%;


}
h2{
display: flex;
margin-bottom: 40%;
height: 25%;
margin-left: 100px;
margin-top: -20%;
color: white;
text-align: center;
font-family: 'fonts/Inter';
font-size: 35px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: 3.85px;
display: flex;
flex-direction: column;
justify-content: center;
}

.Editar-perfil{
margin-left: 100px;
color: white;
text-align: center;
font-family: 'fonts/Inter';
font-size: 23px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: 2.64px;

}
.Geren-falt{
flex-direction: column;
display: flex;
margin-left: 70px;
color: white;
text-align: center;
font-family: 'fonts/Inter';
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: normal;
letter-spacing: 2.64px;

}
.button-Perfil{
color: white;
margin-top: 270px;
margin-left: 120px;
font-size: 23px;
display: flex;
text-transform: uppercase;
letter-spacing: 0.8px;
line-height: normal;
font-weight: 500;
justify-content: center;
border: none;
border-radius: 10px;
display: flex;
align-items: center;
background: #0d1117;

}
.button-Perfil button{
text-decoration: none;

}

/*Parte-direita*/
.right-perfil{
border-radius: 30px;
margin-left: 15%;
width: 65%;
height: 80%;
background-color:white;
text-align: center;
margin-top: 100px;

}

h3{
font-size: 100%;
color: black;
text-align: center;

}

0 comments on commit 1d1ffb7

Please sign in to comment.