-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (72 loc) · 3.82 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html style="height:100%;overflow:hidden">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Security-Policy" content="default-src * 'unsafe-inline'">
<title>Breathe</title>
<!-- Stylesheets -->
<!-- JavaScript Libraries -->
<!-- CSS only -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<link rel="stylesheet" href="./src/css/style.css">
<link rel="stylesheet" href="./src/css/modal.css">
<!-- JS, Popper.js, and jQuery -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"
integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4="
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
<script src="https://d3js.org/d3.v6.min.js"></script>
<!--<script src="../ext/plotly-1.53.0.min.js"></script>-->
<!-- JavaScript Controller Files -->
<script src="./src/app/Controllers/IndexController.js"></script>
</head>
<body style="height:100%;overflow:hidden">
<div id="container" class="container-fluid" style="height:100%;overflow:hidden">
<div class="row" style="height:100%">
<div id="header">
<button id="btn-I-feel-bad" class="btn btn-secondary">I Feel Bad</button>
<button id="btn-I-hate-myself" class="btn btn-secondary">I Hate Myself</button>
<button id="btn-Im-a-terrible-person" class="btn btn-secondary">I'm a Terrible Person</button>
<button id="btn-Its-all-too-much" class="btn btn-secondary">It's All Too Much</button>
<button id="btn-I-just-want-a-hug" class="btn btn-secondary">I Just Want a Hug</button>
<button id="btn-Im-already-panicked" class="btn btn-secondary">I'm Already Panicked</button>
<button id="btn-About" class="btn btn-secondary" data-open="modal-about">About</button>
</div>
<img src="./src/img/yinyang.svg" id="yinyang" />
<div id="btn-counting" class="border border-dark rounded-circle">
<p>temp</p>
</div>
<!--<div id="svg-container">
</div>-->
<label id="words"></label>
<button id="terrible-1" class="moving btn btn-secondary">I'm a Terrible Person</button>
<button id="terrible-2" class="moving btn btn-secondary">I'm a Terrible Person</button>
</div>
</div>
<div class="modal" id="modal-about">
<div class="modal-dialog">
<header class="modal-header">
About
<button class="close-modal" aria-label="close modal" data-close>✕</button>
</header>
<section class="modal-content">
<p>
Sometimes we need help, but we might feel incapable of asking for it.
</p>
<p>
This project was made for a friend who took a time that should have been
one of the worst times of my life and turned it into a time that was not.
This project is dedicated to them.
</p>
</section>
<footer class="modal-footer"></footer>
</div>
</div>
<script nonce="3466c8e26c">
$(function () {
var main = new IndexMain();
});
</script>
</body>
</html>