Compare commits
No commits in common. "66632f5027a921e8eae048c510208b839d5d13af" and "0fd6021c5d945f4daaf4269c8e5cdef75d250c85" have entirely different histories.
66632f5027
...
0fd6021c5d
38
buttons.html
38
buttons.html
|
@ -1,17 +1,14 @@
|
|||
<style>
|
||||
.subscribe-button {
|
||||
background-color: rgb(204, 0, 0);
|
||||
background-color: rgb(200, 0, 0);
|
||||
color: white;
|
||||
border: none;
|
||||
height: 36px;
|
||||
width: 105px;
|
||||
border-radius: 2px;
|
||||
padding-top: 10px;
|
||||
padding-bottom: 10px;
|
||||
padding-left: 16px;
|
||||
padding-right: 16px;
|
||||
cursor: pointer;
|
||||
margin-right: 12px;
|
||||
margin-right: 8px;
|
||||
transition: opacity 0.15s;
|
||||
vertical-align: top;
|
||||
}
|
||||
|
||||
.subscribe-button:hover {
|
||||
|
@ -24,15 +21,12 @@
|
|||
|
||||
.join-button {
|
||||
background-color: rgb(255, 255, 255);
|
||||
color: rgb(6, 95, 212);
|
||||
border-color: rgb(6, 95, 212);
|
||||
color: rgb(41, 118, 211);
|
||||
border-color: rgb(41, 118, 211);
|
||||
border-style: solid;
|
||||
border-width: 1px;
|
||||
padding-top: 9px;
|
||||
padding-bottom: 9px;
|
||||
padding-left: 16px;
|
||||
padding-right: 16px;
|
||||
vertical-align: top;
|
||||
height: 36px;
|
||||
width: 62px;
|
||||
border-radius: 2px;
|
||||
cursor: pointer;
|
||||
transition: background-color 0.15s,
|
||||
|
@ -40,7 +34,7 @@
|
|||
}
|
||||
|
||||
.join-button:hover {
|
||||
background-color: rgb(6, 95, 212);
|
||||
background-color: rgb(41, 118, 211);
|
||||
color: rgb(255, 255, 255);
|
||||
}
|
||||
|
||||
|
@ -49,18 +43,16 @@
|
|||
}
|
||||
|
||||
.tweet-button {
|
||||
background-color: rgb(29, 155, 240);
|
||||
background-color: rgb(2, 158, 255);
|
||||
color: white;
|
||||
border: none;
|
||||
padding-top: 7px;
|
||||
padding-bottom: 7px;
|
||||
padding-left: 16px;
|
||||
padding-right: 16px;
|
||||
border-radius: 16px;
|
||||
height: 36px;
|
||||
width: 70px;
|
||||
border-radius: 18px;
|
||||
font-weight: bold;
|
||||
font-size: 15px;
|
||||
cursor: pointer;
|
||||
margin-left: 12px;
|
||||
margin-left: 8px;
|
||||
transition: box-shadow 0.15s;
|
||||
}
|
||||
|
||||
|
@ -77,5 +69,5 @@
|
|||
JOIN
|
||||
</button>
|
||||
<button class="tweet-button">
|
||||
Tweet
|
||||
TWEET
|
||||
</button>
|
||||
|
|
|
@ -1,11 +1,6 @@
|
|||
<style>
|
||||
a {
|
||||
color: rgb(0, 113, 113);
|
||||
transition: color 0.15s;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color: rgb(204, 51, 0);
|
||||
}
|
||||
|
||||
.product {
|
||||
|
@ -24,16 +19,7 @@
|
|||
border: none;
|
||||
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
|
||||
border-radius: 40px;
|
||||
}
|
||||
|
||||
.buy-now {
|
||||
|
@ -41,16 +27,7 @@
|
|||
border: none;
|
||||
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;
|
||||
border-radius: 40px;
|
||||
}
|
||||
</style>
|
||||
<a href="https://amazon.com/"> Back to Amazon </a>
|
||||
|
|
Loading…
Reference in New Issue