mirror of
https://codeberg.org/bunbun/bunbun.dev
synced 2025-06-07 05:19:50 -07:00
Compare commits
2 Commits
55733a27e9
...
e5d6bc0298
Author | SHA1 | Date | |
---|---|---|---|
e5d6bc0298 | |||
607c6d605d |
81
404.html
81
404.html
@ -1,54 +1,53 @@
|
|||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html>
|
<html lang="en">
|
||||||
|
<head>
|
||||||
<head>
|
<meta charset="UTF-8" />
|
||||||
<meta charset="UTF-8" />
|
<title>404 Not Found</title>
|
||||||
<style>
|
<style>
|
||||||
:root {
|
|
||||||
--foreground: #ffffff;
|
|
||||||
--background: #000000;
|
|
||||||
|
|
||||||
--accent-50: #adadad;
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (prefers-color-scheme: light) {
|
|
||||||
:root {
|
:root {
|
||||||
--foreground: #000000;
|
--foreground: #ffffff;
|
||||||
--background: #ffffff;
|
--background: #000000;
|
||||||
|
|
||||||
--accent-50: #525252;
|
--accent-50: #adadad;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
@media (prefers-color-scheme: light) {
|
||||||
display: flex;
|
:root {
|
||||||
flex-direction: column;
|
--foreground: #000000;
|
||||||
margin: 0;
|
--background: #ffffff;
|
||||||
justify-content: center;
|
|
||||||
align-items: center;
|
|
||||||
min-height: 100vh;
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
--accent-50: #525252;
|
||||||
background: var(--background);
|
}
|
||||||
font-family: "Roboto", sans-serif;
|
}
|
||||||
color: var(--foreground);
|
|
||||||
|
|
||||||
h1 {
|
body {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
min-height: 100vh;
|
||||||
}
|
}
|
||||||
|
|
||||||
h3 {
|
body {
|
||||||
margin: 0;
|
background: var(--background);
|
||||||
color: var(--accent-50);
|
font-family: "Roboto", sans-serif;
|
||||||
|
color: var(--foreground);
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
h3 {
|
||||||
|
margin: 0;
|
||||||
|
color: var(--accent-50);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
</style>
|
||||||
</style>
|
</head>
|
||||||
</head>
|
|
||||||
|
|
||||||
<body>
|
|
||||||
<h1>404</h1>
|
|
||||||
<h3>Page Not Found</h3>
|
|
||||||
</body>
|
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<h1>404</h1>
|
||||||
|
<h3>Page Not Found</h3>
|
||||||
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
@ -1,9 +1,10 @@
|
|||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html>
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width" />
|
<meta name="viewport" content="width=device-width" />
|
||||||
<link rel="stylesheet" type="text/css" href="style.css" />
|
<link rel="stylesheet" type="text/css" href="style.css" />
|
||||||
|
<title>bunbun.dev</title>
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
Reference in New Issue
Block a user