Skip to content
Snippets Groups Projects
Select Git revision
  • 29fae6cfa8c3e1a629d5e6b5c77bbc0012b1644e
  • master default protected
  • solution
3 results

style.scss

Blame
  • style.scss 301 B
    $primary-color: #88f;
    $empty-color: #ddd;
    $border-color: #444;
    
    .cell {
      fill: $empty-color;
      stroke: $border-color;
      cursor: pointer;
    
      &:hover {
        fill: darken($empty-color, 10%);  
      }
    
      &.alive {
        fill: $primary-color;
      }
      &.alive:hover {
        fill: darken($primary-color, 10%);
      }
    }