index.css 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. * {
  2. box-sizing: border-box;
  3. }
  4. body {
  5. padding: 30px;
  6. text-align: center;
  7. }
  8. .wrapper {
  9. border: solid rgb(54, 47, 47) 3px;
  10. padding: 10px;
  11. width: 100px;
  12. margin-left: auto;
  13. margin-right: auto;
  14. background-color: lightgray;
  15. border-radius: 5px;
  16. margin-bottom: 20px;
  17. }
  18. #rootSpeed.wrapper {
  19. width: auto;
  20. }
  21. .lightColor {
  22. width: 70px;
  23. height: 70px;
  24. border-radius: 50%;
  25. background-color: rgb(54, 47, 47);
  26. margin-bottom: 5px;
  27. margin-left: auto;
  28. margin-right: auto;
  29. text-align: center;
  30. color: antiquewhite;
  31. font-weight: 700;
  32. line-height: 450%;
  33. }
  34. #red.on {
  35. background-color: red;
  36. }
  37. #yellow.on {
  38. background-color: rgb(255, 224, 49);
  39. }
  40. #green.on {
  41. background-color: green;
  42. }
  43. #redPed.on {
  44. background-color: red;
  45. }
  46. #greenPed.on {
  47. background-color: green;
  48. }
  49. #switchBtn {
  50. margin-left: auto;
  51. margin-right: auto;
  52. width: 100px;
  53. height: 50px;
  54. }
  55. #switchBtnPed {
  56. margin-left: auto;
  57. margin-right: auto;
  58. width: 100px;
  59. height: 50px;
  60. }
  61. .inputSpeed {
  62. font-size: 12px;
  63. width: 300px;
  64. }