forked from fit2081/material
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (38 loc) · 995 Bytes
/
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
<html>
<head>
<link rel="icon" class="js-site-favicon" type="image/svg+xml" href="https://github.githubassets.com/favicons/favicon.svg">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/enlighterjs.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/enlighterjs.min.css">
<title>FIT2081 - GitHub Repo Contents</title>
<style>
body {
height: 100vh;
margin: 0;
display: grid;
place-items: center;
}
div {
width: 100px;
height: 100px;
box-shadow: 0.5rem 0.5rem black, -0.5rem -0.5rem #ccc;
}
.area {
display: grid;
gap: 3rem;
grid-template-columns: repeat(3, 1fr);
}
p {
text-align: center;
padding: 25px;
text-decoration: none !important;
}
a {
text-decoration: none !important;
color: black;
}
</style>
</head>
<body>
<a href="./FIT2081/index.html"><div><p>Test Index</p></div></a>
</body>
</html>