-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
121 lines (105 loc) · 4.33 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Life Juice!</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<link rel="stylesheet" href="assets/style.css">
<link rel="icon" type="image/png" href="assets/lifeJuiceLogo.png"/>
</head>
<body>
<nav class="navbar is-primary mb-6" role="navigation" aria-label="main navigation">
<div id="main-nav" class="navbar-item">
<img src="assets/heartLogo.png" alt="life juice heart logo" id="heart-logo">
<h1 class="lifenav">
L<span class="second">i</span><span class="third">f</span><span class="fourth">e</span><span> </span>
<a class="fifth" id ="jeff">J</a><span class="sixth">u</span><span class="seventh">i</span><span class="eighth">c</span><span class="ninth">e</span>
</h1>
<img src="assets/lifeJuiceLogo.png" alt="life juice logo" id="juice-logo">
</div>
</nav>
<div class="container mb-6">
<section class="section">
<div>
<p class="subtitle has-text-centered is-size-3">
Life Juice is your daily dose of<strong> internet joy!</strong>
<br>
</p>
<div class="notification has-text-centered has-text-primary-light pb-5">
<p class="title is-5">Ready to get started? Click any button below or take a random sip! -> <a id="sip"><img src="assets/lifeJuiceLogo.png" alt="life juice logo" width="50"></a>
</p>
</div>
</div>
</section>
<div class="startScreen pl-5 pr-6 pb-5">
<button id="smile" class="button is-large is-fullwidth is-center is-rounded has-text-primary-light">Orange you glad?</button>
<br>
<button id="quote" class="button is-large is-fullwidth is-center is-rounded has-text-primary-light">"To squeeze.. or not to squeeze"</button>
<br>
<button id="fact" class="button is-large is-fullwidth is-center is-rounded has-text-primary-light">When life gets sour</button>
</div>
</div>
<footer class="footer pb-2 pt-2">
<div class="content has-text-centered">
<p>
<strong>Life Juice</strong> by <a href="https://github.com/solemansay/LifeJuice"> <strong>Code Team 6.</strong></a>
<br> Copyright © 2020
</p>
</div>
</footer>
<div id = "gifModal" class="modal">
<div class="modal-background"></div>
<div class="modal-content">
<img id = "displayGIF">
</div>
<button id ="close" class="modal-close is-large" aria-label="close"></button>
</div>
<div id ="jokeModal" class="modal">
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head">
<strong><section id = "jokeSetup" class="modal-card-body"></section></strong>
</header>
<footer class="modal-card-foot">
<section id = "jokePunchline" class="modal-card-body">
</section>
</footer>
</div>
</div>
<div id ="quoteModal" class="modal">
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head">
<section class="modal-card-body"><span id ="quoteText" ></span>
<br>
<span><i id ="author"></i></span></section>
<button id = "closeQuote" class="delete" aria-label="close"></button>
</header>
</div>
</div>
<div id ="jeffModal" class="modal">
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head">
<section class="modal-card-body"><span id ="jeffQuoteText" ></span>
<br>
<span><i id ="Author"></i></span></section>
<button id = "closeJeffQuote" class="delete" aria-label="close"></button>
</header>
</div>
</div>
<div id ="adviceModal" class="modal">
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head">
<section id ="advice" class="modal-card-body"></section>
<button id = "closeAdvice" class="delete" aria-label="close"></button>
</header>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script src="assets/script.js"></script>
</body>
</html>