Constellations/css/grid.css

22 lines
257 B
CSS
Raw Normal View History

2022-07-24 11:20:22 +02:00
#grid {
border-collapse: collapse;
2022-07-23 18:39:27 +02:00
background: #ddd;
}
2022-07-24 11:20:22 +02:00
#grid td {
2022-07-23 18:39:27 +02:00
width: 2em;
height: 2em;
2022-07-25 15:40:03 +02:00
display: inline-block;
2022-07-23 18:39:27 +02:00
cursor: pointer;
2022-07-24 11:20:22 +02:00
padding: 1px;
2022-07-23 18:39:27 +02:00
}
2022-07-24 11:20:22 +02:00
#grid td:hover {
padding: 0;
border: 1px dashed #aaa;
}
2022-07-25 15:40:03 +02:00
#grid td[class*="color"] {
padding: 0;
}