Files
Hangman-game-with-React/public/sass/control-panel/_account-preview.scss
2021-10-25 21:39:07 -03:00

69 lines
1.1 KiB
SCSS

.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: 0px 0.5vw;
padding-bottom: 1vh;
border-radius: 10px;
&.show {
opacity: 100%;
transition: 0.4s ease-in-out;
}
}
}