f5ac00f909
tslint has been deprecated so it's nice to switch to eslint. Currently this uses a minimal eslint, to get things up and running. node-sass requires C which does not work nicely on all platforms. Change-Id: I3ca9adf2971475c009e541652b7637c18ad960f4
72 lines
1.4 KiB
CSS
72 lines
1.4 KiB
CSS
/* Copyright (C) 2019 Storj Labs, Inc. */
|
|
|
|
/* See LICENSE for copying information. */
|
|
|
|
@font-face {
|
|
font-family: 'font_regular';
|
|
font-display: swap;
|
|
src: url('../fonts/font_regular.ttf') format('truetype');
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.container__title {
|
|
font-family: 'font_regular', sans-serif;
|
|
font-weight: bold;
|
|
font-size: 32px;
|
|
line-height: 39px;
|
|
}
|
|
|
|
.container__info {
|
|
width: 566px;
|
|
text-align: center;
|
|
font-family: 'font_regular', sans-serif;
|
|
font-size: 18px;
|
|
line-height: 26px;
|
|
}
|
|
|
|
.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;
|
|
}
|
|
|
|
.container__button p {
|
|
font-family: 'font_regular', sans-serif;
|
|
font-weight: bold;
|
|
font-size: 16px;
|
|
line-height: 23px;
|
|
color: #fff;
|
|
}
|
|
|
|
.container__button:hover {
|
|
box-shadow: 0 4px 20px rgba(35, 121, 236, 0.4);
|
|
}
|