style.css 552 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. *,
  2. *:before,
  3. *:after {
  4. box-sizing: border-box;
  5. }
  6. body {
  7. margin: 0;
  8. height: 100vh;
  9. background-color: darkgrey;
  10. padding: 10px;
  11. }
  12. #svetofor, #padestrianSvetofor, #padestrianSvetoforButton{
  13. width: 100px;
  14. height: 100px;
  15. border-radius: 50%;
  16. margin: 20px;
  17. border: 2px solid black;
  18. display: flex;
  19. justify-content: center;
  20. align-items: center;
  21. color: green;
  22. font-weight: bolder;
  23. }
  24. .svetoforRed {
  25. background-color: red;
  26. }
  27. .svetoforYellow {
  28. background-color: yellow;
  29. }
  30. .svetoforGreen {
  31. background-color: green;
  32. }