-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
109 lines (109 loc) · 7.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Dashboard by MrFranks</title>
<!-- CSS STUFF -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" integrity="sha512-iecdLmaskl7CVkqkXNQ/ZH/XLlvWZOJyj7Yy7tcenmpD1ypASozpmT/E0iPtmFIB46ZmdtAc9eNBvH0H/ZpiBw==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css">
<link rel="stylesheet" href="/chosen_v1.8.7/chosen.css">
<link rel="stylesheet" href="index.css">
<!-- FONT STUFF -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Amatic+SC:wght@700&family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<!-- META STUFF -->
<link rel="icon" type="image/png" sizes="64x64" href="/images/icons/favicon.png">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1"/>
</head>
<body>
<main>
<div id="bigdiv" class="bigdiv">
<div class="left-bottom">
<div id="crypto-div" class="crypto-div">
<img class='weather-img' src='/images/rippleLoad.svg' alt='loading-animation'><br>
Loading Crypto assets...
</div>
</div>
<div class="center">
<div class="uppercenter">
<div class="date-and-time">
<div id="current-date" class="current-date"></div>
<div id="current-time" class="current-time"></div>
</div>
</div>
<div id="lowercenter" class="lowercenter">
<img class='weather-img' src='/images/rippleLoad.svg' alt='loading-animation'><br>
Loading Trump Quote...
</div>
</div>
<div class="right-mid">
<div id="weather-div" class="weather-div">
<p class='weather-location'></p>
<div class='image-temps'>
<img class='weather-img' src='/images/rippleLoad.svg' alt='loading-animation'>
<p class='temp-text'></p>
</div>
<p class='weather-description'>Fetching weather...</p>
</div>
</div>
</div>
<div id="footer" class="footer">
<div id="author" class="author"></div>
<div class="made-by">Dashboard design by <a href='https://www.github.com/MrFranksJr' target='_blank' alt='github of MrFranks'>MrFranks</a></div>
<div class="settings-info">
<button><i class="fa-solid fa-circle-info" id="info-button"></i></button>
<button><i class="fa-solid fa-gear" id="options-button"></i></button>
</div>
</div>
</main>
<div class="info-modal" id="info-modal">
<h2>Info</h2>
<div>This apps connects to various external services through APIs to display the different available information on screen.<br></div>
<div class="credit-logo"><img src="/images/Unsplash_Logo_Full.png" alt="unsplash logo"><p> Powered by <a href="https://unsplash.com/" alt="website of unsplash" target="_blank">Unsplash</a></p></div>
<div class="credit-logo"><img src="/images/coingecko-branding-guide-8447de673439420efa0ab1e0e03a1f8b0137270fbc9c0b7c086ee284bd417fa1.webp" alt="coingecko logo"><p> Powered by <a href="https://www.coingecko.com/" aria-label="coingecko website" target="_blank">CoinGecko</a></p></div>
<div class="credit-logo"><img src="/images/openweather-seeklogo.com.svg" alt="openweather logo"><p> Powered by <a href="https://openweathermap.org/" alt='openweather website' target="_blank">OpenWeather</a></p></div>
<div class="credit-logo"><img src="/images/whatdoestrumpthink.png" alt="whatdoestrumpthink logo"><p> Powered by <a href="https://whatdoestrumpthink.com/api-docs/index.html" alt="api ref of whatdoestrumpthink" target="_blank">What Does Trump Think?</a></p></div>
<div class="credit-logo"><img src="/images/DevProfilePic.jpg" alt="photo of Franky" class="devpic"><p> Designed by <a href="https://github.com/MrFranksJr" alt="GitHub of MrFranks" target="_blank">MrFranks</a></p></div>
<div class="credit-logo"><img src="/images/chrome_logo.png" alt="chrome logo"><p>Designed for use with Chrome</p></div>
<div class="last-updated">Last updated <span class="last-updated-date">Jan 2025</span></div>
</div>
<div class="options-modal" id="options-modal">
<div class="upper-options">
<div class="options-modal-title">
<h2>Edit Dashboard options</h2>
<i class="fa-solid fa-circle-xmark" id="close-options-modal"></i>
</div>
<div class="option">
<label for="crypto-list">Crypto assets:</label>
<select data-placeholder="Choose crypto assets..." class="chosen-select" multiple tabindex="3" name="crypto-list" id="crypto-list">
</select>
</div>
<div class="option">
<label for="currency-list">Displayed currency:</label>
<select name="currency-list" id="currency-list">
<option value="eur">Euro (EUR)</option>
<option value="usd">US Dollar (USD)</option>
<option value="jpy">Japanese Yen (JPY)</option>
</select>
</div>
<div class="option">
<label for="measurement-list">Units:</label>
<select name="measurement-list" id="measurement-list">
<option value="metric">Metric</option>
<option value="imperial">Imperial</option>
</select>
</div>
</div>
<button id="save-setting-btn" class="save-setting-btn">Save settings</button>
</div>
<div class="settings-saved" id="settings-saved">
<p>Your settings have been saved!</p>
</div>
<script src="index.js" type="module"></script>
<script src="/chosen_v1.8.7/docsupport/jquery-3.2.1.min.js" type="text/javascript"></script>
<script src="/chosen_v1.8.7/chosen.jquery.js" type="text/javascript"></script>
<script src="/chosen_v1.8.7/docsupport/prism.js" type="text/javascript" charset="utf-8"></script>
<script src="/chosen_v1.8.7/docsupport/init.js" type="text/javascript" charset="utf-8"></script>
</body>
</html>