-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
100 lines (86 loc) · 1.32 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
body {
margin: 0;
padding: 0;
}
.scene {
float: left;
width: 100%;
height: 500px;
background-color: #eee;
}
.grass {
float: left;
background: url('images/grass2.jpg');
background-size: 100px 100px;
width: 100%;
height: 100px;
}
.road {
float: left;
background: url('images/road.png');
background-repeat: repeat-x;
background-size: 150px 300px;
width: 100%;
height: 300px;
}
.ai {
position: absolute;
width: 100px;
height: 50px;
background: url("images/car.svg");
margin-top: 50px;
}
.wall {
position: absolute;
width: 50px;
height: 100px;
background: url("images/wall.jpg");
background-size: 80px;
right: 0;
}
.sensor_1, .sensor_2, .sensor_3 {
position: relative;
background-color: #fff;
opacity: 0.4;
width: 50px;
height: 50px;
text-align: center;
}
.sensor_1 {
top: -50px;
left: 50px;
}
.sensor_2 {
top: -50px;
left: 100px;
width: 500px !important;
}
.sensor_3 {
top: -50px;
left: 50px;
}
.debugArea {
width: 100%;
height: 100%;
background-color: #e9e9e9;
float: left;
position: relative;
}
.debugTextAreaClass {
float: left;
width: 400px;
height: 150px;
}
.debugArea input {
float: left;
}
.tableDebug {
width: 100%;
background-color: #fff;
color: #000;
}
.tableDebugSmall {
width: 50%;
background-color: #fff;
color: #000;
}