scinote-web/public/404.html

80 lines
1.7 KiB
HTML
Raw Normal View History

2016-02-12 23:52:43 +08:00
<!DOCTYPE html>
<html>
<head>
2016-07-21 19:11:15 +08:00
<title>This page could not be found (404).</title>
2016-02-12 23:52:43 +08:00
<meta name="viewport" content="width=device-width,initial-scale=1">
2022-08-05 16:45:46 +08:00
<style>
body {
background-color: #F0F0F6;
color: #2E2F30;
text-align: center;
font-family: arial, sans-serif;
margin: 0;
}
div.navbar {
background: #FFFFFF;
box-shadow: 0px 1px 4px rgba(35, 31, 32, 0.15);
height: 52px;
left: 0%;
position: absolute;
right: 0%;
top: 0%;
}
div.navbar > img {
width: 121px;
height: 24px;
left: 21px;
position: absolute;
top: calc(50% - 24px/2 - 0px);
}
div.dialog {
width: 95%;
margin: 4em auto 0;
}
div.dialog > h1 {
color: #404048;
font-family: Lato;
font-style: normal;
font-weight: bold;
font-size: 1.5em;
line-height: 29px;
margin: 0.5em;
text-align: center;
}
div.dialog > p {
color: #404048;
font-family: Lato;
font-style: normal;
font-weight: normal;
font-size: 1.1em;
margin: 0.5em;
}
div.dialog > img {
margin: 1em;
}
.illustration {
margin-top: 64px !important;
}
</style>
2016-02-12 23:52:43 +08:00
</head>
<body>
<!-- This file lives in public/404.html -->
<div class="navbar">
<img id="logo" src="/images/scinote_icon.svg" title="SciNote">
</div>
2016-02-12 23:52:43 +08:00
<div class="dialog">
<img src="/images/genericError.svg" class="illustration">
<h1>Ooops, something went wrong.</h1>
<p>Please contact your SciNote administrator.</p>
2016-02-12 23:52:43 +08:00
</div>
</body>
</html>