dig-a-hole-game/style.css
Christian Lawson-Perfect 94c58e7f74 first commit
2025-02-09 20:15:54 +00:00

41 lines
No EOL
566 B
CSS

* {
box-sizing: border-box;
}
body {
margin: 0;
}
table {
border-collapse: collapse;
touch-action: manipulation;
user-select: none;
margin: 1em auto;
}
td {
background: green;
font-size: 6svw;
font-family: monospace;
text-align: center;
&.can-increment {
color: green;
cursor: pointer;
}
& div {
width: 2em;
height: 2em;
line-height: 2em;
border-radius: 50%;
background: white;
}
}
fieldset {
display: flex;
& label {
flex-grow: 1;
text-align: center;
}
}