62 lines
996 B
SCSS
62 lines
996 B
SCSS
.modal-tiket {
|
|
z-index: 9;
|
|
height: 100%;
|
|
width: 100%;
|
|
background-color: rgba(0, 0, 0, 0.11);
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
transform: scale(0);
|
|
}
|
|
|
|
.modal-tiket.active {
|
|
transform: scale(1);
|
|
}
|
|
|
|
.modal-tiket__content {
|
|
height: 500px;
|
|
background: #ffffff;
|
|
border: 1px solid #dde2e4;
|
|
border-radius: 8px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
|
|
.author {
|
|
padding: 25px 0 0 0;
|
|
border-radius: 8px 0 0 8px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
width: 76px;
|
|
background: #fbfbfb;
|
|
|
|
a {
|
|
margin-bottom: 16px;
|
|
}
|
|
}
|
|
|
|
.content {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 600px;
|
|
|
|
.title-project {
|
|
font-family: "LabGrotesque", sans-serif;
|
|
margin: 26px 0 0 21px;
|
|
font-weight: 700;
|
|
font-size: 16px;
|
|
|
|
&__category {
|
|
margin-right: 17px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.workers {
|
|
width: 300px;
|
|
}
|
|
}
|