mnml/client/assets/styles/controls.less
2019-08-09 17:25:43 +10:00

43 lines
765 B
Plaintext

aside {
grid-area: ctrl;
display: grid;
grid-template-rows: 1fr 1fr 1fr;
grid-gap: 0.5em 0;
padding: 1em;
div {
text-align: right;
}
button {
width: 100%;
font-size: 150%;
margin: 0;
}
button.ready:enabled {
&:hover {
color: forestgreen;
border-color: forestgreen;
}
&:active, &:focus {
background: forestgreen;
color: black;
border-color: forestgreen;
}
}
}
.ready-btn:hover, .ready-btn:focus, .ready-btn:active {
color: forestgreen;
}
.ready {
color: forestgreen;
transition-property: color, background;
transition-duration: 0.25s;
transition-timing-function: ease;
}