It should just basically be an outline of the square or circle - that I can style accordingly (i.e. change the color to whatever I want, change the thickness of the border,
If you want your div to keep it's circular shape even if you change its width/height (using js for instance) set the radius to 50%. Example: css:
.circle { border-radius: 50%/50%; width: 50px; height: 50px; background: black; }
html: