-
Notifications
You must be signed in to change notification settings - Fork 159
/
Copy pathindex.html
56 lines (55 loc) · 1.38 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
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/src/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Issue Tracker</title>
<style>
html,
body {
background-color: black;
}
:root {
--black: #000;
--white: #fff;
--red: #f32827;
--purple: #a42ce9;
--blue: #2d7fea;
--yellow: #f4f73e;
--pink: #eb30c1;
--gold: #ffd500;
--aqua: #2febd2;
--gray: #282c35;
}
html {
font-family: proxima-nova, -apple-system, BlinkMacSystemFont, Segoe UI,
Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
box-sizing: border-box;
font-size: 18px;
}
body {
margin: 0;
padding: 0;
min-height: 100vh;
background: var(--black);
color: var(--white);
}
.yellow-border {
padding: 0;
margin: 0;
background: var(--yellow);
height: 5px;
width: 100%;
}
</style>
</head>
<body>
<div class="yellow-border"></div>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>