-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
43 lines (42 loc) · 1.39 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
<html>
<head>
<meta charset="UTF-8">
<style>
body {
width: 180px;
}
h1 {
text-align: center;
}
.button-secondary {
background: white; /* this is a light blue */
color: black;
padding: 5px 10px;
outline: none;
border-radius: 4px;
border: 1px solid #dcdfe6;
cursor: pointer;
margin: 5px 0;
}
.button-secondary:hover {
background: #fff;
color: #409EFF;
border: 1px solid #409EFF;
}
.buttongroup {
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
</style>
</head>
<body>
<div class="buttongroup">
<button type="button" class="button-secondary" id="export1">export svg (selected)</button>
<button type="button" class="button-secondary" id="export2">export svg (all)</button>
<button type="button" class="button-secondary" id="export3">export png (selected)</button>
<button type="button" class="button-secondary" id="export4">export png (all)</button>
</div>
</body>
<script type="text/javascript" src="./main.js"></script>
</html>