main.css 768 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. body {
  2. font-size: medium;
  3. font-family: Verdana;
  4. margin: 10px;
  5. padding: 10px;
  6. }
  7. div {
  8. color: rgb(6, 58, 55);
  9. background-color: white;
  10. width: 400px;
  11. }
  12. input {
  13. border: 2px solid rgb(9, 52, 71);
  14. border-radius: 4px;
  15. height: 50px;
  16. width: 300px;
  17. font-size: medium;
  18. font-family: Verdana;
  19. }
  20. input[type=text]:focus {
  21. background-color: rgb(220, 235, 240);
  22. }
  23. button {
  24. border-radius: 12px;
  25. cursor: pointer;
  26. border-radius: 5px;
  27. text-align: center;
  28. background-color: #e7e7e7;
  29. color: black;
  30. /* Gray */
  31. height: 50px;
  32. width: 100px;
  33. font-size: 20px;
  34. font-family: Verdana;
  35. }
  36. button:hover {
  37. box-shadow: 0 12px 16px 0 rgba(124, 108, 108, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
  38. }