Advertisement
marichdaking

Untitled

Nov 3rd, 2022
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.45 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>Marich Paypal</title>
  5. <meta charset="utf-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" rel="stylesheet">
  8. <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"></script>
  9. <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
  10. </head>
  11.  
  12. <style>
  13. .body {
  14. margin: 0px;
  15. padding: 0px;
  16. }
  17. .paypal-login {
  18. background-color: #fff;
  19. background-position: center;
  20. height: 100%;
  21. width: 100%;
  22. align-items: center;
  23. margin: auto;
  24. }
  25. .box1 {
  26. width: 500px;
  27. height: 600px;
  28. background-color: white;
  29. border: 1px solid rgb(164, 164, 164);
  30. border-radius: 30px;
  31. position: absolute;
  32. top: 20%;
  33. left: 35%;
  34. }
  35. .logo {
  36. width: 50px;
  37. height: 50px;
  38. position: absolute;
  39. top: 10%;
  40. left: 45%;
  41. }
  42. .signup {
  43. position: absolute;
  44. top: 50%;
  45. left: 10%;
  46. background-color: rgb(21, 21, 216);
  47. color: #fff;
  48. border-radius: 30px;
  49. border: 0px;
  50. width: 400px;
  51. height: 50px;
  52. }
  53. .signup:hover {
  54. background-color: rgb(18, 18, 122);
  55. }
  56.  
  57. .next {
  58. position: absolute;
  59. top: 70%;
  60. left: 10%;
  61. background-color: #fff;
  62. color: rgb(21, 21, 216);
  63. border-radius: 30px;
  64. border: 1px solid rgb(21, 21, 216);
  65. width: 400px;
  66. height: 50px;
  67. }
  68.  
  69. .next:hover {
  70. border: 2px solid rgb(21, 21, 216);
  71. }
  72.  
  73. .linija1 {
  74. position: absolute;
  75. top: 62%;
  76. left: 5%;
  77. width: 200px;
  78. }
  79. .linija2 {
  80. position: absolute;
  81. top: 62%;
  82. right: 5%;
  83. width: 200px;
  84. }
  85.  
  86. .or {
  87. color: rgb(164, 164, 164);
  88. position: absolute;
  89. top: 62%;
  90. right: 49%;
  91. }
  92. </style>
  93. <div class="paypal-login">
  94. <div class="box1">
  95. <img class="logo" src="logo.png">
  96.  
  97. <button class="signup">Next</button>
  98. <button class="next">Sign Up</button>
  99. <hr class="linija1">
  100. <hr class="linija2">
  101. <p1 class="or">or</p1>
  102. </div>
  103. </div>
  104.  
  105. <body>
  106.  
  107. </body>
  108. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement