How can I prevent the line from intersecting the circle?
I want the line to be outside the circle.
The background (in this case, of the li tag) will be transparent.
#project-wrapper {
width: 100%;
/* Adjusting the position of the element on the page */
/* min-height or top margin for full use */
/* min-height:600px;
*/
margin: 420px 0 0 0;
padding: 0;
-webkit-transform-origin: center;
-ms-transform-origin: center;
-moz-transform-origin: center;
-o-transform-origin: center;
transform-origin: center;
}
... (code continues) ...
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css?ver=4.9.8" rel="stylesheet" />
<div id="project-wrapper"><span>Your Strategy</span><span>Review</span><span>Design</span><span>Delivery</span>
<nav id="orbital-menu" class=""><i class="fa fa-map"></i>
<ul class="orb-master" data-children="4"><span>MENTOR BLUEPRINT</span>
<li class="orb" name="pa"> <i class="fa fa-briefcase" aria-hidden="true"><b>Program Acceleration</b></i> </li>
<li class="orb" name="pm"> <i class="fa fa-briefcase" aria-hidden="true"><b>Portfolio Management</b></i> </li>
<li class="orb" name="ps"> <i class="fa fa-briefcase" aria-hidden="true"><b>Program Setup</b></i> </li>
<li class="orb" name="pr"> <i class="fa fa-briefcase" aria-hidden="true"><b>Program Review</b></i> </li>
</ul>
</nav>
</div>