This repository has been archived on 2023-01-03. You can view files and clone it, but cannot push or open issues or pull requests.
mysecrets/templates/page.html
2012-03-15 15:05:09 -07:00

97 lines
1.9 KiB
HTML

$def with (title, body)
<html>
<head>
<title>$title</title>
</head>
<body>
<style type="text/css">
/* Eric Meyer CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
del {
text-decoration: line-through;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
</style>
<style type="text/css">
body {
font-family: Georgia;
padding: 5px;
font-size: 12px;
color: #3C3C3C;
}
h1 {
font-size: 1.3em;
font-weight: bold;
text-align: center;
padding-bottom: 5px;
padding-top: 5px;
}
h2 {
font-size: 1.1em;
font-weight: bold;
padding-bottom:5px;
padding-top:5px;
}
li {
padding-bottom: 5px;
}
p {
padding-bottom: 5px;
}
a.del {
font-size: .5em;
color: #F00;
text-decoration: none;
}
form {
text-align: center;
padding: 10px;
}
</style>
$:body
</body>
</html>