Updated error pages with new design
This commit is contained in:
parent
b9446d9282
commit
630b9118b9
2 changed files with 49 additions and 41 deletions
|
@ -1,51 +1,54 @@
|
|||
html {
|
||||
box-sizing: border-box;
|
||||
text-align: center;
|
||||
}
|
||||
*, *::before, *::after {
|
||||
box-sizing: inherit;
|
||||
@import url('https://rsms.me/inter/inter.css');
|
||||
|
||||
:root {
|
||||
/* Warm Gray */
|
||||
--gray-100: #171414;
|
||||
--gray-30: #cac5c4;
|
||||
--gray-10: #f7f3f2;
|
||||
--red-40: #ff8389;
|
||||
}
|
||||
|
||||
body {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
margin: 0;
|
||||
color: #000000de;
|
||||
font-family: Inter, sans-serif;
|
||||
background: var(--gray-100);
|
||||
color: var(--gray-10);
|
||||
font-family: Inter var, Inter, sans-serif;
|
||||
font-size: 1rem;
|
||||
line-height: 1.375rem;
|
||||
font-weight: 400;
|
||||
margin: 24px;
|
||||
font-feature-settings: 'ss01', 'ss03';
|
||||
max-width: 1024px;
|
||||
}
|
||||
|
||||
h1,h2 {
|
||||
display: inline-block;
|
||||
padding: 0 .2em;
|
||||
h1,h2,h3,h4,h5,h6 {
|
||||
margin: 0;
|
||||
color: var(--red-40);
|
||||
margin: 24px;
|
||||
font-feature-settings: 'ss01', 'ss02', 'ss03', 'cv11';
|
||||
}
|
||||
h1 {
|
||||
color: #d50000;
|
||||
font-size: 3.375rem;
|
||||
line-height: 4rem;
|
||||
font-weight: 300;
|
||||
}
|
||||
h2 {
|
||||
text-align: left;
|
||||
font-weight: 400;
|
||||
font-size: 2.625rem;
|
||||
line-height: 3.125rem;
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
figure {
|
||||
display: block;
|
||||
border-top: 5px #dedede solid;
|
||||
text-align: left;
|
||||
blockquote {
|
||||
text-align: justify;
|
||||
font-size: 1rem;
|
||||
line-height: 1.5rem;
|
||||
position: relative;
|
||||
border-left: 5px solid var(--gray-30);
|
||||
padding-left: 12px;
|
||||
margin-left: 24px;
|
||||
}
|
||||
|
||||
blockquote::after, blockquote::before {
|
||||
font-weight: 800;
|
||||
color: #dedede;
|
||||
}
|
||||
blockquote::before {
|
||||
content: "«";
|
||||
}
|
||||
blockquote::after {
|
||||
content: "»";
|
||||
}
|
||||
|
||||
figcaption {
|
||||
text-align: right;
|
||||
cite {
|
||||
font-style: inherit;
|
||||
font-size: .875rem;
|
||||
line-height: 1.125rem;
|
||||
letter-spacing: .16px;
|
||||
}
|
||||
|
|
|
@ -3,15 +3,20 @@
|
|||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
|
||||
<meta name="author" content="edpibu" />
|
||||
<meta name="theme-color" content="#ff8389" />
|
||||
<meta name="color-scheme" content="dark" />
|
||||
|
||||
<link rel="icon" type="image/svg+xml"
|
||||
href="https://edgarpierre.fr/static/svg/logo.svg" />
|
||||
<link rel="mask-icon"
|
||||
href="https://edgarpierre.fr/static/svg/logo.svg" />
|
||||
|
||||
<title>{code} - {title}</title>
|
||||
|
||||
<style>
|
||||
{style}
|
||||
</style>
|
||||
|
||||
<meta name="msapplication-TileColor" content="#ffffff">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
</head>
|
||||
<body>
|
||||
<h1>{code}</h1>
|
||||
|
|
Reference in a new issue