box shadow vss code example
Example 1: box shadow
box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
// copy this
Example 2: box shadow
/* offset-x, offset-y, (blur-radius and/or spread-radius=optional) and color */
selector {
box-shadow: offset-x offset-y (blur-radius and/or spread-radius=optional) color;
}
/* Example */
.test-shadow {
box-shadow: 4px 4px 20px 0px #0000003d;
}