Sector Thermal Scanner Game

Guesses Left: 15 ... Time Left: 20
Welcome to
SECTOR
THERMAL
SCANNER


You are equipped with a thermal scanner, but can only invesigate one sector at a time. You are tasked with finding the sector with the most-intense heat signature, but you have limited time and limited guesses to find it! Good luck!


COLD
HOT
Guesses:
40
30
20
15
10
Time:
60s
40s
30s
20s
15s
10s

Sector Thermal Scanner Game. Adjustable game options underneath (for added/subtracted difficulty). This is a css-based game. The individual blocks are table-cell divs. I used a little python script to control how many squares I wanted, and then when placed, the CSS code automatically lays out everything. Feel free to inspect the code and use however you like. Below is the python script I used to generate the rows and cells of the table.
					
rows=25
TAB="    "
for x in range(rows):
    print(f'{TAB*4}<div class="row">')
    for y in range(rows):
        print(f'{TAB*5}<div id="c{}_{}" class="cell" onClick="reveal(this.id)"> </div>
    print(f'{TAB*4}</div>')