style.css 490 B

1234567891011121314151617181920212223242526
  1. input[type="date"] {
  2. background: transparent;
  3. border-top: none;
  4. border-left: none;
  5. border-right: none;
  6. border-bottom: 2px solid #666;
  7. color: #efefef;
  8. text-align: center;
  9. }
  10. .loading-overlay {
  11. position: absolute;
  12. top: 0;
  13. left: 0;
  14. width: 100vw;
  15. height: 100vh;
  16. background-color: rgba(50, 50, 50, 0.5);
  17. display: flex;
  18. align-items: center;
  19. justify-content: center;
  20. }
  21. .loading-container {
  22. text-align: center;
  23. color: #aaa;
  24. }