support.css 850 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. .big_con {
  2. position: fixed;
  3. top: 50%;
  4. left: 50%;
  5. transform: translate(-50%, -50%);
  6. overflow-y: auto; /* enable scrolling */
  7. width: 80%;
  8. max-width: 500px;
  9. padding: 20px;
  10. box-sizing: border-box;
  11. border: 1px solid #ccc;
  12. border-radius: 5px;
  13. background-color: #fff;
  14. box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  15. }
  16. .support-info {
  17. display: flex;
  18. flex-direction: column;
  19. justify-content: center;
  20. align-items: center;
  21. margin-top: 10px; /* Reduce the margin-top value */
  22. }
  23. .support-info h3 {
  24. text-align: center;
  25. }
  26. .support-info p {
  27. text-align: center;
  28. }
  29. .close-button {
  30. position: absolute;
  31. top: 10px;
  32. right: 10px;
  33. background-color: transparent;
  34. border: none;
  35. color: #ccc;
  36. font-size: 18px;
  37. cursor: pointer;
  38. }
  39. .close-button:hover {
  40. color: #777;
  41. }