-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
132 lines (130 loc) · 3.66 KB
/
Copy pathindex.html
File metadata and controls
132 lines (130 loc) · 3.66 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="keywords" content="极简风,评论系统,极简风评论系统,comment system">
<meta name="description" content="一款极简风评论系统">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta content="telephone=no,email=no" name="format-detection">
<meta http-equiv="X-UA-Compatible" content="IE=Edge,Chrome=1">
<title>A simple comment system.</title>
<style>
html {
font-size: 14px;
}
body {
background-color: rgb(238, 238, 238);
margin: 0;
}
header {
background: #fff;
}
a {
color: #999;
text-decoration: none;
border-bottom: 1px dotted #dedede;
}
.logo {
display: inline-block;
height: 60px;
font-size: 24px;
line-height: 60px;
color: #4285f4;
vertical-align: base-line;
}
.sub {
font-size: 12px;
color: #9c9c9c;
padding: 0 5px;
}
.market {
background-color: #4285f4;
height: 398px;
position: absolute;
top: 60px;
width: 100%;
outline: none;
display: block;
z-index: -1;
}
.container {
padding: 0 80px;
}
.placeholder {
height: 56px;
}
@media screen and (max-width:720px) {
header {
text-align: center;
}
.sub {
display: block;
padding-bottom: 10px;
}
.container {
padding: 0;
}
.placeholder,
.market {
display: none;
}
.content {
padding: 10px;
}
}
.content {
background: #fff;
padding: 10px 30px 50px;
}
.prolist {
padding: 10px 20px 20px 20px;
font-weight: 400;
font-size: 12px;
font-family: -apple-system, BlinkMacSystemFont, 'Mirages Custom', 'Merriweather', 'Open Sans', "Segoe UI", Roboto, "PingFang SC", "Microsoft Yahei", "WenQuanYi Micro Hei", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", Helvetica, Arial, sans-serif;
line-height: 1.5;
}
blockquote {
margin: 10px 0;
padding: 0 1em;
color: #6a737d;
border-left: 0.25em solid #dfe2e5;
}
#github {
padding: 20px 0;
}
.copy {
line-height: 60px;
text-align: center;
font-size: 12px;
color: #9c9c9c;
}
</style>
<script src="./dist/ohhho.min.js"></script>
</head>
<body>
<div class="market"></div>
<header>
<div class="container">
<a href="./" class="logo"></a>
<span class="sub">A simple comment system.</span>
</div>
</header>
<div class="container">
<div class="placeholder"></div>
<div class="content">
<div class="comment"></div>
</div>
</div>
<script>
new ohhho({
el: '.comment',
placeholder: 'Write a Comment',
path: '/',
serverURL: 'http://127.0.0.1:8787',
});
</script>
</body>
</html>