Challenge 3.f done

This commit is contained in:
David E. Perez Negron R. 2024-05-04 20:21:06 -06:00
parent 062a42ac2f
commit c414d057d6
1 changed files with 23 additions and 0 deletions

View File

@ -1,6 +1,11 @@
<style>
a {
color: rgb(0, 113, 113);
transition: color 0.15s;
}
a:hover {
color: rgb(204, 51, 0);
}
.product {
@ -20,6 +25,15 @@
height: 32px;
width: 105px;
border-radius: 16px;
transition: background-color 0.15s
}
.add-2-cart:hover {
background-color: rgb(245, 206, 10)
}
.add-2-cart:active {
opacity: 0.8
}
.buy-now {
@ -28,6 +42,15 @@
height: 32px;
width: 105px;
border-radius: 16px;
transition: background-color 0.15s;
}
.buy-now:hover {
background-color: rgb(245, 154, 18);
}
.buy-now:active {
opacity: 0.8;
}
</style>
<a href="https://amazon.com/"> Back to Amazon </a>