Dice Userscript
by Ronny
HTML
<div id="wrap">
<div id="container">
<div class="dice d1"></div>
<div class="dice d1"></div>
<div class="dice d1"></div>
<div class="dice d1"></div>
<div class="dice d1"></div>
<div class="dice d1"></div>
<div class="dice d1"></div>
<div class="dice d1"></div>
<div class="dice d1"></div><div class="dice d1"></div>
<div class="dice d1"></div>
</div>
CSS
body {
margin: 20px auto;
background: #eee;
}
#wrap {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: -webkit-box;
-webkit-box-pack:center;
-webkit-box-align:center;
}
#container {
text-align: center;
width: 230px;
}
.dice {background: red; width: 64px; height: 64px; display: inline-block; margin: 5px;}