forked from thelgevold/svelte-comments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (48 loc) · 1.02 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
56
57
58
59
60
<html>
<head>
<link href="node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<style>
.comment-section ul
{
list-style-type: none;
}
tree-view > tree-node > ul{
padding-left: 0;
}
.commentDate{
color: #808080;
font-size: 12px;
}
.comment h5{
margin-top: 0;
}
.commentSection {
width: 600px;
}
.comment{
border: 1px solid #ccc;
border-radius: 4px;
max-width: 350px;
padding: 10px;
background-color: #fff;
margin-top: 5px;
position: relative;
font-size: 13px;
}
.reply-link a{
color: #0088cc;
}
</style>
</head>
<body>
<script>
var commentCtx = {articleId : 'someId',
url: 'some-url'
}
</script>
<div class="container">
<main></main>
</div>
<script src="dist/build.js"></script>
</body>
</html>