1
0
Fork 0

Change a class

This commit is contained in:
Le Libre Au Quotidien 2020-05-31 18:35:17 +02:00
parent f615857d02
commit 1a5582d90f
2 changed files with 6 additions and 3 deletions

View File

@ -7,7 +7,7 @@
font-style: normal; font-style: normal;
} }
/* BUTTONS CLASS */ /* BUTTONS CLASS */
a,.button{ .button{
border:none; border:none;
background-color:#0483d8; background-color:#0483d8;
padding:20px; padding:20px;
@ -16,7 +16,7 @@ a,.button{
min-width:100px; min-width:100px;
text-align:center; text-align:center;
} }
a:hover,.button:hover{ .button:hover{
border:#0483d8 solid 1px; border:#0483d8 solid 1px;
transition:0.4s; transition:0.4s;
background-color:white; background-color:white;
@ -24,7 +24,10 @@ a:hover,.button:hover{
text-decoration: none; text-decoration: none;
text-align:center; text-align:center;
} }
.simple{
text-decoration: none;
}
.buttons::after{ .buttons::after{
content:"Aller"; content:"Aller";
} }

View File

@ -2,7 +2,7 @@
<div id="choicebox"> <div id="choicebox">
<div class="adisplay"> <div class="adisplay">
<a v-for="value in myList" :key="value" :href="value.url">{{ value.btn }} </a> <a class="button" v-for="value in myList" :key="value" :href="value.url">{{ value.btn }} </a>
</div> </div>
</div> </div>