-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
117 lines (105 loc) · 2.74 KB
/
Copy pathindex.html
File metadata and controls
117 lines (105 loc) · 2.74 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
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
<!DOCTYPE html>
<html>
<head>
<title>ArchiveWarrior Stats Widget</title>
<script src="script.js"></script>
<style>
body {
background-color: #008080;
}
#bouton-bas-droite {
position: fixed;
bottom: 20px;
right: 20px;
padding: 10px 20px;
cursor: pointer;
}
.window {
margin: 0 auto;
width: fit-content;
max-width: 90%;
min-width: 300px;
}
.window-body {
white-space: nowrap;
padding: 1rem;
}
#metric:has(h1) {
visibility: visible;
}
#metric span.data {
position: relative;
float: right;
}
#msg,
#userForm {
margin: 2rem auto;
width: fit-content;
}
#msg {
text-align: center;
color: rgb(141, 0, 0);
font-weight: bold;
}
.bottom-left-controls {
position: fixed;
bottom: 20px;
left: 20px;
background: white;
padding: 10px;
border: 1px solid #dfdfdf;
box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
z-index: 1000;
}
.field-row {
margin: 5px 0;
}
</style>
<link rel="stylesheet" href="https://unpkg.com/98.css">
</head>
<body>
<div class="title-bar inactive">
<div class="title-bar-text">HTML Widget for download stats from Archive Team Warrior (forked by Exorcism)</div>
<div class="title-bar-controls">
<button aria-label="Close"></button>
</div>
</div>
<br><br><br>
<div class="window">
<div class="title-bar">
<div class="title-bar-text">Download Stats</div>
<div class="title-bar-controls">
<button aria-label="Minimize"></button>
<button aria-label="Maximize"></button>
<button aria-label="Close"></button>
</div>
</div>
<div class="window-body">
<div id=metric>
</div>
</div>
</div>
<div id="userForm">
<input id="projectName" type="text" name="projectName" placeholder="Project Name" />
<input id="nickName" type="text" name="nickName" placeholder="Nickname" />
<button id="lookup">LookUp Nick</button>
</div>
<button id="bouton-bas-droite" href="https://github.com/Exorcism0666/archivestats">Credits</button>
<div id="msg"></div>
<div class="bottom-left-controls">
<p>Themes:</p>
<div class="field-row">
<input checked disabled id="radio8" type="radio" name="second-example">
<label for="radio8">Windows 98</label>
</div>
<div class="field-row">
<input id="radio7" type="radio" onclick="window.location.href = 'index2.html';">
<label for="radio7">Windows XP</label>
</div>
<div class="field-row">
<input id="radio2" type="radio" onclick="window.location.href = 'index3.html';">
<label for="radio2">macOS</label>
</div>
</div>
</body>
</html>