feat: add static website example

This commit is contained in:
jabuxas 2024-09-18 10:26:32 -03:00
parent 20fd599ed7
commit 93194f4a1c
2 changed files with 50 additions and 0 deletions

19
static/index.html Normal file
View File

@ -0,0 +1,19 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Abyss - A minimalist pastebin webserver" />
<title>abyss paste</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<h1>abyss paste</h1>
<a href="/last">
<button>last uploaded file</button>
</a>
</body>
</html>

31
static/style.css Normal file
View File

@ -0,0 +1,31 @@
body {
font-family: Arial, sans-serif;
background-color: #1d1f21;
color: #c5c6c7;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
}
h1 {
font-size: 3rem;
margin-bottom: 1rem;
}
button {
padding: 0.75rem 2rem;
background-color: #66fcf1;
border: none;
border-radius: 5px;
color: #1f2833;
font-size: 1rem;
cursor: pointer;
transition: background-color 0.3s;
}
button:hover {
background-color: #45a29e;
}