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

32 lines
451 B
SCSS
Raw Normal View History

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