i-eat.rocks/apps/info.html
2024-08-17 21:17:43 -06:00

53 lines
No EOL
1.3 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Info</title>
<style>
@keyframes hue {
0% {
filter: hue-rotate(0deg);
}
100% {
filter: hue-rotate(360deg);
}
}
h1 {
animation: hue 2s infinite linear;
color:red;
padding:0;
margin:0;
display: block;
}
p {
text-align: center;
width: 100%;
}
#body {
width: 100%;
padding:0;
margin:0;
height: 100%;
text-align: center;
}
</style>
<link rel="stylesheet" href="/apps/standard.css">
</head>
<body>
<div id="body">
<h1>i-eat.rocks</h1>
<p>Rock-OS v0.1.3</p>
<p>Created by PossiblyAxolotl</p>
<p><a style="color:purple; text-decoration: underline; cursor:pointer;" onclick="window.parent.postMessage('url mailto:possiblyaxolotl@i-eat.rocks')">Contact</a></p>
<button onclick="window.parent.postMessage('url https://directory.possiblyaxolotl.com')">PossiblyAxolotl Directory</button>
</div>
</body>
</html>