Interactive Dots

1 min read Original article ↗
              
                body,canvas{
  background: -moz-radial-gradient(center, ellipse cover, rgba(255, 153, 153, 1) 0%, rgba(255, 100, 100, 1) 100%);
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255, 153, 153, 1)), color-stop(100%,rgba(255, 100, 100, 1)));
background: -webkit-radial-gradient(center, ellipse cover, rgba(255, 153, 153, 1) 0%,rgba(255, 100, 100, 1) 100%);
background: -o-radial-gradient(center, ellipse cover, rgba(255, 153, 153, 1) 0%,rgba(255, 100, 100, 1) 100%);
background: -ms-radial-gradient(center, ellipse cover, rgba(255, 153, 153, 1) 0%,rgba(255, 100, 100, 1) 100%);
background: radial-gradient(ellipse at center, rgba(255, 153, 153, 1) 0%,rgba(255, 100, 100, 1) 100%);
  overflow-y:hidden;
  overflow-x:hidden;
  width:100%;
  margin:0;
}

#desc{
font-size:85%;
font-family:tahoma;
color:#222;
width:250px;
float:left;
position:absolute;
margin:5px;
background-color:rgba(255, 255, 255, 0.5);

}
              
            

!