07da9d17c4
Change-Id: I6d94a25a6507d1ab27fa223f042db91cc2cfd4e5
120 lines
2.5 KiB
SCSS
120 lines
2.5 KiB
SCSS
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
p {
|
|
margin: 0;
|
|
}
|
|
|
|
.project-creation-success-popup-container {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background-color: rgba(134, 134, 148, 0.4);
|
|
z-index: 1000;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.project-creation-success-popup {
|
|
width: auto;
|
|
background-color: #fff;
|
|
border-radius: 6px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: flex-start;
|
|
position: relative;
|
|
justify-content: center;
|
|
padding: 140px 120px;
|
|
|
|
&__info-panel-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
align-items: flex-start;
|
|
margin-right: 80px;
|
|
|
|
&__title {
|
|
font-family: 'font_regular', sans-serif;
|
|
color: #34bf89;
|
|
font-size: 46px;
|
|
line-height: 56px;
|
|
width: auto;
|
|
max-width: 290px;
|
|
margin-top: 20px;
|
|
font-weight: 600;
|
|
}
|
|
}
|
|
|
|
&__form-container {
|
|
width: 100%;
|
|
max-width: 450px;
|
|
|
|
&__main-label-text {
|
|
font-family: 'font_bold', sans-serif;
|
|
font-size: 32px;
|
|
line-height: 42px;
|
|
color: #384b65;
|
|
margin: 0;
|
|
max-width: 320px;
|
|
}
|
|
|
|
&__button-container {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-top: 20px;
|
|
}
|
|
|
|
&__confirmation-text {
|
|
font-family: 'font_regular', sans-serif;
|
|
font-size: 16px;
|
|
line-height: 28px;
|
|
color: #373737;
|
|
margin: 19px 0 0 0;
|
|
|
|
&__link {
|
|
font-family: 'font_bold', sans-serif;
|
|
color: #2683ff;
|
|
}
|
|
}
|
|
}
|
|
|
|
&__close-cross-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
position: absolute;
|
|
right: 30px;
|
|
top: 40px;
|
|
height: 24px;
|
|
width: 24px;
|
|
cursor: pointer;
|
|
|
|
&:hover .close-cross-svg-path {
|
|
fill: #2683ff;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 960px) {
|
|
|
|
.project-creation-success-popup {
|
|
|
|
&__info-panel-container {
|
|
display: none;
|
|
}
|
|
|
|
&__form-container {
|
|
|
|
&__button-container {
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
}
|