style.css 265 B

12345678910111213141516171819202122
  1. #background {
  2. width:500px;
  3. height:200px;
  4. overflow:hidden;
  5. }
  6. .cell {
  7. width:10px;
  8. height:10px;
  9. }
  10. .alive {
  11. //background-color:#000000;
  12. background-color:lightblue;
  13. }
  14. .dead {
  15. //background-color:#cccccc;
  16. background-color:yellow;
  17. }