-
-
Notifications
You must be signed in to change notification settings - Fork 20
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
Benny Powers
committed
Jan 17, 2018
1 parent
858cf0a
commit cc318bf
Showing
2 changed files
with
35 additions
and
35 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,32 @@ | ||
<link rel="import" href="../polymer/lib/elements/custom-style.html"> | ||
|
||
<custom-style> | ||
<style id="stripe-styles" is="custom-style"> | ||
.StripeElement { | ||
background-color: white; | ||
padding: 8px 12px; | ||
border-radius: 4px; | ||
border: 1px solid transparent; | ||
box-shadow: 0 1px 3px 0 #e6ebf1; | ||
-webkit-transition: box-shadow 150ms ease; | ||
transition: box-shadow 150ms ease; | ||
min-width: var(--stripe-elements-width, 300px); | ||
@apply --stripe-elements-element; | ||
} | ||
|
||
.StripeElement--focus { | ||
box-shadow: 0 1px 3px 0 #cfd7df; | ||
@apply --stripe-elements-element-focus; | ||
} | ||
|
||
.StripeElement--invalid { | ||
border-color: #fa755a; | ||
@apply --stripe-elements-element-invalid; | ||
} | ||
|
||
.StripeElement--webkit-autofill { | ||
background-color: #fefde5 !important; | ||
@apply --stripe-elements-element-webkit-autofill; | ||
} | ||
</style> | ||
</custom-style> |
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