mirror of
https://github.com/CTCaer/RetroArch.git
synced 2024-12-26 20:54:47 +00:00
29 lines
420 B
CSS
29 lines
420 B
CSS
/**
|
|
* RetroArch Web Player
|
|
*
|
|
* This provides the basic styling for the RetroArch web player.
|
|
*/
|
|
|
|
/**
|
|
* The logging textarea.
|
|
*/
|
|
textarea.webplayer {
|
|
font-family: monospace;
|
|
font-size: 0.8em;
|
|
}
|
|
|
|
/**
|
|
* Make sure the background of the player is black.
|
|
*/
|
|
.webplayer-container {
|
|
background-color: black;
|
|
}
|
|
|
|
/**
|
|
* Disable the border around the player.
|
|
*/
|
|
canvas.webplayer {
|
|
border: none;
|
|
outline: none;
|
|
}
|