You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
349 B
19 lines
349 B
.particles {
|
|
background: #fafafa;
|
|
border: 5px solid #fafafa;
|
|
border-radius: 3px;
|
|
height: 400px;
|
|
margin: 10px auto;
|
|
position: relative;
|
|
width: 90%;
|
|
}
|
|
|
|
.particle {
|
|
$side: 20px;
|
|
|
|
background: url('../res/seahorse.svg');
|
|
background-size: $side $side;
|
|
height: $side;
|
|
position: absolute;
|
|
width: $side;
|
|
}
|
|
|