-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdune_saver_panel.html
69 lines (68 loc) · 1.57 KB
/
dune_saver_panel.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
body {
background-color: rgb(45, 45, 45);
color: #ccc;
}
.toolbox {
position: fixed;
top: 0;
left: 0;
right: 0;
padding: 20px;
background-color: rgb(45, 45, 45);
z-index: 10;
}
.contentWrapper {
position: relative;
height: 78px;
overflow: hidden;
}
.contentWrapper.showAll {
height: unset;
overflow: visible;
}
#content {
margin-top: 35px;
}
#saveButton {
display: inline-block;
cursor: pointer;
border: 1px solid #ccc;
padding: 5px 0;
width: 100px;
text-align: center;
border-radius: 4px;
}
#dataSummary {
margin-top: 70px;
}
#successTips {
margin-left: 20px;
color: aquamarine;
display: none;
}
#viewButton {
float: right;
display: none;
cursor: pointer;
}
</style>
</head>
<body>
<div class="toolbox">
<span id="saveButton">Save</span>
<span id="successTips">Done!</span>
</div>
<div id="dataSummary"></div>
<span id="viewButton">More/Less</span>
<div class="contentWrapper">
<div id="content"></div>
</div>
<script defer src="duneSaverPanel.js" type="module"></script>
</body>
</html>