42 lines
923 B
CSS
42 lines
923 B
CSS
.block {
|
|
-webkit-appearance: button;
|
|
-moz-appearance: button;
|
|
appearance: button;
|
|
|
|
display: block;
|
|
cursor: pointer;
|
|
text-align: center;
|
|
}
|
|
|
|
img#ui {
|
|
width:100%;
|
|
}
|
|
|
|
.full {
|
|
position: absolute;
|
|
top:0;
|
|
left:0;
|
|
width:100%;
|
|
}
|
|
|
|
.pixelated {
|
|
image-rendering:optimizeSpeed; /* Legal fallback */
|
|
image-rendering:-moz-crisp-edges; /* Firefox */
|
|
image-rendering:-o-crisp-edges; /* Opera */
|
|
image-rendering:-webkit-optimize-contrast; /* Safari */
|
|
image-rendering:optimize-contrast; /* CSS3 Proposed */
|
|
image-rendering:crisp-edges; /* CSS4 Proposed */
|
|
image-rendering:pixelated; /* CSS4 Proposed */
|
|
-ms-interpolation-mode:nearest-neighbor; /* IE8+ */
|
|
}
|
|
|
|
form.action {
|
|
display:inline;
|
|
}
|
|
|
|
div.status {
|
|
position: absolute;
|
|
top:0;
|
|
left:0;
|
|
width:100%;
|
|
} |