funky-framadate-front/src/assets/scss/atoms/_links.scss

32 lines
422 B
SCSS
Raw Normal View History

@charset "UTF-8";
a {
text-decoration: none;
2019-08-12 12:16:38 +02:00
font-family:$default_font;
font-weight: 600;
font-size:1,6rem;
color:$black;
position:relative;
}
a::after{
content:">";
}
a::before{
background-color:$primary_color;
width:100%;
display:block;
position:absolute;
height:6px;
content:"";
margin:auto;
top:0;
bottom:0;
right:0;
left:0;
z-index: -1;
}
.home_link {
text-decoration: none;
}