forked from Jexordexan/vue-slicksort
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (52 loc) · 1.47 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
44
45
46
47
48
49
50
51
52
53
54
55
<!DOCTYPE html>
<html>
<head>
<title>Vue Sortable</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no, target-densitydpi=device-dpi" />
<style>
@import url(https://fonts.googleapis.com/css?family=Montserrat:400);
html, body, #root {
width: 100%;
height: 100%;
}
body {
background-color: #f9f9f9;
color: #333;
font-family: 'Montserrat', 'Helvetica Neue', Helvetica, arial, sans-serif;
display: flex;
margin: 0;
}
.root {
display: flex;
width: 50%;
align-items: center;
flex: 1 1 0;
}
.list {
width: 80%;
max-height: 80vh;
max-width: 500px;
margin: 0 auto;
padding: 0;
overflow: auto;
background-color: #f3f3f3;
border: 1px solid #EFEFEF;
border-radius: 3;
}
.list-item {
position: relative;
width: 100%;
display: block;
padding: 20px;
background-color: #FFF;
border-bottom: 1px solid #EFEFEF;
box-sizing: border-box;
-webkit-user-select: none;
}
</style>
</head>
<body>
<div id="root" class="root">Loading demo</div>
<script src="/static/bundle.js"></script>
</body>
</html>