refs #828, added HTML template

This commit is contained in:
Klaus Basan
2016-12-09 03:28:44 +01:00
parent d82c6bc44f
commit 8488909a44
4 changed files with 76 additions and 6 deletions

View File

@@ -0,0 +1,43 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>swift</title>
<meta name="description" content="swift page">
<meta name="author" content="swift team">
<style>
body {
background-color: white;
font-family: arial;
font-size: 12px;
}
tr:nth-child(even) {
background-color: #c0c0c0;
}
td {
text-align: center;
border: 1px solid lightblue;
}
th {
background:#001;
color:#fff;
white-space: nowrap;
}
.mouseoverdisplay {
background-color: #eeeeee;
position: absolute;
z-index:100;
display: none;
white-space: nowrap;
overflow: hidden;
text-align: left;
}
a:hover + .mouseoverdisplay {
display: block;
}
</style>
</head>
<body>
%1
</body>
</html>