mirror of
https://github.com/kichikuou/xsystem35-sdl2.git
synced 2026-09-27 09:23:11 +03:00
51 lines
838 B
CSS
51 lines
838 B
CSS
.contents {
|
|
-webkit-user-select: none;
|
|
max-width: 640px;
|
|
margin: 4ex auto 0;
|
|
}
|
|
|
|
#loader ul {
|
|
list-style-type: none;
|
|
}
|
|
#loader li {
|
|
color: #5764c6;
|
|
}
|
|
#loader li:before {
|
|
font-family: FontAwesome;
|
|
content: "\f15b";
|
|
padding-right: 0.5em;
|
|
}
|
|
#loader li.notready {
|
|
color: #808080;
|
|
}
|
|
#loader li.notready:after {
|
|
content: " (未選択)";
|
|
}
|
|
|
|
/* the canvas *must not* have any border or padding, or mouse coords will be wrong */
|
|
canvas.emscripten {
|
|
border: 0px none;
|
|
}
|
|
.pixelated {
|
|
image-rendering: pixelated;
|
|
image-rendering: -moz-crisp-edges;
|
|
}
|
|
|
|
#volume-control {
|
|
float: right;
|
|
margin-right: 20px;
|
|
}
|
|
|
|
#volume-control-icon {
|
|
font-size: 20px;
|
|
width: 26px;
|
|
padding: 5px;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
#volume-control-slider {
|
|
width: 60px;
|
|
height: 30px;
|
|
vertical-align: middle;
|
|
}
|