Skip to content

Commit

Permalink
☆ nicer buttons ☆
Browse files Browse the repository at this point in the history
  • Loading branch information
starg3n authored Sep 26, 2024
1 parent 8a57d04 commit cfcff0d
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -21,28 +21,36 @@ p {
color: #FFE5B4;
text-align: center;
}

b {
font-size: 14px;
font-weight: normal;
margin-top: 5px;
color: #FFE5B4;
text-align: center;
}

a {
font-size: 14px;
font-weight: normal;
margin-top: 5px;
color: #FFE5B4;
text-align: center;
}
button {
background-color: #a59079; /* Green */

button {
background-color: #A59079;
border-radius: 12px;
border: none;
color: #FFE5B4;
padding: 15px 32px;
font-size: 14px;
text-align: center;
}

button:hover {
box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
box-shadow: 0 12px 16px 0 rgb(165, 144, 121), 0 17px 50px 0 rgb(165, 144, 121);
}

/* Applies to all elements with <... class="someclass"> specified. */
.wrong { color: red; }
.correct { color: green; }

0 comments on commit cfcff0d

Please sign in to comment.