2019-10-28 15:59:19 +00:00
|
|
|
/* Copyright (C) 2019 Storj Labs, Inc. */
|
|
|
|
|
|
|
|
/* See LICENSE for copying information. */
|
2019-05-13 16:53:52 +01:00
|
|
|
|
|
|
|
.container {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 1000;
|
|
|
|
width: 100%;
|
|
|
|
height: 100vh;
|
|
|
|
background-color: #fff;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
-webkit-touch-callout: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
-moz-user-select: none;
|
|
|
|
-ms-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2019-10-28 15:59:19 +00:00
|
|
|
.container__title {
|
2019-11-14 17:51:14 +00:00
|
|
|
font-family: 'font_regular', sans-serif;
|
2019-10-28 15:59:19 +00:00
|
|
|
font-weight: bold;
|
|
|
|
font-size: 32px;
|
|
|
|
line-height: 39px;
|
|
|
|
}
|
2019-05-13 16:53:52 +01:00
|
|
|
|
2019-10-28 15:59:19 +00:00
|
|
|
.container__info {
|
|
|
|
width: 566px;
|
|
|
|
text-align: center;
|
2019-11-14 17:51:14 +00:00
|
|
|
font-family: 'font_regular', sans-serif;
|
2019-10-28 15:59:19 +00:00
|
|
|
font-size: 18px;
|
|
|
|
line-height: 26px;
|
|
|
|
}
|
2019-05-13 16:53:52 +01:00
|
|
|
|
2019-10-28 15:59:19 +00:00
|
|
|
.container__button {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
background-color: #2683ff;
|
|
|
|
border-radius: 6px;
|
|
|
|
cursor: pointer;
|
|
|
|
width: 216px;
|
|
|
|
height: 48px;
|
|
|
|
margin-top: 30px;
|
|
|
|
}
|
2019-05-13 16:53:52 +01:00
|
|
|
|
2019-10-28 15:59:19 +00:00
|
|
|
.container__button p {
|
2019-11-14 17:51:14 +00:00
|
|
|
font-family: 'font_regular', sans-serif;
|
2019-10-28 15:59:19 +00:00
|
|
|
font-weight: bold;
|
|
|
|
font-size: 16px;
|
|
|
|
line-height: 23px;
|
|
|
|
color: #fff;
|
|
|
|
}
|
2019-05-13 16:53:52 +01:00
|
|
|
|
2019-10-28 15:59:19 +00:00
|
|
|
.container__button:hover {
|
|
|
|
box-shadow: 0 4px 20px rgba(35, 121, 236, 0.4);
|
|
|
|
}
|