summaryrefslogtreecommitdiff
path: root/index.html
blob: f12f9fd0e607f097cb8f6ea3a45ace984ef54772 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
	<head>
		<meta charset="UTF-8">
		<meta name="viewport" content="width=device-width, initial-scale=1.0">
		<title>Collin Williams</title>

		<link rel="stylesheet" href="style.css">
		<style>
			body {
				align-items: center;
			}

			.content {
				width: 47ch;
				z-index: 2;
			}

			.cards {
				display: flex;
				flex-direction: row;
				justify-content: space-around;
				width: 100%;
			}

			.card {
				font-family: 'Roboto Mono';
				font-weight: 450;
				color: #e6e6e6;
				text-decoration: none;
				transition: color 0.1s ease;

				&:hover {
					color: #4DA3FF;
				}
			}
		</style>
		<script src="stars.js"></script>
	</head>
	<body>
		<div class="content">
			<h1 style="text-align: center;">Collin Williams</h1>
			<div class="cards">
				<a class="card" href="https://bsky.app/profile/cwilliams1221.bsky.social">Bluesky</a>
				<a class="card" href="https://tangled.org/cwilliams1221.bsky.social">Tangled</a>
				<a class="card" href="./writing.html">Writing</a>
			</div>
		</div>
	</body>
</html>