Newer
Older
My-Portfolio / frontend / src / components / sections / Contact.module.css
  1. .social-button {
  2. background-color: rgba(0, 0, 0, 0.8);
  3. padding: 15px 25px;
  4. border-radius: 0.5rem;
  5. text-decoration: none;
  6. color: white;
  7. transition: transform 0.2s ease, box-shadow 0.3s ease;
  8. transition-delay: 100ms;
  9. }
  10. .social-button:hover {
  11. box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.8);
  12. }
  13. .input-field {
  14. background-color: #373737;
  15. transition: all 0.2s ease;
  16. }
  17. .input-field:hover {
  18. box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0.8);
  19. }
  20. .submit-button {
  21. background-color: black;
  22. color: white;
  23. font-weight: bold;
  24. transition: all 0.1s ease;
  25. }
  26. .submit-button:hover {
  27. box-shadow: 0 0 10px 5px rgba(255, 255, 255, 0.8);
  28. }