-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
73 lines (69 loc) · 1.07 KB
/
styles.css
File metadata and controls
73 lines (69 loc) · 1.07 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
.level-container {
display: flex;
flex-direction: row;
height: 50px;
}
/* the board consists for rows */
.tileRow {
display: flex;
flex-direction: row;
height: 32px;
}
/* each board-rows has #cols tiles */
.tile {
width: 32px;
height: 32px;
background: blue;
border: 1px solid darkblue;
}
img {
margin: 1px;
}
/* representation of walls */
.tile-north-W {
border-top: 1px solid white;
}
.tile-east-W {
border-right: 1px solid white;
}
.tile-south-W {
border-bottom: 1px solid white;
}
.tile-west-W {
border-left: 1px solid white;
}
/* rep. of closed doors */
.tile-east-D {
border-right: 1px solid red;
}
.tile-west-D {
border-left: 1px solid red;
}
.tile-south-D {
border-bottom: 1px solid red;
}
.tile-north-D {
border-top: 1px solid red;
}
.tile-invisible-true {
background: grey;
border: 1px solid darkgrey;
}
/* message area */
.message-row {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
width: 800px;
margin: 5px;
}
.message {
}
.turn-message {
display: flex;
align-items: center;
}
button {
margin: 5px;
}