Add JS/CSS documentation

This commit is contained in:
Rob Loach 2016-08-16 23:35:25 -04:00
parent 6dfb76b669
commit 361949e89a
No known key found for this signature in database
GPG Key ID: 627C60834A74A21A
2 changed files with 38 additions and 6 deletions

View File

@ -1,6 +1,33 @@
.webplayer { padding-right: 0; margin-left: auto; margin-right: auto; display: block; }
textarea.webplayer { border: 0px; font-family: 'Share Tech Mono'; font-size: 12px; width: 100%; overflow:hide; resize:none; color:black; }
div.webplayer, h1 { text-align: left; }
div.canvas_border { background-color:gray; width:800px; height:600px; margin-left: auto; margin-right: auto; }
canvas.webplayer { border: 0px none; }
/**
* RetroArch Web Player
*
* This provides the basic styling for the RetroArch web player.
*/
.webplayer {
padding-right: 0;
margin-left: auto;
margin-right: auto;
display: block;
}
textarea.webplayer {
border: 0px;
font-family: 'Share Tech Mono';
font-size: 12px;
width: 100%;
overflow:hide;
resize:none;
color:black;
}
div.webplayer,
h1 {
text-align: left;
}
div.canvas_border {
background-color:gray;
width:800px; height:600px;
margin-left: auto;
margin-right: auto;
}
canvas.webplayer {
border: 0px none;
}

View File

@ -1,3 +1,8 @@
/**
* RetroArch Web Player
*
* This provides the basic JavaScript for the RetroArch web player.
*/
var dropbox = false;
var client = new Dropbox.Client({ key: "il6e10mfd7pgf8r" });