style.css 703 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. .table{
  2. font-family: Georgia, sans-serif;
  3. font-size: 16px;
  4. display: flex;
  5. justify-content: center;
  6. flex-direction: column;
  7. }
  8. label{
  9. display: flex;
  10. flex-direction: column;
  11. text-align: center;
  12. align-items: center;
  13. margin: 10px;
  14. }
  15. .th{
  16. border: 1px solid black;
  17. border-radius: 5px;
  18. width: 100px;
  19. }
  20. .td{
  21. border: 1px solid black;
  22. border-radius: 5px;
  23. min-width: 300px;
  24. }
  25. .tr{
  26. padding: 10px;
  27. }
  28. input{
  29. margin: 10px;
  30. height:20px;
  31. border: 1px solid black;
  32. border-radius: 2px;
  33. width: 220px;
  34. }
  35. input:hover{
  36. border: 1px solid gray;
  37. background-color: lightgrey;
  38. }
  39. .errorField{
  40. font-size: 12px;
  41. color: red;
  42. }