style.css 923 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. body{
  2. background: url(../bg.png) no-repeat;
  3. background-size: 600px;
  4. }
  5. .traff-lighter{
  6. width: 100px;
  7. height: 100px;
  8. display: block;
  9. position: absolute;
  10. margin: 180px 450px;
  11. }
  12. .traff{
  13. background: url(../traff-lighter.png);
  14. display: block;
  15. width: 100px;
  16. height: 100px;
  17. }
  18. .pos{
  19. height: 5px;
  20. width: 5px;
  21. display: block;
  22. position: absolute;
  23. border-bottom: solid 5px silver;
  24. }
  25. .red{
  26. top: 8px;
  27. left: 36.4px;
  28. }
  29. .yellow{
  30. top: 15.5px;
  31. left: 36.4px;
  32. }
  33. .green{
  34. top: 22.5px;
  35. left: 36.4px;
  36. }
  37. .burn-yellow{
  38. border-color: yellow;
  39. }
  40. .burn-red{
  41. border-color: red;
  42. }
  43. .burn-green{
  44. border-color: greenyellow;
  45. }
  46. .butn{
  47. display: block;
  48. position: absolute;
  49. width: 7px;
  50. height: 7px;
  51. background: red;
  52. padding: 0;
  53. border: 1px solid black;
  54. cursor: pointer;
  55. top: 260px;
  56. left: 521.5px;
  57. }
  58. .counter{
  59. display: block;
  60. position: absolute;
  61. top:165px;
  62. left:483px;
  63. font-family: 'Squada One', cursive;
  64. font-size: 20px;
  65. }