clean up, start on display key, fix smoothing

This commit is contained in:
2022-10-08 10:45:53 -07:00
parent 22750b5a8c
commit d8bb0c7565
6 changed files with 109 additions and 32 deletions

28
display_key.html Normal file
View File

@@ -0,0 +1,28 @@
<table class="legend">
<tr>
<th>Color</th>
<th>Temperature</th>
</tr>
<tr>
<td class="legend-cell"><div style="width:20px;height:20px;background-color:red;"></div></td>
<td class="legend-cell">700°C</td>
</tr>
<tr>
<td class="legend-cell"><div style="width:20px;height:20px;background-color:red;"></div></td>
<td class="legend-cell">800°C</td>
</tr>
<tr>
<td class="legend-cell"><div style="width:20px;height:20px;background-color:red;"></div></td>
<td class="legend-cell">900°C</td>
</tr>
<tr>
<td class="legend-cell"><div style="width:20px;height:20px;background-color:red;"></div></td>
<td class="legend-cell">1000°C</td>
</tr>
</table>
<style>
.legend-cell {
padding: 4px 14px;
}
</style>