45 lines
598 B
CSS
45 lines
598 B
CSS
div {
|
|
display: block;
|
|
color: #101e24;
|
|
font-family: "Arial", Helvetica, sans-serif;
|
|
}
|
|
|
|
.numberinput {
|
|
width: 64px;
|
|
}
|
|
|
|
#instructions {
|
|
font-size: 12px;
|
|
margin: auto;
|
|
width: 50%;
|
|
border: 2px solid #6b7578;
|
|
padding: 1px;
|
|
text-align: center;
|
|
}
|
|
|
|
.instruction {
|
|
display: block;
|
|
color: #101e24;
|
|
font-family: "Arial", Helvetica, sans-serif;
|
|
}
|
|
|
|
.warning {
|
|
display: block;
|
|
color: #520012;
|
|
font-family: "Arial", Helvetica, sans-serif;
|
|
}
|
|
|
|
body {
|
|
background-color: #818485;
|
|
}
|
|
|
|
#dropZone {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
#canvasImage {
|
|
border: 2px solid #6b7578;
|
|
image-rendering: pixelated;
|
|
}
|