Subversion Repositories LCARS

Compare Revisions

Last modification

Regard whitespace Rev 163 → Rev 172

/trunk/media/video/series/style.css
1635,9 → 1635,13
* Decreasing probability of pixels near bottom through exponential distribution;
* TODO: If coord > 50%, decrease probability of appearance.
*/
$y = mt_rand(1, $lambda * exp(-$lambda * mt_rand(0, 5)) * 99);
$max = $lambda * exp(-$lambda * mt_rand(0, 5)) * 99;
if (1 <= $max)
{
$y = mt_rand(1, $max);
$coords[] = array('x' => $x, 'y' => $y);
}
}
$dots = array_map(function ($coord) {
return "-webkit-radial-gradient({$coord['x']}% {$coord['y']}%, 1px 1px, rgba(255, 255, 255, 0.75), rgba(0, 0, 30, 0))";
1857,6 → 1861,35
font-size: 90%;
}
.space-above-beyond {
display: inline-block;
background-color: black;
color: white;
padding: 0.25em 0.5em;
text-transform: uppercase;
}
 
.space-above-beyond .space {
display: block;
letter-spacing: 0.5em;
text-align: justify;
}
 
.space-above-beyond .space span {
letter-spacing: normal;
}
 
.space-above-beyond .above-beyond {
display: block;
font-size: 50%;
word-spacing: 0.5em;
text-align: justify;
}
 
.space-above-beyond .above-beyond span {
word-spacing: normal;
}
 
@font-face {
font-family: "Stargate";
src: local("Stargate"), url(/styles/fonts/STARGATE.TTF);