-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (33 loc) · 1.01 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>sapa - Simple JS Application Library</title>
<meta name="description" content="This tool has easy way to make css gradient. It's really really simple. Let's make a beautiful gradient for the web. ">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- <script type="text/javascript" src="./dist/main.js" ></script> -->
<style type="text/css">
html, body {
padding:0px;
margin:0px;
}
.test-view {
margin: 10px auto;
max-width: 600px;
}
.test-list .item{
border: 1px solid black;
padding: 10px 20px;
cursor: pointer;
}
.test-list .item.selected{
background-color: red;
color: white;
}
</style>
</head>
<body>
<button type="button">안녕</button>
<script type='module' src='./examples/sample.ts'></script>
</body>
</html>