-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmaze.css
89 lines (73 loc) · 1.19 KB
/
maze.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
83
84
85
86
87
88
89
html, body {
width: 100%;
height: 100%;
text-align: center;
}
p {
margin: 0 0 0 0;
}
#header {
color: #ffffff;
background-color: #264b72;
}
.header-item {
height: 100%;
vertical-align: middle;
padding: 4px 30px 4px 30px
}
.header-button {
height: 100%;
vertical-align: middle;
padding: 4px 10px 4px 10px
}
#title {
margin: 0 0 5px 0;
font-size: 18pt;
font-weight: bold;
}
select {
padding: 10px 0 10px 0;
border-radius: 8px;
background-color: #c6e1ff;
}
#maze-container {
height: 90%;
}
#maze-grid {
margin: 20px auto 20px auto;
width: 40%;
height: 90%;
}
#maze-grid td {
border: #000000 1px solid;
/*d3d3d3*/
}
#maze-center {
width: 100%;
height: 100%;
vertical-align: middle;
}
#side-bar {
background-color: #d3d3d3;
}
button {
padding: 10px 20px 10px 20px;
border-radius: 8px;
background-color: #80e6c4;
border: 1px solid #767676;
}
button:disabled {
background-color: #e0e0e0;
cursor: not-allowed;
}
#buttons-table {
margin: 0 0 0 auto;
}
#pause-button {
display: none;
}
.license {
margin: 10px 10% 0 10%;
font-style: italic;
color: #b1b1b1;
}