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

101 lines
2.3 KiB
HTML
Raw Normal View History

2023-07-07 16:12:12 +00:00
<!DOCTYPE html>
<html>
<head>
2023-07-07 20:03:47 +00:00
<title>awesome</title>
2023-07-07 17:23:11 +00:00
<style>
2023-07-07 17:29:08 +00:00
@import url('https://fonts.googleapis.com/css2?family=Belanosima:wght@400;600;700&display=swap');
2023-07-07 17:23:11 +00:00
2023-07-07 17:29:08 +00:00
:root {
font-family: 'Belanosima', sans-serif;
}
2023-07-07 17:23:11 +00:00
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;
}
2023-07-07 20:14:06 +00:00
#header {
2023-07-07 17:36:21 +00:00
//text-transform: uppercase;
color: #fff;
2023-07-07 17:38:02 +00:00
text-shadow: -4px 4px #c91a29,
-8px 8px #c94f1a,
-12px 12px #a6c91a,
-16px 16px #1ac95a,
-20px 20px #1a60c9;
2023-07-07 17:36:21 +00:00
}
2023-07-07 19:58:14 +00:00
/* unvisited link */
a:link {
2023-07-07 20:03:47 +00:00
color: pink;
2023-07-07 19:58:14 +00:00
}
/* visited link */
a:visited {
2023-07-07 20:03:47 +00:00
color: lightgray;
}
a:visited::after {
content: " (visited)";
2023-07-07 19:58:14 +00:00
}
/* mouse over link */
a:hover {
color: hotpink;
}
/* selected link */
a:active {
2023-07-07 20:03:47 +00:00
color: white;
2023-07-07 17:43:05 +00:00
}
2023-07-07 17:23:11 +00:00
</style>
2023-07-07 16:12:12 +00:00
</head>
2023-07-07 17:23:11 +00:00
<body>
2023-07-07 16:12:12 +00:00
2023-07-07 20:14:06 +00:00
<h1 id="header">awesome.colean.cc</h1>
2023-07-07 16:12:12 +00:00
2023-07-07 17:23:11 +00:00
<img src="res/awdog.png" width="160"><br>
2023-07-07 17:14:59 +00:00
awdog, the mascot of awesome
<br><br>
2023-07-07 16:59:44 +00:00
2023-07-07 17:23:11 +00:00
<ul>
2023-07-07 17:04:43 +00:00
<li><a href="https://git.colean.cc/awesomeuser/awesome.git">@gitrepo</a></li>
2023-07-07 17:00:52 +00:00
<li><a href="proj/wolfystein.html">@Wolfystein3D</a></li>
2023-07-07 16:59:44 +00:00
</ul>
2023-07-07 20:14:06 +00:00
<script>
var header = document.getElementById("header");
var prevTimestamp = 0;
async function update(timestamp) {
// get dt
let dt = (timestamp - prevTimestamp);
prevTimestamp = timestamp;
2023-07-07 20:15:38 +00:00
header.style.transform = "translate(50px, 100px)";
2023-07-07 20:14:06 +00:00
// loop
requestAnimationFrame(update);
}
requestAnimationFrame(update);
</script>
2023-07-07 16:12:12 +00:00
</body>
</html>