Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.46 KB | None | 0 0
  1. #header {
  2. display: none;
  3. }
  4.  
  5. #content {
  6. background: #fff;
  7. padding: 10px;
  8. box-shadow: 0 1px 5px 0 rgba(0,0,0,0.2);
  9. overflow: hidden;
  10. box-sizing: border-box;
  11. }
  12.  
  13. #content * {
  14. box-sizing: border-box;
  15. }
  16.  
  17. #primary_ref,
  18. #amount {
  19. margin: 0;
  20. padding: 10px;
  21. /*background: #fff;*/
  22. }
  23.  
  24. #primary_ref {
  25. border-bottom: dashed 1px #ccc;
  26. }
  27.  
  28. #amount {
  29. /*margin-bottom: 10px;*/
  30. // border-bottom: solid 4px #f9f9f9;
  31. }
  32.  
  33. // #amount::after {
  34. // content: "";
  35. // display: inline-block;
  36. // position: relative;
  37. // background: 0;
  38. // width: 0;
  39. // height: 0;
  40. // border-bottom: 6px solid transparent;
  41. // border-right: 6px solid transparent;
  42. // border-top: 6px solid #fff;
  43. // border-left: 6px solid transparent;
  44. // }
  45.  
  46. /* Form Styles */
  47. .field_label {
  48. width: 140px;
  49. font-weight: 500;
  50. line-height: 40px;
  51. height: 40px;
  52. margin-bottom: 10px;
  53. }
  54.  
  55. .field_value {
  56. width: calc(100% - 150px);
  57. line-height: 40px;
  58. height: 40px;
  59. margin-bottom: 10px;
  60. }
  61.  
  62. .field_value input {
  63. padding: 10px;
  64. border: solid 1px #ccc;
  65. border-radius: 3px;
  66.  
  67. line-height: 40px;
  68. height: 40px;
  69. padding: 0 10px;
  70. }
  71.  
  72.  
  73. #primary_ref .field_label,
  74. #primary_ref .field_value,
  75. #amount .field_label,
  76. #amount .field_value {
  77. /*width: 50%;*/
  78. height: 20px;
  79. line-height: 20px;
  80. }
  81.  
  82. #amount .field_value {
  83. font-size: 14px;
  84. }
  85.  
  86. #primary_ref .field_label,
  87. #primary_ref .field_value {
  88. color: #aaa;
  89. }
  90.  
  91. #primary_ref .field_label {
  92. font-weight: 600;
  93. }
  94.  
  95.  
  96. #card_logos {
  97. border-top: none;
  98. }
  99.  
  100. #card_logos_name {
  101. width: 100%;
  102. height: 30px;
  103. margin: 0 0 10px;
  104. padding: 0;
  105. display: block;
  106. clear: both;
  107. float: none;
  108. font-size: 14px;
  109. // font-weight: 600;
  110. text-transform: uppercase;
  111. text-align: center;
  112. border-bottom: dashed 1px #ccc;
  113. }
  114.  
  115. // #card_logos_name::before,
  116. // #card_logos_name::after {
  117. // content: "";
  118. // width: calc(30% - 10px);
  119. // display: inline-block;
  120. // border-bottom: dashed 1px #ccc;
  121. // position: relative;
  122. // top: 5px;
  123. // }
  124.  
  125. // #card_logos_name::before {
  126. // float: left;
  127. // left: -5px;
  128. // }
  129.  
  130. // #card_logos_name::after {
  131. // float: right;
  132. // right: -5px;
  133. // }
  134.  
  135. .card_logo_wrap {
  136. display: inline-block;
  137. }
  138.  
  139. #card_logos_value {
  140. text-align: center;
  141. }
  142.  
  143. #card_holder::before {
  144. content: "Card Info";
  145. display: block;
  146. clear: both;
  147. margin: 10px 0 20px;
  148. padding-bottom: 10px;
  149. border-bottom: dashed 1px #ccc;
  150. text-transform: uppercase;
  151. font-size: 14px;
  152. // font-weight: 600;
  153. }
  154.  
  155. #card_number_value input {
  156. width: calc(25% - 5px);
  157. }
  158.  
  159. #card_number_value input:not(:last-child) {
  160. margin-right: 5px;
  161. }
  162.  
  163. #cvv_value input {
  164. width: 60px;
  165. }
  166.  
  167.  
  168. #buttons {
  169. border-top: none;
  170. }
  171.  
  172.  
  173. #cancel_button {
  174. width: 35%;
  175. height: 50px;
  176. line-height: 47px;
  177. margin-right: 4%;
  178. float: right;
  179. background: transparent;
  180. border: solid 1px #ccc;
  181. color: #aaa;
  182. text-align: center;
  183. border-radius: 3px;
  184. font-size: 16px;
  185. text-transform: uppercase;
  186. }
  187.  
  188. #continue_button {
  189. width: 60%;
  190. height: 50px;
  191. line-height: 47px;
  192. float: right;
  193. background: #ff7800;
  194. border: none;
  195. color: #aaa;
  196. text-align: center;
  197. border-radius: 3px;
  198. font-size: 16px;
  199. text-transform: uppercase;
  200. color: #fff;
  201. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement