mirror of
https://github.com/raviriley/STL-to-OpenSCAD-Converter.git
synced 2024-11-22 14:43:10 +01:00
28 lines
493 B
CSS
28 lines
493 B
CSS
body {
|
|
font-family: Helvetica, Verdana
|
|
}
|
|
p {
|
|
padding: 7px 10px;
|
|
}
|
|
#error {
|
|
color: red;
|
|
}
|
|
#progress_bar {
|
|
margin: 10px 0;
|
|
padding: 3px;
|
|
border: 1px solid #000;
|
|
font-size: 14px;
|
|
clear: both;
|
|
opacity: 0;
|
|
-moz-transition: opacity 1s linear;
|
|
-o-transition: opacity 1s linear;
|
|
-webkit-transition: opacity 1s linear;
|
|
}
|
|
#progress_bar.loading {
|
|
opacity: 1.0;
|
|
}
|
|
#progress_bar .percent {
|
|
background-color: #99ccff;
|
|
height: auto;
|
|
width: 0;
|
|
} |