-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (48 loc) · 1.32 KB
/
index.html
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
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Projects</title>
<style>
html{
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
a{
text-decoration-line: none;
}
h1,h2,h3,h4,h5,h6{
font-weight: normal;
margin: 0;
}
.code-link{
padding: 5vh 0 5vh 0;
border-bottom: 1px solid lightgray;
> h3{
padding-bottom: 2vh;
}
}
.code-tags{
margin-top: 2ch;
}
.code-tag{
font-size: 0.9rem;
border-radius: 1ch;
padding: 3px;
background-color: rgb(240, 240, 240);
border-color: beige;
}
.code-tag:hover{
background-color: lightgray;
}
</style>
</head>
<body>
<noscript>This page needs Javascript enabled. Javascript must be enabled in all browsers usualy.</noscript>
<header><h2>The codepens and mini-projects I have made, mostly for fun.</h2></header>
<nav>
<div id="code-links"></div>
</nav>
<script type="module" src="index.js"></script>
</body>
</html>