포토샵으로 작업하지 않고도 예쁜 3D 원모양 버튼을 CSS만으로 만들 수 있습니다..
아래는 편집기에서 button태그 오류가 나서 a태그로 대치했습니다..
html:
<div class="container">
<div class="row">
<div class="col-md-12">
<button class="btn btn-default orange-circle-button" href="">버튼<br />more<br /><span class="orange-circle-greater-than">></span></button>
</div>
</div>
</div>
css:
.orange-circle-button {
box-shadow: 2px 4px 0 2px rgba(0,0,0,0.1);
border: .5em solid #E84D0E;
font-size: 1em;
line-height: 1.1em;
color: #ffffff;
background-color: #e84d0e;
margin: auto;
border-radius: 50%;
height: 7em;
width: 7em;
position: relative;
}
.orange-circle-button:hover {
color:#ffffff;
background-color: #e84d0e;
text-decoration: none;
border-color: #ff7536;
}
.orange-circle-button:visited {
color:#ffffff;
background-color: #e84d0e;
text-decoration: none;
}
.orange-circle-link-greater-than {
font-size: 1em;
}
등록된 댓글이 없습니다.