estilo.css 942 Bytes
Newer Older
roshka committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
body{
  background: #008b8b;
  color: #eee;
  font-family: sans-serif;
  text-align: center;
}

#tablero{
  background: url(http://i0.kym-cdn.com/photos/images/original/001/303/313/2e6.jpg);
  box-shadow: 0 10px 10px -6px rgba(0, 0, 0,);
  border-radius: 3px;
  border-collapse: collapse;
  width: 400px;
  height: 400px;
  margin: auto;
}

#tablero td{
  color: #222;
  font-size: 36px;
  text-shadow: 1px 1px 1px rgba(255, 255, 255);
  width: 50px;
  height: 50px;
}

#tablero tr:nth-child(odd) td:nth-child(even),
#tablero tr:nth-child(even) td:nth-child(odd){
  background: rgb(0, 0, 0);
}

#tablero tr:nth-child(n+7) td{
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0,0,0);
}


#tablero tr:nth-child(odd) td:nth-child(even):hover, #tablero tr:nth-child(even) td:nth-child(odd):hover{
background: gray;

}

#tablero tr:nth-child(odd) td:nth-child(odd):hover, #tablero tr:nth-child(even) td:nth-child(even):hover{
background: skyblue;

}