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
2023-07-07 20:15:38 +00:00

101 lines
No EOL
2.3 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<title>awesome</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Belanosima:wght@400;600;700&display=swap');
:root {
font-family: 'Belanosima', sans-serif;
}
body {
text-align: center;
color: white;
background: #090524;
}
ul {
border: 1px solid lightgray;
border-radius: 10px;
padding: 10px;
width: 400px;
margin: auto;
list-style-type: none;
}
#header {
//text-transform: uppercase;
color: #fff;
text-shadow: -4px 4px #c91a29,
-8px 8px #c94f1a,
-12px 12px #a6c91a,
-16px 16px #1ac95a,
-20px 20px #1a60c9;
}
/* unvisited link */
a:link {
color: pink;
}
/* visited link */
a:visited {
color: lightgray;
}
a:visited::after {
content: " (visited)";
}
/* mouse over link */
a:hover {
color: hotpink;
}
/* selected link */
a:active {
color: white;
}
</style>
</head>
<body>
<h1 id="header">awesome.colean.cc</h1>
<img src="res/awdog.png" width="160"><br>
awdog, the mascot of awesome
<br><br>
<ul>
<li><a href="https://git.colean.cc/awesomeuser/awesome.git">@gitrepo</a></li>
<li><a href="proj/wolfystein.html">@Wolfystein3D</a></li>
</ul>
<script>
var header = document.getElementById("header");
var prevTimestamp = 0;
async function update(timestamp) {
// get dt
let dt = (timestamp - prevTimestamp);
prevTimestamp = timestamp;
header.style.transform = "translate(50px, 100px)";
// loop
requestAnimationFrame(update);
}
requestAnimationFrame(update);
</script>
</body>
</html>