chrone: sperate client and server to different repos.

This commit is contained in:
a.bouhuolia
2021-09-21 17:13:53 +02:00
parent e011b2a82b
commit 18df5530c7
10015 changed files with 17686 additions and 97524 deletions

View File

@@ -0,0 +1,112 @@
.homepage {
&__container {
display: flex;
margin: 22px 32px;
background-color: transparent;
align-items: flex-start;
.shortcut-boxes {
flex: 2;
display: flex;
flex-wrap: wrap;
background-color: #fff;
border-bottom: 1px solid #d2dce2;
border-right: 1px solid #d2dce2;
max-width: 800px;
.shortcut-box {
width: 50%;
padding: 16px;
border-left: 1px solid #d2dce2;
border-top: 1px solid #d2dce2;
background-color: transparent;
transition: 0.2s;
a{
text-decoration: none;
}
&__header {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 14px;
span {
color: #d6d6e0;
}
.header--icon {
width: 38px;
height: 32px;
// background-color:#F3FEFA;
}
}
&__title {
font-size: 16px;
color: #48485c;
font-weight: 500;
line-height: 1.6rem;
margin-bottom: 10px;
}
&__description {
font-size: 14px;
font-weight: 400;
margin-bottom: 10px;
}
}
}
.announcements-list {
flex: 1;
flex-shrink: 0;
background-color: #fff;
border: 1px solid #d2dce2;
margin-left: 24px;
display: flex;
flex-direction: column;
padding-bottom: 32px;
max-width: 400px;
&__title {
font-size: 16px;
font-weight: 400;
margin: 16px;
}
.announcement-box {
padding: 16px;
width: 100%;
// margin-bottom: 20px;
&__title {
font-size: 14px;
font-weight: 500;
margin-bottom: 10px;
}
&____description {
}
&.announcement-box:not(:last-child) {
// border-top: 1px solid #d2dce2;
border-bottom: 1px solid #d2dce2;
}
}
.btn-view-all {
display: flex;
border-radius: 12px;
background: transparent;
padding: 5px;
margin: 20px;
vertical-align: middle;
text-align: center;
cursor: pointer;
text-decoration: none;
border: 1px solid;
justify-items: center;
justify-content: center;
}
}
}
}