-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (46 loc) · 1.72 KB
/
index.html
File metadata and controls
61 lines (46 loc) · 1.72 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
<!DOCTYPE html>
<html>
<head>
<!-- Please UFT IS LOVE -->
<meta charset="UTF-8">
<!-- How we should see it -->
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<!-- Color in Android Header -->
<meta name="theme-color" content="#37474f">
<!-- Icon of the App -->
<link rel="icon" href="Webpage/Assets/Favicon.png">
<title>Competitive Reference</title>
<!-- Katex CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/katex@0.10.2/dist/katex.min.css" integrity="sha384-yFRtMMDnQtDRO8rLpMIKrtPCD5jdktao2TV19YiZYWMDkUR5GQZR/NOVTdquEx1j" crossorigin="anonymous">
<!-- Katex JS -->
<script defer src="https://cdn.jsdelivr.net/npm/katex@0.10.2/dist/katex.min.js" integrity="sha384-9Nhn55MVVN0/4OFx7EE5kpFBPsEMZxKTCnA+4fqDmg12eCTqGi6+BB2LjY8brQxJ" crossorigin="anonymous"></script>
<!-- Google Material Fonts -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" />
<title>SoyOscarRH</title>
</head>
<body>
<div id="ReactApp" />
</body>
<script src="Webpage/Distribution/main.bundle.js" type="text/javascript"></script>
<style>
html, body {
width: 100%;
height: 100%;
min-height: 100vh;
margin: 0px;
padding: 0px;
font-family: -apple-system, Roboto, sans-serif;
}
#ReactApp {
width: 100vw;
}
@font-face {
font-family: 'firacode';
font-weight: normal;
font-style: normal;
src: url('https://cdn.rawgit.com/tonsky/FiraCode/436ac320b39184d91ea9b0e246223663a5f6fbf2/distr/otf/FiraCode-Retina.otf');
}
code { font-family: 'firacode'; }
.katex-display { overflow: auto; }
</style>
</html>