-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (44 loc) · 1.59 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'>
<title>vExcess</title>
<link rel='icon' type='image/png' href='./images/logo.png'>
<link rel='stylesheet' href='./public/build/bundle.css'>
<!-- global css -->
<style>
@font-face {
font-family: cyborg;
src: url("https://www.onyedika.xyz/static/media/ExoSpace.606b1a1e5fed2c8afb24.ttf");
font-display: swap;
}
body {
font-family: cyborg, sans-serif;
margin: auto;
font-size: 20px;
color: white;
width: 75%;
}
.page {
background-color: transparent;
margin: 0px;
margin-top: 50px;
padding: 50px;
min-height: calc(100vh - 52px - 98px);
}
.page h1 {
text-align: center;
text-shadow: rgb(0, 0, 0) 0px 2px 8px;
}
.hover-glow:hover {
box-shadow: 5px 5px 10px rgba(100, 255, 200, 0.3);
}
</style>
<!-- import Prism.js -->
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.23.0/themes/prism-okaidia.min.css">
<script src="https://cdn.jsdelivr.net/gh/vExcess/libraries@main/prism.js"></script>
<script defer src='./public/build/bundle.js'></script>
</head>
<body></body>
</html>