refactor(www): delete 500 and use a new modern look
This commit is contained in:
Binary file not shown.
|
Before Width: | Height: | Size: 2.8 KiB |
+105
-153
@@ -4,199 +4,151 @@
|
|||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<title>cws • home</title>
|
<title>cws • home</title>
|
||||||
<link rel="icon" href="/favicon.ico" />
|
|
||||||
<link rel="preconnect" href="https://fonts.googleapis.com" />
|
|
||||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
|
||||||
<link
|
<link
|
||||||
href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;800&display=swap"
|
href="https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400&family=DM+Sans:wght@300;400&display=swap"
|
||||||
rel="stylesheet"
|
rel="stylesheet"
|
||||||
/>
|
/>
|
||||||
<style>
|
<style>
|
||||||
:root {
|
*,
|
||||||
--bg: #f3f4f6;
|
*::before,
|
||||||
--accent: #3b82f6;
|
*::after {
|
||||||
--accent-soft: rgba(59, 130, 246, 0.08);
|
|
||||||
--text: #0f172a;
|
|
||||||
--muted: #6b7280;
|
|
||||||
}
|
|
||||||
|
|
||||||
* {
|
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
:root {
|
||||||
min-height: 100vh;
|
--bg: #0a0a0a;
|
||||||
display: flex;
|
--fg: #f0ede8;
|
||||||
align-items: center;
|
--muted: #4a4a4a;
|
||||||
justify-content: center;
|
--line: #1e1e1e;
|
||||||
background:
|
--accent: #e8e0d0;
|
||||||
radial-gradient(
|
|
||||||
circle at top left,
|
|
||||||
#dbeafe 0,
|
|
||||||
transparent 50%
|
|
||||||
),
|
|
||||||
radial-gradient(
|
|
||||||
circle at bottom right,
|
|
||||||
#e5e7eb 0,
|
|
||||||
transparent 55%
|
|
||||||
),
|
|
||||||
var(--bg);
|
|
||||||
font-family:
|
|
||||||
"Montserrat",
|
|
||||||
system-ui,
|
|
||||||
-apple-system,
|
|
||||||
BlinkMacSystemFont,
|
|
||||||
"Segoe UI",
|
|
||||||
sans-serif;
|
|
||||||
color: var(--text);
|
|
||||||
font-size: 18px; /* increased base text size */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrapper {
|
body {
|
||||||
|
background: var(--bg);
|
||||||
|
color: var(--fg);
|
||||||
|
font-family: "DM Sans", sans-serif;
|
||||||
|
font-weight: 300;
|
||||||
|
min-height: 100vh;
|
||||||
|
display: grid;
|
||||||
|
place-items: center;
|
||||||
|
padding: 40px 24px;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* subtle grid */
|
||||||
|
body::before {
|
||||||
|
content: "";
|
||||||
|
position: fixed;
|
||||||
|
inset: 0;
|
||||||
|
background-image:
|
||||||
|
linear-gradient(var(--line) 1px, transparent 1px),
|
||||||
|
linear-gradient(90deg, var(--line) 1px, transparent 1px);
|
||||||
|
background-size: 60px 60px;
|
||||||
|
pointer-events: none;
|
||||||
|
opacity: 0.5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
position: relative;
|
||||||
|
max-width: 600px;
|
||||||
|
width: 100%;
|
||||||
|
text-align: center;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 18px;
|
opacity: 0;
|
||||||
padding: 24px;
|
transform: translateY(16px);
|
||||||
width: 100%;
|
animation: rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
|
||||||
text-align: left;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
main {
|
@keyframes rise {
|
||||||
max-width: 560px;
|
to {
|
||||||
width: 100%;
|
opacity: 1;
|
||||||
|
transform: translateY(0);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.badge {
|
.status {
|
||||||
display: inline-flex;
|
display: inline-flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 10px;
|
gap: 8px;
|
||||||
padding: 7px 14px;
|
font-family: "DM Mono", monospace;
|
||||||
border-radius: 999px;
|
font-size: 11px;
|
||||||
background: var(--accent-soft);
|
letter-spacing: 0.12em;
|
||||||
color: var(--accent);
|
|
||||||
font-size: 13px; /* slightly larger */
|
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
letter-spacing: 0.11em;
|
color: #888;
|
||||||
margin-bottom: 20px;
|
margin-bottom: 40px;
|
||||||
font-weight: 600;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.badge-dot {
|
.dot {
|
||||||
width: 9px;
|
width: 6px;
|
||||||
height: 9px;
|
height: 6px;
|
||||||
border-radius: 999px;
|
border-radius: 50%;
|
||||||
background: var(--accent);
|
background: #4ade80;
|
||||||
box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.22);
|
box-shadow: 0 0 8px #4ade8099;
|
||||||
|
animation: pulse 2.5s ease-in-out infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes pulse {
|
||||||
|
0%,
|
||||||
|
100% {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
opacity: 0.4;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 36px; /* increased */
|
font-size: clamp(42px, 8vw, 64px);
|
||||||
line-height: 1.2;
|
font-weight: 300;
|
||||||
margin-bottom: 8px;
|
line-height: 1.05;
|
||||||
|
letter-spacing: -0.03em;
|
||||||
|
margin-bottom: 28px;
|
||||||
|
color: var(--fg);
|
||||||
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
.highlight {
|
h1 em {
|
||||||
background: linear-gradient(115deg, #38bdf8, #3b82f6, #818cf8);
|
font-style: normal;
|
||||||
-webkit-background-clip: text;
|
font-family: "DM Mono", monospace;
|
||||||
color: transparent;
|
font-weight: 300;
|
||||||
|
color: var(--muted);
|
||||||
|
}
|
||||||
|
|
||||||
|
.divider {
|
||||||
|
width: 32px;
|
||||||
|
height: 1px;
|
||||||
|
background: var(--muted);
|
||||||
|
margin-bottom: 28px;
|
||||||
|
opacity: 0;
|
||||||
|
animation: rise 0.5s ease 0.5s forwards;
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
font-size: 18px; /* increased */
|
font-size: 15px;
|
||||||
color: var(--muted);
|
line-height: 1.8;
|
||||||
margin-bottom: 16px;
|
color: #999;
|
||||||
line-height: 1.7;
|
|
||||||
}
|
|
||||||
|
|
||||||
.lead {
|
|
||||||
font-size: 19px; /* increased */
|
|
||||||
margin-bottom: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bg-orbit {
|
|
||||||
position: absolute;
|
|
||||||
width: 240px;
|
|
||||||
height: 240px;
|
|
||||||
border-radius: 50%;
|
|
||||||
border: 1px dashed rgba(148, 163, 184, 0.5);
|
|
||||||
top: -100px;
|
|
||||||
right: -60px;
|
|
||||||
opacity: 0.7;
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bg-orbit-dot {
|
|
||||||
position: absolute;
|
|
||||||
width: 9px;
|
|
||||||
height: 9px;
|
|
||||||
border-radius: 50%;
|
|
||||||
background: #38bdf8;
|
|
||||||
box-shadow: 0 0 12px rgba(56, 189, 248, 0.9);
|
|
||||||
top: 32%;
|
|
||||||
left: 12%;
|
|
||||||
}
|
|
||||||
|
|
||||||
footer.icon-credit {
|
|
||||||
font-size: 13px; /* increased */
|
|
||||||
color: var(--muted);
|
|
||||||
text-align: center;
|
|
||||||
opacity: 0.9;
|
|
||||||
}
|
|
||||||
|
|
||||||
footer.icon-credit a {
|
|
||||||
color: var(--muted);
|
|
||||||
font-weight: 500;
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
footer.icon-credit a:hover {
|
|
||||||
color: var(--accent);
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 480px) {
|
|
||||||
h1 {
|
|
||||||
font-size: 30px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.lead {
|
|
||||||
font-size: 17px;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
<div class="bg-orbit">
|
<div class="container">
|
||||||
<div class="bg-orbit-dot"></div>
|
<div class="status">
|
||||||
|
<span class="dot"></span>
|
||||||
|
running
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="wrapper">
|
<h1>Hello from <em>cws</em></h1>
|
||||||
<main>
|
|
||||||
<div class="badge">
|
<div class="divider"></div>
|
||||||
<span class="badge-dot"></span>
|
|
||||||
<span>cws is running</span>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<h1>Hello from <span class="highlight">cws</span>!</h1>
|
|
||||||
<p>
|
<p>
|
||||||
You’re seeing the default homepage served by
|
Default homepage. Replace this file or point your virtual host
|
||||||
<strong>cws</strong>. Replace this file or point your
|
to a different root to serve your own content.
|
||||||
virtual host to a different root directory to serve your own
|
|
||||||
content.
|
|
||||||
</p>
|
</p>
|
||||||
</main>
|
|
||||||
|
|
||||||
<footer class="icon-credit">
|
|
||||||
<a target="_blank" href="https://icons8.com/icon/38796/linux"
|
|
||||||
>Linux</a
|
|
||||||
>
|
|
||||||
icon by
|
|
||||||
<a target="_blank" href="https://icons8.com">Icons8</a>
|
|
||||||
</footer>
|
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
+89
-107
@@ -2,146 +2,128 @@
|
|||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<title>404 • Page not found</title>
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
<title>404 • Not Found</title>
|
||||||
|
<link
|
||||||
|
href="https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400&family=DM+Sans:wght@300;400&display=swap"
|
||||||
|
rel="stylesheet"
|
||||||
|
/>
|
||||||
<style>
|
<style>
|
||||||
:root {
|
*,
|
||||||
--bg: #f9fafb;
|
*::before,
|
||||||
--accent: #f97316;
|
*::after {
|
||||||
--accent-soft: rgba(249, 115, 22, 0.14);
|
|
||||||
--text: #0f172a;
|
|
||||||
--muted: #6b7280;
|
|
||||||
}
|
|
||||||
|
|
||||||
* {
|
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
:root {
|
||||||
min-height: 100vh;
|
--bg: #0a0a0a;
|
||||||
display: flex;
|
--fg: #f0ede8;
|
||||||
align-items: center;
|
--muted: #4a4a4a;
|
||||||
justify-content: center;
|
--line: #1e1e1e;
|
||||||
background:
|
|
||||||
radial-gradient(circle at top, #ffedd5 0, transparent 55%),
|
|
||||||
var(--bg);
|
|
||||||
font-family:
|
|
||||||
system-ui,
|
|
||||||
-apple-system,
|
|
||||||
BlinkMacSystemFont,
|
|
||||||
"Segoe UI",
|
|
||||||
sans-serif;
|
|
||||||
color: var(--text);
|
|
||||||
padding: 16px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrap {
|
body {
|
||||||
max-width: 520px;
|
background: var(--bg);
|
||||||
|
color: var(--fg);
|
||||||
|
font-family: "DM Sans", sans-serif;
|
||||||
|
font-weight: 300;
|
||||||
|
min-height: 100vh;
|
||||||
|
display: grid;
|
||||||
|
place-items: center;
|
||||||
|
padding: 40px 24px;
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
body::before {
|
||||||
|
content: "";
|
||||||
|
position: fixed;
|
||||||
|
inset: 0;
|
||||||
|
background-image:
|
||||||
|
linear-gradient(var(--line) 1px, transparent 1px),
|
||||||
|
linear-gradient(90deg, var(--line) 1px, transparent 1px);
|
||||||
|
background-size: 60px 60px;
|
||||||
|
pointer-events: none;
|
||||||
|
opacity: 0.5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.container {
|
||||||
|
position: relative;
|
||||||
|
max-width: 600px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
.badge {
|
|
||||||
display: inline-flex;
|
|
||||||
align-items: center;
|
align-items: center;
|
||||||
gap: 8px;
|
opacity: 0;
|
||||||
padding: 6px 12px;
|
transform: translateY(16px);
|
||||||
border-radius: 999px;
|
animation: rise 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
|
||||||
background: var(--accent-soft);
|
|
||||||
color: var(--accent);
|
|
||||||
font-size: 11px;
|
|
||||||
text-transform: uppercase;
|
|
||||||
letter-spacing: 0.12em;
|
|
||||||
margin-bottom: 20px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.badge-dot {
|
@keyframes rise {
|
||||||
width: 8px;
|
to {
|
||||||
height: 8px;
|
opacity: 1;
|
||||||
border-radius: 50%;
|
transform: translateY(0);
|
||||||
background: var(--accent);
|
}
|
||||||
box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.35);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.code {
|
.code {
|
||||||
font-size: 60px;
|
font-family: "DM Mono", monospace;
|
||||||
font-weight: 900;
|
font-size: clamp(80px, 18vw, 140px);
|
||||||
letter-spacing: 0.18em;
|
font-weight: 300;
|
||||||
margin-bottom: 10px;
|
letter-spacing: -0.04em;
|
||||||
text-transform: uppercase;
|
line-height: 1;
|
||||||
background: linear-gradient(120deg, #fbbf24, #f97316, #ec4899);
|
color: #1e1e1e;
|
||||||
-webkit-background-clip: text;
|
margin-bottom: 32px;
|
||||||
color: transparent;
|
user-select: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 28px;
|
font-size: clamp(22px, 5vw, 32px);
|
||||||
margin-bottom: 10px;
|
font-weight: 300;
|
||||||
|
letter-spacing: -0.02em;
|
||||||
|
color: var(--fg);
|
||||||
|
white-space: nowrap;
|
||||||
|
margin-bottom: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.divider {
|
||||||
|
width: 32px;
|
||||||
|
height: 1px;
|
||||||
|
background: var(--muted);
|
||||||
|
margin-bottom: 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
p {
|
p {
|
||||||
font-size: 15px;
|
font-size: 15px;
|
||||||
color: var(--muted);
|
line-height: 1.8;
|
||||||
margin-bottom: 24px;
|
color: #999;
|
||||||
line-height: 1.6;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.actions {
|
.back {
|
||||||
display: flex;
|
margin-top: 40px;
|
||||||
justify-content: center;
|
font-family: "DM Mono", monospace;
|
||||||
}
|
font-size: 11px;
|
||||||
|
letter-spacing: 0.12em;
|
||||||
.btn-primary {
|
text-transform: uppercase;
|
||||||
display: inline-flex;
|
color: #555;
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
border-radius: 999px;
|
|
||||||
padding: 10px 18px;
|
|
||||||
font-size: 13px;
|
|
||||||
font-weight: 600;
|
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
border: none;
|
transition: color 0.2s;
|
||||||
cursor: pointer;
|
|
||||||
background: linear-gradient(135deg, #f97316, #ec4899);
|
|
||||||
color: #fff7ed;
|
|
||||||
box-shadow: 0 10px 22px rgba(236, 72, 153, 0.3);
|
|
||||||
transition:
|
|
||||||
transform 120ms ease,
|
|
||||||
box-shadow 120ms ease,
|
|
||||||
filter 120ms ease;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.btn-primary:hover {
|
.back:hover {
|
||||||
transform: translateY(-1px);
|
color: var(--fg);
|
||||||
box-shadow: 0 14px 30px rgba(236, 72, 153, 0.4);
|
|
||||||
filter: brightness(1.03);
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 480px) {
|
|
||||||
.code {
|
|
||||||
font-size: 50px;
|
|
||||||
}
|
|
||||||
h1 {
|
|
||||||
font-size: 24px;
|
|
||||||
}
|
|
||||||
p {
|
|
||||||
font-size: 14px;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div class="wrap">
|
<div class="container">
|
||||||
<div class="badge">
|
|
||||||
<span class="badge-dot"></span>
|
|
||||||
<span>Page not found</span>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="code">404</div>
|
<div class="code">404</div>
|
||||||
<h1>You’ve reached an empty corner of the internet.</h1>
|
<h1>Page not found</h1>
|
||||||
<p>The page you’re looking for doesn’t exist.</p>
|
<div class="divider"></div>
|
||||||
|
<p>The page you're looking for doesn't exist.</p>
|
||||||
|
<a class="back" href="/">← back to home</a>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|||||||
@@ -1,116 +0,0 @@
|
|||||||
<!doctype html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8" />
|
|
||||||
<title>500 • Internal server error</title>
|
|
||||||
<meta name="viewport" content="width=device-width,initial-scale=1" />
|
|
||||||
<style>
|
|
||||||
:root {
|
|
||||||
--bg: #f9fafb;
|
|
||||||
--accent: #38bdf8;
|
|
||||||
--accent-soft: rgba(56, 189, 248, 0.14);
|
|
||||||
--text: #0f172a;
|
|
||||||
--muted: #6b7280;
|
|
||||||
}
|
|
||||||
|
|
||||||
* {
|
|
||||||
box-sizing: border-box;
|
|
||||||
margin: 0;
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
min-height: 100vh;
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
background:
|
|
||||||
radial-gradient(circle at top, #ffedd5 0, transparent 55%),
|
|
||||||
var(--bg);
|
|
||||||
font-family:
|
|
||||||
system-ui,
|
|
||||||
-apple-system,
|
|
||||||
BlinkMacSystemFont,
|
|
||||||
"Segoe UI",
|
|
||||||
sans-serif;
|
|
||||||
color: var(--text);
|
|
||||||
padding: 16px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.wrap {
|
|
||||||
max-width: 520px;
|
|
||||||
width: 100%;
|
|
||||||
text-align: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.badge {
|
|
||||||
display: inline-flex;
|
|
||||||
align-items: center;
|
|
||||||
gap: 8px;
|
|
||||||
padding: 6px 12px;
|
|
||||||
border-radius: 999px;
|
|
||||||
background: var(--accent-soft);
|
|
||||||
color: var(--accent);
|
|
||||||
font-size: 11px;
|
|
||||||
text-transform: uppercase;
|
|
||||||
letter-spacing: 0.12em;
|
|
||||||
margin-bottom: 20px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.badge-dot {
|
|
||||||
width: 8px;
|
|
||||||
height: 8px;
|
|
||||||
border-radius: 50%;
|
|
||||||
background: var(--accent);
|
|
||||||
box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.35);
|
|
||||||
}
|
|
||||||
|
|
||||||
.code {
|
|
||||||
font-size: 60px;
|
|
||||||
font-weight: 900;
|
|
||||||
letter-spacing: 0.18em;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
text-transform: uppercase;
|
|
||||||
background: linear-gradient(120deg, #bae6fd, #38bdf8, #818cf8);
|
|
||||||
-webkit-background-clip: text;
|
|
||||||
color: transparent;
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
font-size: 28px;
|
|
||||||
margin-bottom: 10px;
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
font-size: 15px;
|
|
||||||
color: var(--muted);
|
|
||||||
margin-bottom: 24px;
|
|
||||||
line-height: 1.6;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (max-width: 480px) {
|
|
||||||
.code {
|
|
||||||
font-size: 50px;
|
|
||||||
}
|
|
||||||
h1 {
|
|
||||||
font-size: 24px;
|
|
||||||
}
|
|
||||||
p {
|
|
||||||
font-size: 14px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div class="wrap">
|
|
||||||
<div class="badge">
|
|
||||||
<span class="badge-dot"></span>
|
|
||||||
<span>Internal server error</span>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="code">500</div>
|
|
||||||
<h1>Something went wrong on our side.</h1>
|
|
||||||
<p>Try again in a moment or head back home while we fix things.</p>
|
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
||||||
Reference in New Issue
Block a user