Explorar el Código

Make cell borders gray instead of black

master
Dylan Baker hace 5 años
padre
commit
b852dd7358
Se han modificado 1 ficheros con 3 adiciones y 3 borrados
  1. 3
    3
      src/index.css

+ 3
- 3
src/index.css Ver fichero

46
 }
46
 }
47
 
47
 
48
 .cell {
48
 .cell {
49
-  border: 1px solid black;
49
+  border: 1px solid #999;
50
   border-right: none;
50
   border-right: none;
51
   border-bottom: none;
51
   border-bottom: none;
52
   display: inline-block;
52
   display: inline-block;
55
 }
55
 }
56
 
56
 
57
 .row:last-child .cell {
57
 .row:last-child .cell {
58
-  border-bottom: 1px solid black;
58
+  border-bottom: 1px solid #999;
59
 }
59
 }
60
 
60
 
61
 .cell:last-child {
61
 .cell:last-child {
62
-  border-right: 1px solid black;
62
+  border-right: 1px solid #999;
63
 }
63
 }
64
 
64
 
65
 .cell.alive {
65
 .cell.alive {

Loading…
Cancelar
Guardar