38 lines
502 B
CSS
38 lines
502 B
CSS
body {
|
|
font-family: sans-serif;
|
|
text-align: center;
|
|
}
|
|
|
|
.dial-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 30px;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.dial {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.dial.selected {
|
|
background-color: #ddd;
|
|
border-radius: 10px;
|
|
padding: 10px;
|
|
}
|
|
|
|
canvas {
|
|
background-color: #f0f0f0; /* light grey */
|
|
border: 1px solid #ccc; /* optional subtle border */
|
|
}
|
|
|
|
|
|
textarea {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
canvas {
|
|
margin-bottom: 5px;
|
|
}
|