2019-06-23 19:18:41 +03:00
|
|
|
.splash {
|
|
|
|
width: 100vw;
|
|
|
|
height: 100vh;
|
2019-10-10 21:58:00 +03:00
|
|
|
padding: 16px;
|
2019-06-23 19:18:41 +03:00
|
|
|
|
|
|
|
background-color: #7289da;
|
|
|
|
background-image: linear-gradient(225deg, #7289da 0%, #5d70b4 100%);
|
|
|
|
color: #fff;
|
|
|
|
|
|
|
|
display: flex;
|
2019-10-10 21:58:00 +03:00
|
|
|
flex-direction: column;
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: center;
|
2019-06-23 19:18:41 +03:00
|
|
|
|
2019-10-10 21:58:00 +03:00
|
|
|
& a {
|
2019-06-23 19:18:41 +03:00
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
2019-10-10 21:58:00 +03:00
|
|
|
& > #error {
|
|
|
|
width: 100%;
|
|
|
|
max-width: 750px;
|
|
|
|
flex-direction: row;
|
|
|
|
justify-content: center;
|
|
|
|
|
|
|
|
&.has-error {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
& .message {
|
|
|
|
flex: 0 1 auto;
|
|
|
|
text-align: left;
|
|
|
|
padding: 8px 12px;
|
|
|
|
background-color: #404040;
|
|
|
|
border-radius: 4px;
|
|
|
|
box-shadow: 0 3px 12px -2px hsla(0, 0%, 0%, 0.2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
& .wrapper {
|
|
|
|
flex: 0 0 auto;
|
|
|
|
|
|
|
|
width: 750px;
|
|
|
|
max-width: 100%;
|
2019-07-22 00:11:24 +03:00
|
|
|
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2019-10-10 21:58:00 +03:00
|
|
|
align-items: flex-start;
|
2019-06-23 19:18:41 +03:00
|
|
|
|
2019-10-10 21:58:00 +03:00
|
|
|
& .logo-column {
|
2019-07-22 00:11:24 +03:00
|
|
|
flex: 0 0 auto;
|
|
|
|
}
|
2019-06-23 19:18:41 +03:00
|
|
|
|
2019-10-10 21:58:00 +03:00
|
|
|
& .info-column {
|
2019-07-22 00:11:24 +03:00
|
|
|
flex: 1 1 100%;
|
|
|
|
}
|
|
|
|
|
2019-10-10 21:58:00 +03:00
|
|
|
& .logo {
|
2019-06-23 19:18:41 +03:00
|
|
|
width: 300px;
|
|
|
|
height: 300px;
|
2019-10-10 21:58:00 +03:00
|
|
|
margin-right: 48px;
|
2019-06-23 19:18:41 +03:00
|
|
|
}
|
|
|
|
|
2019-10-10 21:58:00 +03:00
|
|
|
& h1 {
|
2019-06-23 19:18:41 +03:00
|
|
|
font-size: 80px;
|
|
|
|
font-weight: 300;
|
|
|
|
margin-top: 40px
|
|
|
|
}
|
|
|
|
|
2019-10-10 21:58:00 +03:00
|
|
|
& .description {
|
2019-06-23 19:18:41 +03:00
|
|
|
color: #f1f5ff;
|
|
|
|
}
|
|
|
|
|
2019-10-10 21:58:00 +03:00
|
|
|
& .actions {
|
2019-06-23 19:18:41 +03:00
|
|
|
display: flex;
|
2019-07-22 00:11:24 +03:00
|
|
|
flex-wrap: wrap;
|
|
|
|
margin-top: 8px;
|
2019-10-10 21:58:00 +03:00
|
|
|
margin-left: -12px;
|
2019-06-23 19:18:41 +03:00
|
|
|
|
2019-10-10 21:58:00 +03:00
|
|
|
& .btn {
|
2019-06-23 19:18:41 +03:00
|
|
|
margin: 12px;
|
|
|
|
text-decoration: none;
|
|
|
|
padding: 8px 24px;
|
|
|
|
border: 1px solid #fff;
|
|
|
|
border-radius: 4px;
|
|
|
|
transition: all 120ms ease-in-out;
|
|
|
|
background-color: hsla(0, 0%, 100%, 0.05);
|
|
|
|
|
|
|
|
&:not(.disabled):hover {
|
|
|
|
background-color: hsla(0, 0%, 100%, 0.25);
|
|
|
|
box-shadow: 0 3px 12px -2px hsla(0, 0%, 0%, 0.2);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.disabled {
|
|
|
|
cursor: default;
|
|
|
|
opacity: 0.75;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-07-22 00:11:24 +03:00
|
|
|
|
2019-10-10 21:58:00 +03:00
|
|
|
& .error {
|
2019-07-22 00:11:24 +03:00
|
|
|
margin-top: 8px;
|
|
|
|
background-color: hsl(224, 52%, 32%);
|
|
|
|
padding: 12px;
|
|
|
|
border-radius: 4px;
|
|
|
|
}
|
2019-06-23 19:18:41 +03:00
|
|
|
}
|
|
|
|
}
|