破線で下線なリンクデザイン
https://gyazo.com/b9f4bd2dbb7a65babba2771745b38ea6
リンクに色がついていると、読むときに若干引っかかる気がする code:style.css
.line a.empty-page-link,.line a.page-link,.line a.link{
color: black;
position:relative;
height:1px;
}
.line a.link{text-decoration:none;}
.line a.page-link.empty-page-link::before{
content:"";
position:absolute;
width:calc(100% - 5px);
background-image :linear-gradient(to right,#888, #888 1px, transparent 1px, transparent 4px); background-size: 4px 1px;
background-position: left bottom;
background-repeat: repeat-x;
top:0;
left:50%;
right:0;
bottom:-1px;
transform: translateX(-50%);
transition: all 0.4s 0s cubic-bezier(.165,.84,.44,1);
pointer-events: none; /* これがないと一発でクリック出来ない */
}
content:"";
position:absolute;
width:calc(100% - 5px);
background-image : linear-gradient(to right,#000, #000 2px, transparent 2px, transparent 5px); background-size: 5px 1px;
background-position: left bottom;
background-repeat: repeat-x;
top:0;
left:50%;
right:0;
bottom:-1px;
transform: translateX(-50%);
}
.line a.page-link::before,.line a.link::before{
content:"";
position:absolute;
width:calc(100% - 5px);
background-image : linear-gradient(to right, #888, #888 4px, transparent 4px, transparent 6px); background-size: 6px 1px;
background-position: left bottom;
background-repeat: repeat-x;
top:0;
left:50%;
right:0;
bottom:-1px;
transform: translateX(-50%);
transition: all 0.4s 0s cubic-bezier(.165,.84,.44,1);
pointer-events: none;
}
content:"";
position:absolute;
width:calc(100% - 5px);
background-image : linear-gradient(to right, #000, #000 5px, transparent 5px, transparent 9px); background-size: 9px 1px;
background-position: left bottom;
background-repeat: repeat-x;
top:0;
left:50%;
right:0;
bottom:-1px;
transform: translateX(-50%);
}
code:style.css
color:#000;
text-decoration:none;
position:relative;
}
content:"";
position:absolute;
width:calc(100% - 5px);
background-image : linear-gradient(to right, #888, #888 4px, transparent 4px, transparent 6px); background-size: 6px 1px;
background-position: left bottom;
background-repeat: repeat-x;
top:0;
left:50%;
right:0;
bottom:-1px;
transform: translateX(-50%);
transition: all 0.4s 0s cubic-bezier(.165,.84,.44,1);
pointer-events: none; /* これがないと一発でクリック出来ない */
}
content:"";
position:absolute;
width:calc(100% - 5px);
background-image : linear-gradient(to right, #000, #000 5px, transparent 5px, transparent 9px); background-size: 9px 1px;
background-position: left bottom;
background-repeat: repeat-x;
top:0;
left:50%;
right:0;
bottom:-1px;
transform: translateX(-50%);
}
font-family: 'Font Awesome 5 Free', 'Font Awesome 5 Brands';
font-weight: 900;
font-size: 0.8rem;
content: ' \f35d';
display: inline-block;
color:#888;
}