blob: 27bcd83c29b29e5dccfcf503e42a51cfffba13b0 (
plain)
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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
body {
margin: 0px;
padding: 0px;
color: $FGCOLOR$;
background-color: $BGCOLOR$;
background-image: url($IMGDIR$gradient_bg.png);
background-repeat: repeat;
}
h1 {
margin: 0px;
padding: 8px;
font-size: 1.8em;
color: $COLOR1$;
background-color: $COLOR2$;
background-image: url($IMGDIR$gradient_header.png);
background-repeat: repeat-x;
border-bottom: 1px outset black;
text-align: center;
}
h3 {
text-align: center;
font-size: 1em;
margin-left:15%;
margin-right:15%;
}
div#content {
padding-left: 1%;
padding-right: 1%;
}
div.category {
padding: 0px 0px 0px 4px;
margin: 8px;
border: 1px solid #181818;
text-align: center;
/* if background is grey, text has to be black */
color: #000;
background-color: #ccc;
}
table {
border-collapse: collapse;
border-spacing: 0px;
max-width: 100%;
}
</style>
</head>
<body>
<h1>$BANNER$</h1>
<div id="content">
<div class="category">
$WELCOMETEXT$
</div>
</div>
</body>
</html>
|