-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
113 lines (98 loc) · 1.2 KB
/
style.css
File metadata and controls
113 lines (98 loc) · 1.2 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
body
{
background-color:#999;
margin:0px;
padding:0px;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
font-size: 20px;
}
div{
border-radius: 10px;
}
.scene
{
float:left;
background-color:#000;
width:100%;
height:500px;
}
.grass
{
float:left;
background-color:rgb(0, 44, 140);
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:rgb(51, 15, 3);
right:0px;
}
.sensor_1, .sensor_2, .sensor_3
{
position:relative;
background-color:#fff;
opacity:0.5;
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%;
background-color:#000;
float:left;
height:100%;
}
.debugTextareaClass
{
width:400px;
height:150px;
}
.tableDebug
{
width:100%;
background-color:#fff;
color:#000;
}
.tableDebugSmall
{
width:50%;
background-color:#fff;
color:#000;
}