cellular.css 340 B

12345678910111213141516171819202122232425262728
  1. body {
  2. margin:0px;
  3. }
  4. #background {
  5. width:100%;
  6. height:100%;
  7. overflow:hidden;
  8. position:absolute;
  9. background-color:#222222;
  10. }
  11. .cell {
  12. width:10px;
  13. height:10px;
  14. }
  15. .alive {
  16. //background-color:#000000;
  17. background-color:orange;
  18. }
  19. .dead {
  20. //background-color:#cccccc;
  21. background-color:#333333;
  22. }