The output test wheel is fixed size with a size of 300px and a margin of 60px on both sides. Decreasing each value by 20px, makes it fit a width (and height) of 360px. see: !1563 Signed-off-by: Markus Göllnitz <camelcasenick@bewares.it>
18 lines
327 B
CSS
18 lines
327 B
CSS
wheel {
|
|
background: alpha(currentColor, .08);
|
|
border-radius: 100%;
|
|
margin: 40px;
|
|
min-width: 280px;
|
|
min-height: 280px;
|
|
}
|
|
|
|
wheel > button {
|
|
background-color: @window_bg_color;
|
|
border: 1px solid @borders;
|
|
padding: 3px;
|
|
}
|
|
|
|
wheel > button.playing {
|
|
background-color: @accent_bg_color;
|
|
color: @accent_fg_color;
|
|
}
|