mirror of
https://github.com/qgis/QGIS.git
synced 2025-10-05 00:09:32 -04:00
42 lines
718 B
HTML
42 lines
718 B
HTML
<html>
|
|
<head>
|
|
<style>
|
|
body
|
|
{
|
|
background-color: transparent;
|
|
margin: 6px;
|
|
padding: 0px;
|
|
}
|
|
table
|
|
{
|
|
width: 300px;
|
|
border-spacing: 6px;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
}
|
|
table tr
|
|
{
|
|
height: 40px;
|
|
}
|
|
table td
|
|
{
|
|
border: 2px solid black;
|
|
font-family: QGIS Vera Sans, arial;
|
|
font-size: 15px;
|
|
font-weight: bold;
|
|
}
|
|
tr.row1
|
|
{
|
|
background-color: yellow;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<table>
|
|
<tbody>
|
|
<tr class="row1"><td>[% "station" %]</td><td>[% "suburb" %]</td></tr>
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
</html>
|