44 lines
713 B
CSS
44 lines
713 B
CSS
.user-container {
|
|
justify-content: center;
|
|
align-items: center;
|
|
display: flex;
|
|
height: 70%;
|
|
}
|
|
|
|
.user-options {
|
|
justify-content: space-between;
|
|
flex-direction: column;
|
|
display: flex;
|
|
height: 60%;
|
|
}
|
|
|
|
.user-options ul {
|
|
justify-content: space-around;
|
|
flex-direction: column;
|
|
display: flex;
|
|
height: 100%;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.user-options li {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.user-options li a {
|
|
font-family: "Montserrat";
|
|
text-decoration: none;
|
|
font-weight: 400;
|
|
color: #ffffff;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.user-options li a:hover {
|
|
color: #f44336;
|
|
transition: 0.5s;
|
|
cursor: pointer;
|
|
opacity: 0.8;
|
|
}
|