ptools-v2/index.html

54 lines
1.2 KiB
HTML
Raw Normal View History

2024-10-15 06:31:17 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/node_modules/normalize.css/normalize.css">
2024-10-17 23:09:12 +00:00
<link rel="shortcut icon" href="/favicon.webp" type="image/webp">
2024-10-26 04:50:22 +00:00
<link rel="stylesheet" href="/node_modules/@fontsource-variable/jetbrains-mono/index.css">
<title>THE PTOOLS</title>
2024-10-15 06:31:17 +00:00
</head>
<body>
2024-10-26 04:50:22 +00:00
<img src="/favicon.webp">
<button>The PTOOLS</button>
<span>This website is currently disabled :)</span>
2024-10-15 06:31:17 +00:00
<style>
2024-10-15 07:55:07 +00:00
:root {
background-color: #212121;
}
2024-10-15 06:31:17 +00:00
* {
margin: 0;
padding: 0;
}
2024-10-26 04:50:22 +00:00
html, body {
2024-10-15 06:31:17 +00:00
width: 100%;
2024-10-15 07:55:07 +00:00
height: 100%;
user-select: none;
2024-10-26 04:50:22 +00:00
font-family: 'JetBrains Mono Variable', monospace;
color: white;
2024-10-15 06:31:17 +00:00
}
2024-10-26 04:50:22 +00:00
body {
2024-10-15 06:31:17 +00:00
display: flex;
flex-direction: column;
2024-10-26 04:50:22 +00:00
gap: 10px;
align-items: center;
justify-content: center;
}
2024-10-26 04:50:22 +00:00
button {
border: none;
padding: 6px 10px;
border-radius: 4px;
cursor: pointer;
2024-10-15 07:55:07 +00:00
background-color: #ff1696;
color: white;
margin-right: 6px;
}
2024-10-15 06:31:17 +00:00
</style>
</body>
</html>