add home page
This commit is contained in:
@ -6,4 +6,62 @@
|
||||
.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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
68
src/assets/styles/home.module.scss
Normal file
68
src/assets/styles/home.module.scss
Normal file
@ -0,0 +1,68 @@
|
||||
.main {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.wrapper {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.header {
|
||||
width: 60%;
|
||||
height: 30%;
|
||||
text-align: center;
|
||||
&__top {
|
||||
font-size: 30px;
|
||||
font-family: "Montserrat", sans-serif;
|
||||
color: rgb(100, 100, 100);
|
||||
}
|
||||
&__bottom {
|
||||
font-size: 30px;
|
||||
font-family: "Montserrat", sans-serif;
|
||||
color: rgb(100, 100, 100);
|
||||
}
|
||||
}
|
||||
|
||||
.content {
|
||||
width: 60%;
|
||||
height: 50%;
|
||||
box-shadow: 0 0 5px 1px rgb(180, 180, 180);
|
||||
padding: 1% 0;
|
||||
&__title {
|
||||
height: 30%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
&__wrapper {
|
||||
h3 {
|
||||
font-size: 35px;
|
||||
font-family: "Montserrat", sans-serif;
|
||||
color: rgb(100, 100, 100);
|
||||
}
|
||||
}
|
||||
}
|
||||
&__token {
|
||||
height: 50%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
&__wrapper {
|
||||
height: 35%;
|
||||
width: 80%;
|
||||
}
|
||||
}
|
||||
&__search {
|
||||
height: 20%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
&__wrapper {
|
||||
height: 70%;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user