storj/web/satellite/static/errors/error.css
Egon Elbre f5ac00f909 web/satellite: switch to eslint, sass, bump deps
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
2021-08-03 15:56:33 +00:00

62 lines
1.2 KiB
CSS

/* Copyright (C) 2021 Storj Labs, Inc. */
/* See LICENSE for copying information. */
body {
margin: 0;
}
@font-face {
font-family: 'font_regular';
font-style: normal;
font-weight: 400;
font-display: swap;
src:
local(''),
url('/static/static/fonts/inter-v3-latin-regular.woff2') format('woff2'),
url('/static/static/fonts/inter-v3-latin-regular.woff') format('woff'),
url('/static/static/fonts/inter-v3-latin-regular.ttf') format('truetype');
}
img,
a {
-webkit-user-drag: none;
}
.error-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;
}
.logo {
display: flex;
align-items: center;
position: absolute;
top: 87px;
left: 100px;
}
.text {
margin-left: 15px;
}
.title {
font-family: 'font_regular', sans-serif;
margin-bottom: 60px;
font-size: 32px;
}