CSSで作るボタンを紹介します。
リンクを目立たせたい場合などに使用すると便利です。
サンプル
HTML
<a href="#" class="button-1">ボタンサンプル</a>
CSS
.button-1 {
display: block;
position: relative;
margin: 16px auto 4px;
width: 400px;
padding: 18px 38px 18px 18px;
font-size: 16px;
font-weight: bold;
background-color: #78B82A;
box-shadow: 0 4px 0 0 #609322;
border-radius: 7px;
color: #fff;
text-align: center;
cursor: pointer;
}
.button-1:active, .button-1:hover {
top: 2px;
box-shadow: 0 2px 0 0 #609322;
}
.button-1::after {
content: "";
display: block;
position: absolute;
top: 0;
bottom: 0;
right: 24px;
width: 10px;
height: 10px;
margin: auto;
border-top: 2px solid #fff;
border-right: 2px solid #fff;
transform: rotate(45deg) translateX(-25%);
}