menuPrototype/styles.css
2021-05-29 13:55:46 +01:00

77 lines
838 B
CSS

body, html
{
background-color: transparent;
height: 100%;
font-size: 2rem;
touch-action: manipulation;
overflow: hidden;
}
button{
background-color: white;
border: none;
border-radius: 4px;
margin-left:5px;
}
.Button
{
background-color: lightcoral;
font-size: 4rem;
}
.Label
{
font-size: 4rem;
}
.Button:hover
{
background-color: red;
}
.FullPage
{
width: 100%;
height: 100%;
}
.NoGrabHighlight
{
background-color: white;
}
.InRangeHighlight
{
background-color: lightblue;
}
.GrabbedHighlight
{
background-color: blue;
}
.TransformButton{
font-size: 1.2rem;
}
.TransformControlContainer{
display: flex;
justify-content: space-between;
background-color: gray;
padding: 5px;
border-radius: 15px;
font-size: 1.4rem;
margin-bottom: 10px;
}
.TransformControlImage{
width: 200px;
height: auto;
}