天宮です。
今回はVaster2で記事下部に表示している
SNSシェアボタンの変更をしていきます。
まずは現状の表示を確認してみましょう。
ボタンが大きいのが気になるのと
最近の傾向でいうとLINEもあった方が良いような気がします。
SNSシェアボタンのサイズ変更
.sns ul {
list-style:none !important;
padding: initial !important;
}
.sns li {
float:left;
width:30%;
height:54px;
margin:20px 3px;
list-style:none !important;
}
.sns li span,.sns .fa{
font-size:30px !important;
}
.sns li a {
font-size:18px;
position:relative;
display:block;
padding:8px;
transition:0.3s;
font-weight: 700;
border-radius:6px;
text-align:center;
text-decoration: none;
}
.sns ul{
list-style: none !important;
padding: initial !important;
}
.sns li{
float: left;
width:13%;
height:42px;
margin: 20px 3px;
list-style: none !important;
}
.sns li span,.sns .fa{
font-size: 20px !important;
}
.sns li a{
font-size: 13px;
position: relative;
display: block;
padding: 8px;
transition: 0.3s;
font-weight: 700;
border-radius: 6px;
text-align: center;
text-decoration: none;
}
うーん、なんか気になるボタンが…
はてブのフォントを変更
.hatebu a:hover{
background-color: #5d8ac1;
color: #fff;
}
.fa-hatena:before {
content: "B!";
font-family: Verdana;
font-weight: bold;
}
/* feedly */
<li class='hatebu'><a expr:href='"http://b.hatena.ne.jp/add?mode=confirm&url=" + data:post.canonicalUrl + "&" + data:post.title + "|" + data:blog.title' onclick='javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=300,width=600');return false;' target='_blank'><i class="fa fa-hatena"></i><br/>はてブ</a></li>
LINEボタンを追加
.pocket a:hover{
background-color: #f03e51;
color: #fff;
}
/* LINE */
.line a{
background:#fff;
color:#00c300;
border:2px solid #00c300;
}
.line a:hover{
background:#00c300;
color:#fff;
}
.clearfix:after{
content: "";
display: block;
clear: both;
}
/* シェアボタン見出し */
<li class='feedly'>
<a href='http://cloud.feedly.com/#subscription%2Ffeed%2FブログのURL' target='blank'><i class='fa fa-rss'/><br/>Feedly</a>
</li>
<li class='line'><a expr:href='"http://line.me/R/msg/text/?" +data:post.title + "|"+ data:post.canonicalUrl' onclick='javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=500,width=600');return false;' target='_blank'><i class='fa fa-comment-o'/><br/>LINE</a></li>
入力するのを忘れないようにしてください。
レスポンシブ スマホ表示の調整
@media only screen and (max-width: 780px) {
.sns li{
width:47%;
}
}
/* 記事ページのリンク
----------------------------------------------- */
3個づつ並ぶようになりました。
幅の%値については、
実際にスマホで確認してみて調整してください。