This repository has been archived on 2021-01-15. You can view files and clone it, but cannot push or open issues or pull requests.
goBug/template/Interfaccia.html

83 lines
1.9 KiB
HTML
Raw Normal View History

2017-05-26 13:09:48 +00:00
<html>
<head>
<title>GoBug</title>
<meta charset="UTF-8">
<style type="text/css">
2017-05-26 14:27:52 +00:00
h1,h2,h3,h4 {
2017-05-26 13:09:48 +00:00
color: white;
text-align: center;
2017-05-26 13:21:32 +00:00
font-size:2.4em;
2017-05-26 13:09:48 +00:00
}
2017-05-26 14:27:52 +00:00
p {
color: white;
font-size:2em;
}
2017-05-26 13:09:48 +00:00
body{
background: #009999;
}
table{
border: 1px solid white;
empty-cells: show;
2017-05-26 13:21:32 +00:00
background: white;
2017-05-26 13:09:48 +00:00
padding: 0px;
width:100%;
2017-05-26 14:27:52 +00:00
height: 100%;
}
div{
width:20%;
2017-05-26 13:21:32 +00:00
height: 89%;
2017-05-26 14:27:52 +00:00
background-color:#006666;
2017-05-26 13:09:48 +00:00
}
td,tr{
background: white;
padding: 0px
}
2017-05-26 13:38:17 +00:00
td.cibo{
background: #FFFF33;
padding: 0px
}
td.razza1{
background: #00ff00;
padding: 0px
}td.razza2{
background: #FF0000;
padding: 0px
}
2017-05-26 13:21:32 +00:00
2017-05-26 13:09:48 +00:00
</style>
</head>
<body>
2017-05-26 13:38:17 +00:00
<h1> Go bug</h1>
2017-05-26 14:27:52 +00:00
<div style="float:left; display:block; width:70%; height:89%; ">
2017-05-26 13:38:17 +00:00
<table>
<tr>
<td class="cibo"></th>
<td class="razza1"></td>
<td class="razza2"></td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
</tr>
</table>
2017-05-26 14:27:52 +00:00
</div>
<div style="float:left; display:block; width:1%; height:89%; "></div>
<div style="float:left; display:block; width:29%; height:89%; ">
<h1>legenda</h1>
<div style="float:left; display:block; width:30%; height:20%; background-color:#FFFF33;"></div>
<div style="float:right; display:block; width:65%; height:20%; "><p>Food</p></div>
<div style="float:right; display:block; width:100%; height:2%; "></div>
<div style="float:left; display:block; width:30%; height:20%; background-color:#00ff00;"></div>
<div style="float:right; display:block; width:65%; height:20%; "><p>Razza1</p></div>
<div style="float:right; display:block; width:100%; height:2%;"></div>
<div style="float:left; display:block; width:30%; height:20%; background-color:#F00;"></div>
<div style="float:right; display:block; width:65%; height:20%; "><p>Razza2</p></div>
</div>
2017-05-26 13:09:48 +00:00
</body>
2017-05-26 14:27:52 +00:00
</div>
2017-05-26 13:09:48 +00:00
</html>