Guest User

Untitled

a guest
Aug 25th, 2016
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.07 KB | None | 0 0
  1. * {
  2. box-sizing : border-box;
  3. }
  4. body{
  5. margin: 0;
  6. padding: 0;
  7.  
  8. }
  9.  
  10.  
  11. .credit-card {
  12. width : 40%;
  13. /* min-height : 100px; */
  14. margin : 60px auto 0;
  15. border : 1px solid #ddd;
  16. background-color : #004062;
  17. border-radius: 15px;
  18. padding: 1em 2em;
  19. box-shadow: 15px 15px 5px;
  20. position: relative;
  21. }
  22. /* Diverse Divs */
  23. .form-body {
  24. min-height : 340px;
  25. position: relative;
  26. /* padding-bottom: 30px; */
  27. }
  28. .form-header{
  29. min-height: 100px;
  30. position: relative;
  31. text-align: center;
  32. }
  33.  
  34.  
  35. .date-field{
  36. position: relative;
  37. text-align: center;
  38. }
  39.  
  40.  
  41. /**/
  42.  
  43. .title
  44. {
  45. font-size: 1.875em;
  46. font-family: 'roboto',sans-serif;
  47. float: left;
  48. color: white;
  49.  
  50. }
  51.  
  52. .cardlogos-header {
  53.  
  54. position: relative;
  55. display:inline-block;
  56. width: 100%;
  57. height: 100%;
  58. }
  59.  
  60. /* common */
  61. input,select{
  62. opacity: .7;
  63. background-color : #004062;
  64. color: white;
  65. font-size: 0.875em;
  66. padding: 5px;
  67. }
  68. .cvv-details, .ExpDate{
  69. color: white;
  70. font-size: 0.875em;
  71. font-family: 'roboto',sans-serif;
  72. }
  73.  
  74. .month, .year{
  75. display: inline-block;
  76. }
  77.  
  78. .card-holder{float: left;clear:both;position: relative;width: 100%;margin-top: 10px;margin-bottom: 10px;}
  79.  
  80. /* cvv */
  81. .cvv-input{
  82. /* margin-top: 10px; */
  83. text-align: center;
  84. /* clear: both; */
  85. }
  86.  
  87.  
  88. .proceed-btn{
  89. /* float: right; */
  90. font-family: 'roboto',sans-serif;
  91. background-color: #989898;
  92. border: 1px solid white;
  93. height: 30px;
  94. /* clear: both; */
  95. }
  96.  
  97. .yourpaylogo{
  98. max-height: 60px;
  99. float: right;
  100. }
  101.  
  102. .Chip{
  103. max-width: 10%;
  104. position: relative;
  105. float: left;
  106. margin-top: 10px;
  107. /* clear: both; */
  108. }
  109.  
  110. .card-number{
  111. width: 100%;
  112. position: relative;
  113. margin-top: 10px;
  114. margin-bottom: 10px;
  115. }
  116.  
  117. .proceed-btn a {
  118. text-decoration : none;
  119. cursor : pointer;
  120. color : black;
  121.  
  122. }
  123.  
  124.  
  125. @media screen and (max-width: 480px) {
  126. .credit-card {
  127. width: 100% !important;
  128. }
  129. }
Add Comment
Please, Sign In to add comment