CSS
0
Вклад в тег
random(min, max)
return floor( math(0, "random") * max + min )
// n is number of stars required
multiple-box-shadow($n)
$coordinates = random(1, 2000)px
$distortion = random(1, 20)px
$value = $coordinates $coordinates $distortion $distortion #FFFFFF
for $i in (2..$n)
$coordinates = random(1, 2000)px
$distortion = random(1, 20)px
$value = $value, $coordinates $coordinates $distortion $distortion #FFFFFF
return $value
html, body
height: 100%
.main
display: flex
flex-direction: column
height: 100%
.body
flex-grow: 1
.header
height: 50px
.footer
height: 100px