This repository has been archived on 2023-07-08. You can view files and clone it, but cannot push or open issues or pull requests.
awesome/index.html

102 lines
2.4 KiB
HTML
Raw Normal View History

2023-07-07 17:12:12 +01:00
<!DOCTYPE html>
<html>
<head>
2023-07-07 21:03:47 +01:00
<title>awesome</title>
2023-07-07 18:23:11 +01:00
<style>
2023-07-07 18:29:08 +01:00
@import url('https://fonts.googleapis.com/css2?family=Belanosima:wght@400;600;700&display=swap');
2023-07-07 18:23:11 +01:00
2023-07-07 18:29:08 +01:00
:root {
font-family: 'Belanosima', sans-serif;
}
2023-07-07 18:23:11 +01:00
body {
text-align: center;
color: white;
background: #090524;
2023-07-07 21:23:05 +01:00
overflow-x: hidden;
2023-07-07 18:23:11 +01:00
}
ul {
border: 1px solid lightgray;
border-radius: 10px;
padding: 10px;
width: 400px;
margin: auto;
list-style-type: none;
}
2023-07-07 21:14:06 +01:00
#header {
2023-07-07 18:36:21 +01:00
//text-transform: uppercase;
color: #fff;
}
2023-07-07 20:58:14 +01:00
/* unvisited link */
a:link {
2023-07-07 21:03:47 +01:00
color: pink;
2023-07-07 20:58:14 +01:00
}
/* visited link */
a:visited {
2023-07-07 21:03:47 +01:00
color: lightgray;
}
a:visited::after {
content: " (visited)";
2023-07-07 20:58:14 +01:00
}
/* mouse over link */
a:hover {
color: hotpink;
}
/* selected link */
a:active {
2023-07-07 21:03:47 +01:00
color: white;
2023-07-07 18:43:05 +01:00
}
2023-07-07 18:23:11 +01:00
</style>
2023-07-07 17:12:12 +01:00
</head>
2023-07-07 18:23:11 +01:00
<body>
2023-07-07 17:12:12 +01:00
2023-07-07 21:14:06 +01:00
<h1 id="header">awesome.colean.cc</h1>
2023-07-07 17:12:12 +01:00
2023-07-07 18:23:11 +01:00
<img src="res/awdog.png" width="160"><br>
2023-07-07 18:14:59 +01:00
awdog, the mascot of awesome
<br><br>
2023-07-07 17:59:44 +01:00
2023-07-07 18:23:11 +01:00
<ul>
2023-07-07 18:04:43 +01:00
<li><a href="https://git.colean.cc/awesomeuser/awesome.git">@gitrepo</a></li>
2023-07-07 18:00:52 +01:00
<li><a href="proj/wolfystein.html">@Wolfystein3D</a></li>
2023-07-07 17:59:44 +01:00
</ul>
2023-07-07 21:14:06 +01:00
<script>
var header = document.getElementById("header");
async function update(timestamp) {
2023-07-07 21:19:57 +01:00
let t = timestamp / 500;
2023-07-07 21:23:05 +01:00
let x = Math.cos(t) * 20;
let y = Math.sin(t) * 20;
header.style.transform = "translate(" + x + "px, " + y + "px) rotate(" + (Math.cos(t) * -5) + "deg)";
2023-07-07 21:24:22 +01:00
header.style.textShadow = `-4px 4px #c91a29,
2023-07-07 21:23:05 +01:00
-8px 8px #c94f1a,
-12px 12px #a6c91a,
-16px 16px #1ac95a,
-20px 20px #1a60c9`;
2023-07-07 21:14:06 +01:00
// loop
requestAnimationFrame(update);
}
requestAnimationFrame(update);
</script>
2023-07-07 17:12:12 +01:00
</body>
</html>