67 lines
1.3 KiB
SCSS
67 lines
1.3 KiB
SCSS
.main {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.wrapper {
|
|
width: 100%;
|
|
height: 100%;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.menu {
|
|
width: 80%;
|
|
height: 100%;
|
|
&__authorized {
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
span {
|
|
margin-left: 2%;
|
|
display: block;
|
|
font-size: 15px;
|
|
color: rgb(80, 80, 80);
|
|
cursor: pointer;
|
|
&:hover {
|
|
color: rgb(66, 68, 189);
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.profile {
|
|
width: 20%;
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
&__authorized {
|
|
span {
|
|
font-size: 15px;
|
|
color: rgb(80, 80, 80);
|
|
cursor: pointer;
|
|
&:hover {
|
|
color: rgb(66, 68, 189);
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
}
|
|
&__nonAuthorized {
|
|
span {
|
|
font-size: 15px;
|
|
font-family: "Montserrat", sans-serif;
|
|
color: rgb(80, 80, 80);
|
|
cursor: pointer;
|
|
i {
|
|
|
|
}
|
|
&:hover {
|
|
color: rgb(66, 68, 189);
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
}
|
|
} |