style.css 689 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .container {
  2. width: 100px;
  3. height: 230px;
  4. background-color: rgba(154, 154, 154, 0.99);
  5. border-radius: 50px;
  6. padding: 10px;
  7. }
  8. .light {
  9. background-color: rgba(0, 0, 0, 0.18);
  10. width: 60px;
  11. height: 60px;
  12. border: 1px solid;
  13. border-radius: 50%;
  14. margin: 10px auto;
  15. }
  16. .red {
  17. background-color: red;
  18. box-shadow: 0 0 20px red;
  19. }
  20. .yellow {
  21. background-color: yellow;
  22. box-shadow: 0 0 20px yellow;
  23. }
  24. .green {
  25. background-color: green;
  26. box-shadow: 0 0 20px green;
  27. }
  28. #pedastrian_container {
  29. width: 100px;
  30. height: 200px;
  31. background-color: rgba(154, 154, 154, 0.99);
  32. border-radius: 50px;
  33. padding: 10px;
  34. }
  35. #button {
  36. }