@ -30,7 +30,7 @@
iframe.setAttribute('allowTransparency', 'yes');
iframe.setAttribute('frameborder', 'no');
iframe.setAttribute('height', '300');
iframe.setAttribute('height', '400');
iframe.setAttribute('src', 'index.html');
iframe.setAttribute('width', '250');
iframe.setAttribute('style', '
@ -1,9 +1,9 @@
body {
color: #fff;
color: #000;
font-family: Arial, sans-serif;
font-size: 14px;
margin: 0;
padding: 10px;
padding: 10px 0;
}
#overlay {
@ -21,6 +21,7 @@ body {
#apps {
position: absolute;
width: 100%;
#apps img {
@ -28,7 +29,7 @@ body {
#apps a {
display: block;
text-decoration: none;
@ -38,6 +39,10 @@ body {
#apps .app {
background: #000;
background: #fff;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
margin: 0 10px 1px 10px;
padding: 5px 10px;
@ -38,7 +38,9 @@
document.getElementById('apps').innerHTML +=
'<div class="app' + ( i == 0 ? ' first' : '' ) + '">' +
'<a href="">' +
'<strong>' +
'<img src="images/icons/' + app + '.ico" width="16" height="16"/> ' + app +
'</strong>' +
'</a>' +
'</div>'
;