RetroArch/emscripten/webplayer.css

29 lines
420 B
CSS
Raw Normal View History

2016-08-17 03:35:25 +00:00
/**
* RetroArch Web Player
*
* This provides the basic styling for the RetroArch web player.
*/
/**
* The logging textarea.
*/
2016-08-17 03:35:25 +00:00
textarea.webplayer {
font-family: monospace;
font-size: 0.8em;
2016-08-17 03:35:25 +00:00
}
/**
* Make sure the background of the player is black.
*/
.webplayer-container {
background-color: black;
2016-08-17 03:35:25 +00:00
}
/**
* Disable the border around the player.
*/
2016-08-17 03:35:25 +00:00
canvas.webplayer {
border: none;
outline: none;
2016-08-17 03:35:25 +00:00
}