94 lines
1.2 KiB
CSS
94 lines
1.2 KiB
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;
|
|
}
|
|
|
|
|
|
|
|
|
|
#fileListWrapper {
|
|
width: 300px;
|
|
max-height: 200px;
|
|
overflow-y: auto;
|
|
background-color: #f0f4ff;
|
|
border: 1px solid #aaa;
|
|
border-radius: 4px;
|
|
font-family: sans-serif;
|
|
font-size: 14px;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
#fileListHeader {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 4px 8px;
|
|
background-color: #dbe4ff;
|
|
border-bottom: 1px solid #aaa;
|
|
font-weight: bold;
|
|
}
|
|
|
|
#fileActions button {
|
|
margin-left: 4px;
|
|
padding: 2px 6px;
|
|
font-size: 12px;
|
|
}
|
|
|
|
#fileList {
|
|
list-style: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#fileList li {
|
|
padding: 4px 8px;
|
|
border-bottom: 1px solid #ddd;
|
|
cursor: pointer;
|
|
}
|
|
|
|
#fileList li:hover {
|
|
background-color: #e6f0ff;
|
|
}
|
|
|
|
#fileList li.selected {
|
|
background-color: #cce0ff;
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
canvas {
|
|
background-color: #f0f0f0;
|
|
/* light grey */
|
|
border: 1px solid #ccc;
|
|
/* optional subtle border */
|
|
}
|
|
|
|
|
|
textarea {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
canvas {
|
|
margin-bottom: 5px;
|
|
} |