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