ace0ef89a2
Finally migrated web/satellite UI to use Vue 3. Issue: https://github.com/storj/storj/issues/5862 Change-Id: I609e2332142b9092d6efeb2d4b931e34cce846cc
95 lines
1.7 KiB
CSS
95 lines
1.7 KiB
CSS
/* Copyright (C) 2021 Storj Labs, Inc. */
|
|
/* See LICENSE for copying information. */
|
|
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
@font-face {
|
|
font-family: 'font_bold';
|
|
font-style: normal;
|
|
font-weight: 800;
|
|
font-display: swap;
|
|
src:
|
|
local(''),
|
|
url('/static/static/fonts/inter-v3-latin-800.woff2') format('woff2'),
|
|
url('/static/static/fonts/inter-v3-latin-800.woff') format('woff'),
|
|
url('/static/static/fonts/inter-v3-latin-800.ttf') format('truetype');
|
|
}
|
|
|
|
.error-area {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
padding: 52px 24px;
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
background: url("/static/static/images/errors/dotWorld.png") no-repeat center 178px;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.logo-wrapper {
|
|
height: 30.89px;
|
|
display: flex;
|
|
justify-content: center;
|
|
position: absolute;
|
|
top: 52px;
|
|
left: 0;
|
|
right: 0;
|
|
margin-bottom: 52px;
|
|
}
|
|
|
|
.logo {
|
|
height: 100%;
|
|
width: auto;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
font-family: 'font_bold', sans-serif;
|
|
text-align: center;
|
|
}
|
|
|
|
.title {
|
|
font-size: 90px;
|
|
line-height: 90px;
|
|
}
|
|
|
|
.subtitle {
|
|
margin-top: 20px;
|
|
font-size: 28px;
|
|
}
|
|
|
|
.button {
|
|
margin-top: 32px;
|
|
padding: 16px 37.5px;
|
|
border-radius: 26px;
|
|
background-color: #0149ff;
|
|
color: white;
|
|
line-height: 20px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.button:hover {
|
|
background-color: #0059d0;
|
|
}
|
|
|
|
@media screen and (max-height: 500px) {
|
|
|
|
.error-area {
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
.logo-wrapper {
|
|
position: unset;
|
|
}
|
|
}
|