103 lines
1.2 KiB
CSS
103 lines
1.2 KiB
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;
|
|
}
|
|
|
|
.ToggleIndicatorOn{
|
|
background-color: #00ffCD;
|
|
height: 1.2rem;
|
|
width: 1.2rem;
|
|
border-radius: 5px;
|
|
margin-left: 15px;
|
|
}
|
|
|
|
.ToggleIndicatorOff{
|
|
background-color: transparent;
|
|
border: 0.2rem solid #00ffCD;
|
|
height: 0.8rem;
|
|
width: 0.8rem;
|
|
border-radius: 5px;
|
|
margin-left: 15px;
|
|
}
|
|
|
|
.ToggleIndicatorBox{
|
|
font-size: 1rem;
|
|
background-color: gray;
|
|
display: flex;
|
|
margin-right: 60vw;
|
|
padding: 5px;
|
|
border-radius: 7px;
|
|
}
|