-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
647530d
commit 14ab063
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
.button-blue { | ||
background: linear-gradient( #91eafa, #a1dee9, #589edb); | ||
border-radius: 0.5rem; | ||
border: 2px solid rgb(94, 89, 109); | ||
min-width: 4%; | ||
width: fit-content; | ||
height: 1rem; | ||
line-height: 1.5rem; | ||
padding: 0.2rem 1rem 0.2rem 1rem; | ||
text-align: center; | ||
text-decoration: none; | ||
color: whitesmoke; | ||
text-shadow: 0px 0px 3px black; | ||
} | ||
.button-blue:active { | ||
background: linear-gradient(#91eafa, #589edb, #467caf, #589edb, #91eafa); | ||
} |