Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 4

.

divEdicaoPerfil{
border-radius: 20px;
border: 1px solid silver;
width: 850px;
box-shadow: 0px 0px 20px silver;
}

.divBackgroundImg{
background-image: url("../../assets/images/figuras/imgFundo.jpg");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
width: 100%;
height: 160px;
border-radius: 20px 20px 0px 0px;
position: relative;
display: flex;
justify-content: center;
}

.divFotoDePerfil{
cursor: pointer;
background-image: url("../../assets/images/figuras/avatar.svg");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
width: 140px;
height: 140px;
border-radius: 50px;
top: 86px;
position: absolute;
}

.btnEditarFundo{
background-color: black;
border: 1px solid var(--laranjas);
width: 40px;
height: 40px;
border-radius: 100%;
display: flex;
align-items: center;
justify-content: center;
position: absolute;
left: 10px;
top: 10px;
}

.divContentPerfil{
padding: 100px;
}

/* ------------------------- INPUTS ANIMADOS -------------------------*/

.inputsLadoALado{
display: flex;
justify-content: space-between;
margin-bottom: 40px;
}
.contentInput{
display: flex;
align-items: center;
position: relative;
}

.inputAnimado{

height: 32px;
width: 300px;
border: none;
border-bottom: 1px solid grey;
padding: 6px 10px;
outline: none;
font-size: 12pt;
transition: 0.2s ease;
background: transparent;
z-index: 1111;
}

.inputAnimado::placeholder{
opacity: 0;
}

.inputAnimado:focus::placeholder{
opacity: 1;
}

.labelLine{
position: absolute;
transition: 0.2s ease;
margin: 0px 11px;
color: grey;
background-color: whitesmoke;
font-size: 12pt;
}

.inputAnimado:focus,
.inputAnimado:valid{
border-bottom: 1px solid var(--laranja);
}

.inputAnimado:focus +.labelLine,
.inputAnimado:valid +.labelLine{
transform: translate(-4px,-20px) scale(0.84);
padding: 0 6px;
color: var(--laranja);
z-index: 1111;
}

input:hover{
cursor: text;
}

input[type=date]:required:invalid::-webkit-datetime-edit {
color: transparent;
}
input[type=date]:focus::-webkit-datetime-edit {
color: black !important;
}

input[type=date]:focus +.labelLine,
input[type=date]:valid +.labelLine{
transform: translate(-12px,-20px) scale(0.84);
}

small{
display: flex;
margin-left: 11px;
color: red;
}

/* ------------------------- TEXTAREA ANIMADA -------------------------*/

.divTextArea {
display: flex;
height: 130px;
margin-top: 60px;
}

.containerTextArea, .contentInputTextArea, .textAreaAnimada{


height: 100%;
width: 100%;
}

.contentInputTextArea{
display: flex;
position: relative;
}

.textAreaAnimada{
border: 1px solid grey;
padding: 6px 10px;
border-radius: 8px;
outline: none;
font-size: 12pt;
transition: 0.2s ease;
background: transparent;
z-index: 1111;
resize: none;
}

.textArealabelLine{
position: absolute;
transition: 0.2s ease;
margin: 8px 11px;
color: grey;
background-color: whitesmoke;
font-size: 12pt;
}

.textAreaAnimada:focus,
.textAreaAnimada:valid{
border: 1px solid var(--laranja);
}
.textAreaAnimada:focus +.textArealabelLine,
.textAreaAnimada:valid +.textArealabelLine{
transform: translate(-6px,-17px) scale(0.84);
padding: 0 6px;
color: var(--laranja);
z-index: 1111;
}

/* ------------------------- Adiciona Elementos -------------------------*/

.divAdiconaElementos{
margin: 50px 0px;
}

.divTituloAddElementos{
display: flex;
align-items: center
}

.inputSimples{
outline: 0;
background: none;
border: none;
border-bottom: 1px solid gray;
margin: 0px 24px 0px 6px;
font-size: 12pt;
}

.btnAdicionarElemento{
width: 36px;
height: 36px;
border-radius: 100%;
display: flex;
justify-content: center;
align-items: center;
}

.elementosAdicionados{
margin-top: 24px;
}

.elementosAdicionados li{
margin: 0px 20px 20px 0px;
padding: 10px;
border-radius: 20px;
box-shadow: 0px 0px 8px silver;
transition: 0.2s ease;
cursor: default;
width: auto;
float: left;
}

.elementosAdicionados li:hover{
transform: scale(1.08);
}

You might also like