style.css 406 B

12345678910111213141516171819202122232425262728293031
  1. body{
  2. height: 100%;
  3. width: 100%;
  4. display: flex;
  5. align-items: center;
  6. }
  7. .wrapper{
  8. border: 1px solid black;
  9. padding: 30px 60px 50px;
  10. margin: 0 auto;
  11. display: flex;
  12. flex-direction: column;
  13. }
  14. input{
  15. width: 200px;
  16. }
  17. button{
  18. margin-top: 30px;
  19. width: 120px;
  20. align-self: center;
  21. }
  22. p{
  23. text-align: center;
  24. }
  25. .done{
  26. color: green;
  27. }
  28. .fail{
  29. color: red;
  30. }