Modification des liens

This commit is contained in:
Le Libre Au Quotidien 2019-08-12 12:16:38 +02:00
parent 1d2a44a0e8
commit 13144d5b8c
2 changed files with 22 additions and 10 deletions

View File

@ -11,7 +11,6 @@
</p> </p>
<a <a
[routerLink]="'/home'" [routerLink]="'/home'"
class="btn striked"
> >
C'est parti C'est parti
</a> </a>

View File

@ -2,15 +2,28 @@
a { a {
text-decoration: none; text-decoration: none;
font-family:$default_font;
nav & { font-weight: 600;
@extend .btn-outline, .btn; font-size:1,6rem;
display: inline-block; color:$black;
margin: 0.5em; position:relative;
padding: 0.5em; }
color: #000; a::after{
font-size: 1rem; 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 { .home_link {