26 lines
368 B
CSS
26 lines
368 B
CSS
.container {
|
|
display: flex;
|
|
justify-content: space-evenly;
|
|
}
|
|
|
|
.sidebar {
|
|
height: 500px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-evenly;
|
|
align-items: center;
|
|
}
|
|
|
|
.buttons {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
}
|
|
|
|
#palette-canvas {
|
|
border: 1px solid black;
|
|
}
|
|
|
|
#cyclingSpeedSlider {
|
|
width: 70%;
|
|
}
|