File: a_star.css

Recommend this page to a friend!
  Classes of Andoitz Jordan Marmolejo   astar   a_star.css   Download  
File: a_star.css
Role: Auxiliary data
Content type: text/plain
Description: CSS style
Class: astar
Implement the Pathfinding algorithm in JavaScript
Author: By
Last change:
Date: 9 years ago
Size: 448 bytes
 

Contents

Class file image Download
body{text-align:center;} div.cell{ width:20px; height:20px; float:left; border:thin solid black; } div.cell.obstaculo{background-color:black;} div.cell.abierto{background-color:white;} div.cell.esRuta{background-color:blue;} div.cell.inicio,div.cell.fin{border-color:#0FF;} div.cell.inicio{background-color:red;} div.cell.fin{background-color:red;} div.clear{clear:both;} div#tablero{ display:inline-block; margin-top:20px; }