-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (50 loc) · 931 Bytes
/
index.html
File metadata and controls
51 lines (50 loc) · 931 Bytes
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
<!--
© 2024 Vlad-Stefan Harbuz <[email protected]>
SPDX-License-Identifier: Apache-2.0
-->
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>OSP Report Visualizer</title>
<style>
* {
box-sizing: border-box;
}
:root {
--color-bg: #080e17;
--color-light-bg: #16212d;
--color-primary: #2dde74;
--color-secondary: #9e86ff;
--color-tertiary: #ffd00e;
--color-muted: #37485c;
--color-pink: #ff70bc;
--color-text: white;
}
html, body {
margin: 0;
padding: 0;
}
html {
font-size: 16px;
}
.axis {
font-size: 14px;
}
.bar {
fill: var(--color-secondary);
}
.marker {
stroke-width: 2px;
stroke: var(--color-tertiary);
fill: none;
outline: 2px solid white;
}
</style>
</head>
<body>
<main></main>
<script src="build/index.js"></script>
</body>
</html>