Без опису
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <html>
  2. <head>
  3. <meta charset="UTF-8">
  4. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. @import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200;0,400;0,500;1,200;1,400;1,500;1,600&display=swap');
  9. *,*::after,*::before{
  10. padding: 0;
  11. margin: 0;
  12. box-sizing: border-box;
  13. }
  14. body{
  15. overflow-x: hidden;
  16. font-family: 'Source Code Pro', monospace;
  17. }
  18. .container_scan{
  19. background-color: #7ee8fa;
  20. background-image: linear-gradient(315deg, #7ee8fa 0%, #80ff72 74%);
  21. width: 100vw;
  22. min-height: 100vh;
  23. display: flex;
  24. flex-direction: column;
  25. justify-content: center;
  26. align-items: center;
  27. overflow: hidden;
  28. overflow-y: auto;
  29. }
  30. .headingCard{
  31. padding: 15px 0;
  32. }
  33. .card{
  34. background-color: #fff;
  35. width: 400px;
  36. height: 500px;
  37. border-radius: 25px;
  38. border: 5px dashed #B8F1B0 ;
  39. }
  40. .file {
  41. opacity: 0;
  42. width: 0.1px;
  43. height: 0.1px;
  44. position: absolute;
  45. }
  46. .file-input label {
  47. display: block;
  48. position: relative;
  49. width: 200px;
  50. height: 50px;
  51. border-radius: 25px;
  52. background: linear-gradient(40deg, #ff6ec4, #7873f5);
  53. box-shadow: 0 4px 7px rgba(0, 0, 0, 0.4);
  54. display: flex;
  55. align-items: center;
  56. justify-content: center;
  57. color: #fff;
  58. font-weight: bold;
  59. cursor: pointer;
  60. transition: transform .2s ease-out;
  61. }
  62. .btn{
  63. padding: 10px 50px;
  64. border-radius: 25px;
  65. width: 250px;
  66. height: 50px;
  67. border: none;
  68. background: linear-gradient(40deg, #f56effa6, #7873f5);
  69. color: #fff;
  70. cursor: pointer;
  71. box-shadow: 0 4px 7px rgba(0, 0, 0, 0.4);
  72. transition: all .2s ease;
  73. }
  74. .btn:hover{
  75. transform: translateY(5px);
  76. background: linear-gradient(40deg, #f56eff63, #73a3f5);
  77. }
  78. h1 {
  79. font-size: 40px;
  80. }
  81. .formSubmit{
  82. height: 100%;
  83. display: flex;
  84. flex-direction: column;
  85. align-items: center;
  86. justify-content: center;
  87. gap: 30px;
  88. }
  89. .button {
  90. background: linear-gradient(40deg, #f56effa6, #7873f5); /* Green */
  91. border: none;
  92. color: white;
  93. padding: 15px 32px;
  94. text-align: center;
  95. text-decoration: none;
  96. display: inline-block;
  97. margin: 4px 2px;
  98. cursor: pointer;
  99. }
  100. .button1 {font-size: 10px;}
  101. .button2 {font-size: 12px;border-radius: 12px;}
  102. .button3 {font-size: 16px;}
  103. .button4 {font-size: 50px;}
  104. .button5 {font-size: 24px;border-radius: 12px;}
  105. </style>
  106. </head>
  107. <body>
  108. <div class="container_scan">
  109. <h1 class="headingCard">Visiting Card Parser</h1>
  110. <div class="card">
  111. <form class="formSubmit" action="/submit" method="POST" enctype="multipart/form-data">
  112. <div class="form-group">
  113. <div class="custom-file">
  114. <div class="file-input">
  115. <input type="file" id="image" name="image" class="button button2">
  116. </div>
  117. </div>
  118. </div>
  119. <input type="submit" class="btn btn-submit">
  120. </form>
  121. </body>
  122. </html>