-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
82 lines (70 loc) · 1.3 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
body {
font-family: Corbel, Arial, Helvetica, sans-serif;
}
#footer {
margin-top: 2em;
color: gray;
}
#container {
position: relative;
border: solid 1px yellow;
background-color: #A3D6DE;
z-index: 5;
}
#container div {
position: absolute;
font-size: 8px;
z-index: 16;
}
#container div:hover { border: dashed 1px gray;}
#hiro {
position: absolute;
width: 30px;
height: 30px;
background-color: yellow;
z-index: 100;
}
#enemy{
position: absolute;
left: 40px;
width: 30px;
height: 30px;
background-color: green;
z-index: 100;
}
.menu {display: block; clear: both; position: relative; height: 3.5em;}
.button {
position: relative;
border: dotted 2px black;
padding: 0.5em;
text-align: center;
font-weight: bold;
color: gray;
display:block;
font-size: larger;
float: left;
}
.button:hover {cursor: pointer; background-color: #efafaf;}
#findBtn {
position: relative;
border: dotted 2px black;
padding: 0.5em;
width: 100px;
}
#resetBtn {
position: relative;
border: dotted 2px black;
padding: 0.5em;
width: 100px;
}
#agentContainer {
display: block;
position: relative;
height: 40px;
width: 80px;
}
.movePossible {
border: solid 1px green;
}
.pth {background-color: gray;}
.dn {display: none;}