-
Notifications
You must be signed in to change notification settings - Fork 7
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
dd56136
commit 762bb51
Showing
4 changed files
with
92 additions
and
2 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
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,35 @@ | ||
.btn | ||
display inline-block | ||
font-weight 400 | ||
line-height 1.25 | ||
text-align center | ||
white-space nowrap | ||
vertical-align middle | ||
-webkit-user-select none | ||
-moz-user-select none | ||
-ms-user-select none | ||
user-select none | ||
border 1px solid transparent | ||
padding .5rem 1rem | ||
font-size 1rem | ||
border-radius .25rem | ||
-webkit-transition all .2s ease-in-out | ||
-o-transition all .2s ease-in-out | ||
transition all .2s ease-in-out | ||
cursor pointer | ||
|
||
&.destructive | ||
color white | ||
box-shadow 0 3px 6px -1px rgba(0, 0, 0, 0.12), 0 10px 36px -4px rgba(77, 96, 232, 0.3) | ||
background -webkit-linear-gradient(315deg,#cb3733, #e65b57) | ||
background linear-gradient(135deg,#cb3733, #e65b57) | ||
letter-spacing 0.5px | ||
border none | ||
|
||
&.primary | ||
color white | ||
box-shadow 0 3px 6px -1px rgba(0, 0, 0, 0.12), 0 10px 36px -4px rgba(77, 96, 232, 0.3) | ||
background -webkit-linear-gradient(315deg,#2c3e50, #56636f) | ||
background linear-gradient(135deg,#2c3e50, #56636f) | ||
letter-spacing 0.5px | ||
border none |
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
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