I\'m using the following CSS code to create a box around some content/links:
.box { border-top-left-radius: 25px;
Very easy, just apply the selector :hover
.box:hover { border:5px solid #b217b4; }
JSFiddle Here for you