AnimationTool/dist/assets/stylesheets/main.css

58 lines
1.1 KiB
CSS
Raw Normal View History

2019-09-25 03:16:07 +00:00
div {
2019-09-25 00:42:35 +00:00
display: block;
2019-09-26 22:36:27 +00:00
color: #101e24;
2019-09-25 03:16:07 +00:00
font-family: "Arial", Helvetica, sans-serif;
2019-09-25 00:42:35 +00:00
}
2019-09-26 22:15:20 +00:00
#instructions {
2019-09-26 22:36:27 +00:00
font-size: 12px;
2019-09-26 22:15:20 +00:00
margin: auto;
width: 50%;
2019-09-26 22:36:27 +00:00
border: 2px solid #6b7578;
padding: 1px;
text-align: center;
2019-09-26 22:15:20 +00:00
}
.instruction {
display: block;
2019-09-26 22:36:27 +00:00
color: #101e24;
font-family: "Arial", Helvetica, sans-serif;
}
.warning {
display: block;
2019-09-26 22:36:27 +00:00
color: #520012;
font-family: "Arial", Helvetica, sans-serif;
}
2019-09-26 22:36:27 +00:00
body {
background-color: #818485;
2019-09-25 03:16:07 +00:00
}
#dropZone {
width: 100%;
height: 100%;
}
#currentImage {
2019-09-26 22:36:27 +00:00
width: 50%;
height: 50%;
-ms-interpolation-mode: nearest-neighbor;
image-rendering: pixelated;
2019-09-25 00:42:35 +00:00
}
2019-09-26 01:59:16 +00:00
#currentImage img {
2019-09-26 22:36:27 +00:00
object-position: center top;
width: 256;
height: 256;
min-width: 256;
min-height: 256;
-ms-interpolation-mode: nearest-neighbor;
image-rendering: pixelated;
image-rendering: -moz-crisp-edges; /* Firefox */
image-rendering: -o-crisp-edges; /* Opera */
image-rendering: -webkit-optimize-contrast; /* Webkit (non-standard naming) */
image-rendering: crisp-edges;
-ms-interpolation-mode: nearest-neighbor; /* IE (non-standard property) */
2019-09-26 01:59:16 +00:00
}