style.css 380 B

123456789101112131415161718192021222324252627
  1. *,
  2. *:before,
  3. *:after {
  4. box-sizing: border-box;
  5. }
  6. body {
  7. margin: 0;
  8. height: 100vh;
  9. background-color: darkgrey;
  10. display: flex;
  11. align-items: center;
  12. justify-content: center;
  13. }
  14. select, #amount {
  15. padding: 10px;
  16. margin: 20px;
  17. min-width: 300px;
  18. }
  19. #rateNow, #result{
  20. padding: 10px;
  21. width: 100px;
  22. background-color: antiquewhite;
  23. margin: 10px;
  24. }