Guest User

Untitled

a guest
Nov 20th, 2020
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.73 KB | None | 0 0
  1. .StripeElement {
  2. box-sizing: border-box;
  3. height: 40px;
  4. width: 225px;
  5. padding: 10px 12px;
  6. border: 1px solid transparent;
  7. border-radius: 4px;
  8. background-color: white;
  9. box-shadow: 0 1px 3px 0 #e6ebf1;
  10. -webkit-transition: box-shadow 150ms ease;
  11. transition: box-shadow 150ms ease;
  12. }
  13. .StripeElement--focus {
  14. box-shadow: 0 1px 3px 0 #cfd7df;
  15. }
  16. .StripeElement--invalid {
  17. border-color: #fa755a;
  18. }
  19. .StripeElement--webkit-autofill {
  20. background-color: #fefde5 !important;
  21. }
  22. .wrapper {
  23. height: 100vh;
  24. display: flex;
  25. /* align-items: center; */
  26. justify-content: center;
  27. background-color: #454C66;
  28. }
  29. .content {
  30. display: flex;
  31. flex-direction: column;
  32. align-items: center;
  33. width: 100%;
  34. margin-top: 5vh;
  35. }
  36. #spinner {
  37. display: none;
  38. }
  39. #cardholder-name {
  40. box-sizing: border-box;
  41. height: 40px;
  42. width: 100%;
  43. padding: 10px 12px;
  44. border: 1px solid transparent;
  45. border-radius: 4px;
  46. background-color: white;
  47. box-shadow: 0 1px 3px 0 #e6ebf1;
  48. -webkit-transition: box-shadow 150ms ease;
  49. transition: box-shadow 150ms ease;
  50. margin-bottom: 25px;
  51. }
  52. .form-row {
  53. display: flex;
  54. flex-direction: column;
  55. align-items: center;
  56. margin-bottom: 35px;
  57. width:100%;
  58. }
  59. ::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  60. color: #32325d;
  61. opacity: 0.3; /* Firefox */
  62. }
  63. :-ms-input-placeholder { /* Internet Explorer 10-11 */
  64. color:#32325d;
  65. }
  66. ::-ms-input-placeholder { /* Microsoft Edge */
  67. color: #32325d;
  68. }
  69. #save-button {
  70. border: none;
  71. color: white;
  72. font-weight: bold;
  73. border-radius: 25px;
  74. padding: 8px 20px 8px 20px;
  75. background-color: rgb(27,191, 145);
  76. margin-bottom: 10px;
  77. }
  78. #card-element {
  79. width: 100%
  80. }
  81. .hide {
  82. display: none;
  83. }
  84. .auth-wrapper {
  85. width: 200px;
  86. }
  87. .status-wrapper {
  88. display: 'flex';
  89. justify-content: center;
  90. align-items: center;
  91. }
  92. .success-wrapper {
  93. display: none;
  94. justify-content: center;
  95. align-items: center;
  96. }
  97. form {
  98. display: flex;
  99. flex-direction: column;
  100. justify-content: center;
  101. align-items: center;
  102. width: 50%;
  103. }
  104. .primary-white {
  105. color: white;
  106. }
  107. .primary-alert {
  108. color: #fa755a;
  109. }
  110. .text-sm {
  111. font-size: 12px;
  112. text-align: center;
  113. }
  114. .text-md {
  115. font-size: 24px;
  116. text-align: center;
  117. }
  118. .text-lg {
  119. font-size: 64px;
  120. text-align: center;
  121. }
  122. .bold {
  123. font-weight: bold;
  124. }
  125. .italic {
  126. font-style: italic
  127. }
  128. .mt-10 {
  129. margin-top: 10px;
  130. }
  131. iframe {
  132. width: 100%;
  133. height: 100%;
  134. }
Advertisement
Add Comment
Please, Sign In to add comment