-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathempty.html
51 lines (49 loc) · 1.16 KB
/
empty.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body{
display: flex;
flex-direction: row-reverse;
justify-content: space-around;
align-items: center;
background: lightgray;
}
button {
color: white;
background-color: rgb(144, 144, 199);
margin: 25px;
font-size: large;
border: none;
padding: 5px;
border-radius: 15px;
}
#main {
display: flex;
flex-direction: column;
align-items: center;
}
</style>
</head>
<body>
<div id="main">
<button id="switch">Switch comment</button>
<div>
<h3>Side Padding</h3>
<input type="range" name="sidePadding" id="side" value="30">
</div>
<div>
<h3>Top Padding</h3>
<input type="range" name="topPadding" id="top" value="60">
</div>
<button id="download">Download</button>
</div>
<canvas style="visibility: visible;"></canvas>
<img id="preview">
<script src="empty.js"></script>
</body>
</html>