storj/web/satellite/static/errors/404.css
Bogdan Artemenko 29ba210c6a
Rename fonts to make it name more general. (#1577)
* Renamed fonts to make it name more general.
2019-03-26 18:38:35 +02:00

49 lines
881 B
CSS

/*Copyright (C) 2019 Storj Labs, Inc.*/
/*See LICENSE for copying information.*/
.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;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
h1 {
font-family: 'font', sans-serif;
margin-bottom: 60px;
font-size: 32px;
}
img, a {
-webkit-user-drag: none;
-khtml-user-drag: none;
-moz-user-drag: none;
-o-user-drag: none;
user-drag: none;
}
.logo {
display: flex;
align-items: center;
position: absolute;
top: 87px;
left: 100px;
}
.text {
margin-left: 15px;
}