6bbb5b5cc2
Unifies the stylesheet for 404 and 500 errors. References the Storj logo rather than embedding it in the HTML. Replaces references to Storj with Storj DCS. Removes reference to nonexistent font. Change-Id: If224f30eb0b21171fc8f575de6c4cef98a48c6f5
60 lines
1.2 KiB
CSS
60 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;
|
|
}
|