styles.css 736 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. body{
  2. position: relative;
  3. margin: 0;
  4. background-color: rgb(226, 221, 221);
  5. min-height: 100vh;
  6. }
  7. .trafficLights{
  8. width: 100px;
  9. margin: 0 auto;
  10. border-radius: 10px;
  11. border: solid 4px black;
  12. display: flex;
  13. flex-wrap: wrap;
  14. padding: 20px;
  15. background-color: grey;
  16. }
  17. .trafficLights__off{
  18. width: 100px;
  19. height: 100px;
  20. border-radius: 50%;
  21. background-color: gainsboro;
  22. border: solid 4px black;
  23. display: flex;
  24. justify-content: center;
  25. align-items: center;
  26. font-size: 45px;
  27. color: rgb(5, 5, 5);
  28. }
  29. .trafficLights__off:not(:last-child){
  30. margin-bottom: 20px;
  31. }
  32. .resolvePromise{
  33. background-color: green;
  34. color: white;
  35. font-size: 35px;
  36. display: block;
  37. margin: 0 auto;
  38. margin-top: 40px;
  39. }