ボタンのサンプル
ボックスのリンクボタン
グラデーションのボックスリンクボタン。
金儲け情報 何芸があれば芸能人か? ゲーム攻略動画まとめZ 宮崎県バドミントン協会
▼ 表示ソース
▼ CSS
.button001{
width:100%;
font-size: 16px;
display: inline-block;
padding: 8px 10px 8px 10px;
text-decoration: none;
color: #000;
background-image: -webkit-linear-gradient(#fff 0%, #ddd 100%);
background-image: linear-gradient(#fff 0%, #ddd 100%);
transition: .4s;
}
.button001:hover{
background-image: -webkit-linear-gradient(#eee 0%, #ccc 70%);
background-image: linear-gradient(#eee 0%, #ccc 70%);
}
ボックスのリンクボタン2
シンプルなボックスリンクボタン。
金儲け情報 何芸があれば芸能人か? ゲーム攻略動画まとめZ 宮崎県バドミントン協会▼ 表示ソース
▼ CSS
.button002{
width:100%;
font-size: 16px;
display: inline-block;
padding: 8px 10px;
text-decoration: none;
border-bottom: 1px solid #ccc;
}
.button002 a{
text-decoration: none;
}
リストのリンクボタン
スッキリしたリストのリンクボタン。
▼ 表示ソース
▼ CSS
.ulb {
width: 100%;
}
.ulb ul {
font-size: 16px;
margin: 0px;
padding: 0px;
}
.ulb li {
line-height:18px;
border-bottom: 1px solid #ccc;
list-style-position:outside;
list-style-type : none;
padding: 5px 15px;
}
.ulb a {
text-decoration: none;
font-size: 16px;
}