-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (51 loc) · 2.26 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title>ChargD</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- TODO: once we get a proper webserver move the catppuccin palette to local :> -->
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" type="image/png" href="favicon.png">
<meta name="theme-color" content="#D9C7FF" />
<meta property="og:type" content="application">
<meta property="og:title" content="ChargD" />
<!-- <meta property="og:site_name" content="app.chargd.social"> -->
<meta property="og:description" content="ChargD — a new way to see your friends (?)!" />
<meta property="og:image" content="https://app.chargd.social/assets/banner.png" />
<meta property="og:url" content="https://app.chargd.social">
<meta property="twitter:card" content="summary_large_image">
</head>
<body>
<div class="main">
<div class="visualisation">
<div class="visual-center">
<svg id="circle-progress" width="300" height="300" viewPort="0 0 150 150" version="1.1" xmlns="http://www.w3.org/2000/svg">
<linearGradient id="circle-gradient" x1="0" y1="0" x2="1" y2="1">
<stop offset="0%" stop-color="#D9C7FF"></stop>
<stop offset="50%" stop-color="#78cbf6"></stop>
<stop offset="100%" stop-color="#78D7D3"></stop>
</linearGradient>
<circle class="circle-progress-svg" id="circle-progress-svg-back" r="120" cx="150" cy="150" fill="transparent" stroke-dasharray="753.98" stroke-dashoffset=0></circle>
<circle class="circle-progress-svg" id="circle-progress-svg-bar" r="120" cx="150" cy="150" fill="transparent" stroke-dasharray="753.98" stroke="url(#circle-gradient)"></circle>
</svg>
<!--include the logo and whatever stuff in the middle here too-->
</div>
<div id="temp-battery-display">
</div>
</div>
<div class="feed">
<div class="chargd_title_wrapper">
<!-- <h1 class="chargd_title">chargd</h1> -->
<img src="assets/logo on black.svg" width=90%></svg>
</div>
<button type="submit" id="refresh_button">refresh</button>
<div id="show_stuff">
</div>
<div class="feed_shade"></div>
</div>
</div>
<script src="script.js"></script>
</body>
</html>