You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
789 B

  1. .search-container {
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. justify-content: center;
  6. padding: 20px;
  7. font-family: Arial, sans-serif;
  8. }
  9. .video-container {
  10. margin-bottom: 20px;
  11. }
  12. .video {
  13. width: 100%;
  14. max-width: 500px;
  15. border-radius: 8px;
  16. box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  17. }
  18. .capture-button {
  19. padding: 12px 20px;
  20. font-size: 16px;
  21. color: #fff;
  22. background-color: #007bff;
  23. border: none;
  24. border-radius: 4px;
  25. cursor: pointer;
  26. transition: background-color 0.3s;
  27. }
  28. .capture-button:hover {
  29. background-color: #0056b3;
  30. }
  31. .image-preview {
  32. margin-top: 20px;
  33. text-align: center;
  34. }
  35. .captured-image {
  36. max-width: 100%;
  37. border-radius: 8px;
  38. box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  39. }
  40. .upload-container{
  41. margin-top: 12px;
  42. }