Skip to content

Commit

Permalink
make registry a button
Browse files Browse the repository at this point in the history
  • Loading branch information
BE-Code committed Nov 5, 2024
1 parent 72e8c8a commit b6242ed
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 1 deletion.
2 changes: 1 addition & 1 deletion AndrewAndHaley/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
</div>
</div>

<div>The couple is registered on Amazon</div>
<div id="registry"><a href="https://www.amazon.com/wedding/registry/1FQPLO9JNVRKG">Wedding Registry</a></div>
</div>
</body>
</html>
28 changes: 28 additions & 0 deletions AndrewAndHaley/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -75,3 +75,31 @@ h1 {
.reception + .reception {
border-left: solid 1px rgb(0, 0, 0);
}

#registry {
cursor: pointer;
outline: 0;
color: #FDF8E9;
background-color: #9b7248;
border-color: #9b7248;
display: inline-block;
font-weight: 400;
line-height: 1.5;
text-align: center;
border: 1px solid transparent;
padding: 6px 12px;
font-size: 16px;
border-radius: .25rem;
transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

#registry:hover {
color: #9b7248;
background-color: #FDF8E9;
border-color: #9b7248;
}

#registry a {
color: inherit;
text-decoration: none; /* no underline */
}

0 comments on commit b6242ed

Please sign in to comment.