-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (26 loc) · 1.31 KB
/
index.html
File metadata and controls
34 lines (26 loc) · 1.31 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
<html>
<head>
<title>Stardew Cheat Sheets</title>
<link rel="icon" href="/images/Legend.png">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="main" id="main">
<input type="image" src="/images/Kofi.png" onclick="window.open('https://ko-fi.com/mocretion')" style="right: 0px; bottom: 0px; position: absolute; width: 15%;">
<div class="info" id="info">
<div class="left" id="infoLeft">
</div>
<div class="right" id="infoRight">
</div>
</div>
<img class="darkMode" src="/images/DarkModeMoon.png" title="Toggle Darkmode" onclick="toggleDarkMode()"/>
<div class="cheat-sheets">
<input type="image" src="/images/CommunityCenter.png" title="Community Center Cheat Sheet" onclick="window.open('/community_center', '_self')">
<input type="image" src="/images/Fishing.png" title="Fishing Cheat Sheet" onclick="window.open('/fish', '_self')">
<input type="image" src="/images/Friendship.png" title="Friendship Cheat Sheet" onclick="window.open('/friendship', '_self')">
</div>
</div>
</body>
<script src="/helper.js"></script>
<script src="script.js"></script>
</html>