Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.16 KB | None | 0 0
  1. <div class="row" >
  2. <div class="row-equal-height" >
  3. <div class="p_column text-center">
  4. <div class="border-4 border-gray-400 rounded-full w-16 h-16 flex justify-center items-center text-2xl font-bold">
  5. 1
  6. </div>
  7. <h4>
  8. Dial Short-code.
  9. </h4><br/>
  10. <p>
  11. Dial *389*0# on your mobile phone
  12. </p>
  13. </div>
  14. <div class=" p_column text-center ">
  15. <div class="border-4 border-gray-400 rounded-full w-16 h-16 flex justify-center items-center text-2xl font-bold">
  16. 2
  17. </div>
  18. <h4>
  19. Enter MOMO Card Number.
  20. </h4><br/>
  21. <p>
  22. Enter the 16 digits number on the card
  23. </p>
  24. </div>
  25. <div class=" p_column text-center ">
  26. <div class="border-4 border-gray-400 rounded-full w-16 h-16 flex justify-center items-center text-2xl font-bold">
  27. 3
  28. </div>
  29. <h4>
  30. Enter Personal Information.
  31. </h4><br/>
  32. <p>
  33. Enter your first name..
  34. </p>
  35. </div>
  36. <div class=" p_column text-center ">
  37. <div class="border-4 border-gray-400 rounded-full w-16 h-16 flex justify-center items-center text-2xl font-bold">
  38. 4
  39. </div>
  40. <h4>
  41. Key in Security Pin.
  42. </h4><br/>
  43. <p>
  44. Key in your preferred four-digit PIN and confirm the same PIN.
  45. </p>
  46. </div>
  47. <div class=" p_column text-center ">
  48. <div class="border-4 border-gray-400 rounded-full w-16 h-16 flex justify-center items-center text-2xl font-bold">
  49. 5
  50. </div>
  51. <h4>
  52. SMS Confirmation.
  53. </h4><br/>
  54. <p>
  55. An SMS message is received indicating card will be active within 48hrs.
  56. </p>
  57. </div>
  58. </div>
  59. </div>
  60.  
  61. .row-equal-height {
  62. display: -webkit-box;
  63. display: -webkit-flex;
  64. display: -ms-flexbox;
  65. display: flex;
  66. }
  67. .p_column {
  68. background: #fff;
  69. color: #000;
  70. font-size: 22px;
  71. font-weight: 500;
  72. margin: 5px 15px 0;
  73. padding: 30px 15px;
  74. border: solid 1px #d4d4d4;
  75. box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.08);
  76. border-radius: 2px;
  77. position: relative;
  78. -webkit-transition: 0.4s;
  79. -o-transition: 0.4s;
  80. transition: 0.4s;
  81. width: 100%;
  82. }
  83. .p_column:first-child {
  84. background: #c81f56;
  85. color: #fff;
  86. border: solid 1px #c81f56;
  87. }
  88. /*Code for arrow*/
  89.  
  90. .p_column:before,
  91. .p_column:after {
  92. content: "";
  93. position: absolute;
  94. width: 0;
  95. height: 0;
  96. top: 42%;
  97. bottom: 86px;
  98. border-style: solid;
  99. border-top-color: transparent;
  100. border-right-color: transparent;
  101. border-bottom-color: transparent;
  102. -webkit-transition: 0.4s;
  103. -o-transition: 0.4s;
  104. transition: 0.4s;
  105. }
  106. /* Stroke */
  107.  
  108. .p_column:before {
  109. right: -30px;
  110. border-left-color: #d4d4d4;
  111. border-width: 15px;
  112. }
  113. /* Fill */
  114.  
  115. .p_column:after {
  116. right: -29px;
  117. border-left-color: #fff;
  118. border-width: 15px;
  119. }
  120. .p_column p {
  121. font-size: 16px;
  122. line-height: 24px;
  123. margin-bottom: 0
  124. }
  125. .p_column:first-child:before {
  126. border-left-color: #c81f56;
  127. }
  128. .p_column:first-child:after {
  129. border-left-color: #c81f56;
  130. }
  131. .p_column:last-child:before,
  132. .p_column:last-child:after {
  133. display: none
  134. }
  135. /*color change hover*/
  136.  
  137. .p_column:hover {
  138. background: #b0b9c1;
  139. color: #fff;
  140. border: solid 1px #b0b9c1;
  141. }
  142. .p_column:hover:before {
  143. border-left-color: #b0b9c1;
  144. }
  145. .p_column:hover:after {
  146. border-left-color: #b0b9c1;
  147. }
  148. @media screen and (max-width: 424px) {
  149. .steps-responsive: max-width: 100% !important;
  150. }
  151.  
  152. @media screen and (min-width: 425px) and (max-width: 768px){
  153.   .steps-responsive: max-width: 50% !important;
  154. }
  155.  
  156. @media screen and (min-width: 1024px){
  157. .steps-responsive: max-width: 16.66% !important;
  158. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement