styleacc.css 451 B

12345678910111213141516171819202122232425262728293031
  1. *{
  2. margin: 0;
  3. padding: 0;
  4. }
  5. div
  6. {
  7. display: flex;
  8. flex-direction: column;
  9. border: solid;
  10. width: 50%;
  11. height: 200px;
  12. border-width: thin;
  13. box-sizing: border-box;
  14. justify-content: center;
  15. align-items: center;
  16. position: absolute;
  17. top: 0;
  18. bottom: 0;
  19. left: 0;
  20. right: 0;
  21. margin: auto;
  22. }
  23. button
  24. {
  25. width: 8em;
  26. margin: 2em;
  27. background-color: aquamarine;
  28. border-color: black;
  29. }