-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
88 lines (76 loc) · 1.04 KB
/
main.css
File metadata and controls
88 lines (76 loc) · 1.04 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
body{
margin:0;
background-color: rgb(236, 236, 236);
}
table{
border-spacing: 0;
margin-top: 2rem;
background-color: white;
display: inline-block;
margin: 1rem;
}
table, td{
border: 1px solid black;
}
td{
vertical-align: top;
text-align: left;
width: 80px;
height: 80px;
/* padding: 2rem; */
}
span{
position: absolute;
width: 80px;
line-height: 80px;
text-align: center;
}
.yellow {
background-color: yellow;
}
.red {
background-color: #ff4d4d;
}
.green {
background-color: #79e651;
}
.spawn{
vertical-align: top;
text-align: left;
line-height: 1rem;
width: 1rem;
background-color: #f0dd32;
}
.agent{
vertical-align: bottom;
text-align: right;
line-height: 1rem;
background-color: #6297f8;
}
.top{
text-align: center;
line-height: 1rem;
}
.left{
text-align: left;
width: 1rem;
}
.right{
text-align: right;
}
.bottom{
line-height: 9rem;
vertical-align: bottom;
}
button{
position: fixed;
padding: 2rem;
left: 1rem;
bottom: 1rem;
}
ul{
list-style-type: none;
padding:0;
width: 100%;
text-align: center;
}