This commit is contained in:
Squirrel-314 2021-02-14 10:53:29 -05:00
parent cec8535561
commit 595623742e

View file

@ -663,3 +663,33 @@ Right Click Menu
border: 1px solid #ebebeb;
border-bottom: 0;
}
/*==========================================================
Links
==========================================================*/
a {
color: lightblue;
text-decoration: none;
position: relative;
}
.no-link:after {
display: none;
}
a:after {
content: "";
display: block;
height: 1.5px;
left: 50%;
position: absolute;
background: lightblue;
transition: all .5s;
width: 0;
}
a:hover:after {
width: 100%;
left: 0;
}