- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
Latest commit
79 lines (79 loc) · 1.05 KB
/
Copy pathstyle.css
File metadata and controls
79 lines (79 loc) · 1.05 KB
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
body{
background-color:#ffe;
margin:0px;
padding:0px;
}
.scene{
float: left;
background-color:#001;
width:100%;
height:500px;
}
.grass{
float: left;
background-color:#238c00;
width:100%;
height:100px;
color:#ffffff;
}
.road{
float: left;
background-color:#cccccc;
width:100%;
height:300px;
}
.ai{
position: absolute;
width:100px;
height:50px;
background-color:#fff;
margin-top:50px;
}
.wall{
position: absolute;
width:50px;
height:100px;
background-color:#b32d00;
right:0px;
}
.sensor1,.sensor2,.sensor3{
position: relative;
background-color:#fff;
opacity:0.5;
width:50px;
height:50px;
text-align: center;
}
.sensor1{
top:-50px;
left:50px;
}
.sensor2{
top:-50px;
left:100px;
width:500px!important;
}
.sensor3{
top:-50px;
left:50px;
}
.debugArea{
width:100%;
background-color:#000;
float: left;;
height: 100%
}
.debugTextareaClass{
width:400px;
height:150px;
}
.tableDebug{
width:100%;
background-color:#fff;
color:#000;
}
.tableDebugx{
width:60%;
background-color:#fff;
color:#000;
}