HTML
xxxxxxxxxx
1
<div class="row">
2
<div class="col-12">
3
<button type="submit" class="btn btn-primary" name="formPart1" value="1">Etape suivante<i class="fas fa-angle-right ml-2"></i></button>
4
</div>
5
</div>
6
7
<button type="submit" class="test">test button</button>
CSS
xxxxxxxxxx
1
.btn {
2
box-shadow:none;
3
transition-duration: 0.3s !important;
4
}
5
6
.btn:hover {
7
box-shadow:none;
8
filter: brightness(70%);
9
transition-duration: 0.3s !important;
10
}
11
12
.test {
13
padding: 10px 40px;
14
margin: 5px;
15
background-color: #EE0000;
16
color: white;
17
border:none;
18
border-radius: 5px;
19
transition-duration: 0.3s !important;
20
}
21
.test:hover {
22
filter: brightness(70%);
23
transition-duration: 0.3s !important;
24
}
25
JS
1
1
Console errors: 0