Account preview done

This commit is contained in:
2021-10-25 17:12:37 -03:00
parent cef25f5999
commit 423c8f9bfe
10 changed files with 239 additions and 9 deletions

View File

@@ -0,0 +1,67 @@
.account-preview {
@include titleFont();
position: absolute;
left: 88%;
top: 1vh;
padding: 2vh 0px;
display: flex;
flex-direction: column;
align-items: center;
.initials {
height: 8vh;
width: 8vh;
color: #fff;
background-color: rgb(81, 81, 255);
font-size: 3vh;
border-radius: 100%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
user-select: none;
&.inclusive {
font-size: 11pt;
}
}
.full-name {
height: 5vh;
width: 10vw;
margin-top: 0.5vh;
background-color: rgba(0, 0, 0, 0.658);
color: #fff;
display: flex;
justify-content: center;
opacity: 0%;
transition: 0.4s ease-in-out;
text-align: center;
padding-bottom: 1vh;
&.show {
opacity: 100%;
transition: 0.4s ease-in-out;
}
}
}