Skip to content

Commit

Permalink
AddL boilerplate button
Browse files Browse the repository at this point in the history
  • Loading branch information
jessicarush committed Apr 11, 2023
1 parent f48b464 commit e4de40c
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions css_template.css
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,38 @@ ul {

/* -- Buttons ------------------------------------------------------------- */

.boilerplate-btn {
display: inline-block;
border: none;
padding: 1rem 2rem;
margin: 0;
text-decoration: none;
background: #0069ed;
color: #ffffff;
font-family: sans-serif;
font-size: 1rem;
cursor: pointer;
text-align: center;
transition: background 250ms ease-in-out,
transform 150ms ease;
-webkit-appearance: none;
-moz-appearance: none;
}

.boilerplate-btn:hover,
.boilerplate-btn:focus {
background: #0053ba;
}

.boilerplate-btn:focus {
outline: 1px solid #fff;
outline-offset: -4px;
}

.boilerplate-btn:active {
transform: scale(0.99);
}

.btn {
background: none;
border-radius: 2px;
Expand Down

0 comments on commit e4de40c

Please sign in to comment.