Hello! 
I would like to make some round buttons on a website and i already found a css solution that looks like that:
li {
width: 15%;
display: inline-block;
}
.button {
width: 100%;
height: 0;
padding-bottom: 100%;
border-radius: 50%;
overflow: hidden;
&__link {
border: 1px solid red;
display: block;
width: 100%;
padding-top: 50%;
padding-bottom: 50%;
text-align: center;
color: #fff;
text-decoration: none;
line-height: 2em;
font-size: 2em;
margin-top: -1em;
background: #E9C46A;
}
}
As far as I understand i can’t really use it like this in the element css, my Question is: How do i integrate it on my website without changing all of the buttons?
