Skip to content

Instantly share code, notes, and snippets.

@Markieta
Created November 30, 2015 19:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Markieta/08a176460537fdbb5ee1 to your computer and use it in GitHub Desktop.
Save Markieta/08a176460537fdbb5ee1 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<style>
table
{
table-layout: fixed;
width: 100%;
height: 100%;
}
td
{
background-color: LightBlue;
text-align: center;
}
div
{
width: 515px;
height: 510px;
}
td.green {background-color: green;}
td.yellow {background-color: yellow;}
td.red {background-color: red;}
</style>
</head>
<body>
<div>
<table>
<tr>
<td style="background-color:white"></td>
<td><b>Remote</b></td>
<td><b>Rare</b></td>
<td><b>Unlikely</b></td>
<td><b>Possible</b></td>
<td><b>Likely</b></td>
</tr>
<tr>
<td><b>No Effect</b></td>
<td class="green"></td>
<td class="green"></td>
<td class="green"></td>
<td class="green"></td>
<td class="green"></td>
</tr>
<tr>
<td><b>Negligible</b></td>
<td class="green"></td>
<td class="green"></td>
<td class="green"></td>
<td class="green"></td>
<td class="green"></td>
</tr>
<tr>
<td><b>Minor</b></td>
<td class="green"></td>
<td class="green"></td>
<td class="green"></td>
<td class="yellow"></td>
<td class="yellow"></td>
</tr>
<tr>
<td><b>Moderate</b></td>
<td class="green"></td>
<td class="green"></td>
<td class="yellow"></td>
<td class="yellow"></td>
<td class="red"></td>
</tr>
<tr>
<td><b>Major</b></td>
<td class="green"></td>
<td class="yellow"></td>
<td class="yellow"></td>
<td class="red"></td>
<td class="red"></td>
</tr>
<tr>
<td><b>Massive</b></td>
<td class="yellow"></td>
<td class="yellow"></td>
<td class="red"></td>
<td class="red"></td>
<td class="red"></td>
</tr>
</table>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment