forked from ContriHUB/LeetSolve
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (70 loc) · 1.98 KB
/
index.html
File metadata and controls
77 lines (70 loc) · 1.98 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<title>LeetSolve</title>
<meta
name="viewport"
content="minimum-scale=1, initial-scale=1, width=device-width"
/>
<style>
@font-face {
font-family: "Cool Font";
src: url("./src/static/fonts/Courier\ Prime.ttf");
}
@font-face {
font-family: "Tetris Font";
src: url("./src/static/fonts/Tecate-7DXD.ttf");
}
html,
body {
height: 100%;
margin: 0;
font-family: "Cool Font";
background-color: black;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
#root {
height: 100%;
display: flex;
flex-direction: column;
}
code {
font-family: "Cool Font";
}
/* below styles is for global scrollbars */
/* width */
::-webkit-scrollbar {
width: 10px;
}
/* Track */
::-webkit-scrollbar-track {
outline: 1px solid green;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #39ff14;
border-radius: 25px;
min-height: 40px;
}
::-webkit-scrollbar-corner {
background-color: transparent;
}
/*Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #33cd31;
}
</style>
</head>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/icon?family=Material+Icons"
/>
<body>
<div id="root"></div>
<script>
require("@babel/register");
require("./src/index.js");
</script>
</body>
</html>