forked from omz/AppSales-Mobile
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ReviewTemplate.html
53 lines (53 loc) · 1.18 KB
/
ReviewTemplate.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
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<style>
.review-title {
margin: 0;
display: block;
background: -webkit-gradient(linear, left top, left bottom, from(#e0e4e7), to(#b4bec6));
-webkit-background-origin: padding-box;
padding: 2%;
color: #111111;
width: 96.5%;
font-size: 15px;
border: solid #8999a5;
border-width: 0 0 1px 0;
word-wrap: break-word;
}
.review-subtitle {
margin: 0;
display: block;
background-color: #e0e4e7;
padding: 2%;
color: #8999a5;
width: 96.5%;
font-size: 12px;
border:solid #8999a5;
border-width: 0 0 1px 0;
text-align: right;
}
body {
margin: 0;
font-size: 14px; font-family: Helvetica, Arial;
background-color: white;
}
#content-pane {
margin: 0;
width: 97%;
overflow: visible;
word-wrap: break-word;
padding:5px;
}
</style>
<meta name="viewport" content="width=device-width; initial-scale=1.0;"/>
</head>
<body>
<h2 class="review-title">[[[TITLE]]]</h2>
<h2 class="review-subtitle">[[[DATE]]]</h2>
<div id="content-pane">
[[[CONTENT]]]
</div>
</body>
</html>