mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-09-07 17:26:49 +00:00
62 lines
713 B
CSS
62 lines
713 B
CSS
*
|
|
{
|
|
padding:0px;
|
|
border: 0px;
|
|
margin: 0px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
html, body {
|
|
height: 100%;
|
|
width: 100%;
|
|
margin: 0px;
|
|
padding: 0px;
|
|
line-height: 20px;
|
|
}
|
|
|
|
/*------------------*/
|
|
body
|
|
{
|
|
display:flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
max-height: 900px;
|
|
max-width: 1300px;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.NormalBtn
|
|
{
|
|
padding: 3mm 10mm;
|
|
font-size: 14px;
|
|
text-align: center;
|
|
background-color: #009688;
|
|
border-radius: 20px;
|
|
color: #fff;
|
|
cursor: pointer;
|
|
margin-left: 10px;
|
|
}
|
|
|
|
#ErrorBlock
|
|
{
|
|
display:flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
#ErrorIcon
|
|
{
|
|
width:100px;
|
|
}
|
|
|
|
#ErrorTip
|
|
{
|
|
font-size: 18px;
|
|
line-height: 50px;
|
|
}
|
|
|
|
#ErrorBtn
|
|
{
|
|
width:100px;
|
|
display: none;
|
|
} |