style.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. body{
  2. background: linear-gradient(to bottom, #1e9a6a 0%,#2ad887 50%,#7ee8b5 100%) no-repeat;
  3. }
  4. .block{
  5. display: flex;
  6. flex-direction: column;
  7. background: #C6FCE6;
  8. width: 500px;
  9. padding:100px 50px 50px;
  10. margin:10vh auto;
  11. border: solid 10px #84BBA5;
  12. align-items: center;
  13. }
  14. .block input{
  15. width: 75%;
  16. height: 50px;
  17. margin-bottom: 30px;
  18. background: #98F9D2;
  19. border: solid 4px #31A275;
  20. font-size: 25px;
  21. padding: 2.5px 10px;
  22. color: #31A275;
  23. text-align: center;
  24. }
  25. .block input::placeholder{
  26. color: #84BBA5;
  27. }
  28. .block button{
  29. width: 50%;
  30. height: 40px;
  31. margin-bottom: 20px;
  32. background: #B3FCDE;
  33. border: solid 4px #31A275;
  34. font-size: 20px;
  35. color: #31A275;
  36. cursor: pointer;
  37. text-transform: uppercase;
  38. letter-spacing: 5px;
  39. font-weight: 600;
  40. transition: all 0.5s ease;
  41. }
  42. .block button:hover{
  43. border: solid 4px #84BBA5;
  44. background: #31A275;
  45. color: #B3FCDE;
  46. }
  47. table{
  48. border: solid 10px #84BBA5;
  49. margin:20vh auto;
  50. background: #C6FCE6;
  51. cursor: pointer;
  52. }
  53. td{
  54. width: 40px;
  55. height: 40px;
  56. text-align: center;
  57. color: #31A275;
  58. }
  59. tr{
  60. background: #B3FCDE;
  61. }