-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
104 lines (94 loc) · 2.03 KB
/
style.css
File metadata and controls
104 lines (94 loc) · 2.03 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
body {
background-color: #181238;
font-family: "Helvetica", sans-serif;
color: white;
text-align: center; }
.left {
float: left; }
.right {
float: right; }
.cell {
float: left;
background-color: #CAD6F0; }
.cell.wall {
background-color: #152349; }
.cell.start {
background-color: #11CE73; }
.cell.end {
background-color: #E03636; }
.cell.path {
background-color: #FFBB2A;
box-shadow: 0 0 20px #FFBB2A; }
.row {
clear: left;
float: left; }
.panel {
color: #CAD6F0;
position: absolute;
top: 0;
background-color: #645F81;
height: 100%;
box-shadow: 0 0 20px #D4C8DA; }
.panel.left {
left: 0;
width: 0;
padding: 0 1em;
border-right: 2px solid #BC9FD8; }
.panel.left:hover {
width: auto; }
.panel.left:hover .controls {
display: block; }
.panel.left:hover .arrow {
display: none; }
.panel.right {
right: 0;
padding: 0;
border-left: 2px solid #BC9FD8; }
.panel .arrow {
color: #BC9FD8;
font-size: 1.4em;
font-weight: bold;
position: relative;
top: 50%;
right: 0.3em; }
.panel .controls {
display: none; }
.controls {
float: left;
clear: left;
margin: 1em 0; }
#maze_container {
margin: 4em auto 0;
width: 30em; }
#maze_container .controls {
margin: 1.6em auto 0;
width: 100%; }
#maze_container .controls button {
background: #181238;
color: #FFBB2A;
font-size: 2em;
padding: 0.1em 0.3em;
border: 2px solid #BC9FD8;
border-radius: 0.2em;
outline: none;
color: #BC9FD8;
cursor: pointer; }
#maze_container .controls button:hover {
border-color: #FFBB2A;
color: #FFBB2A; }
#maze {
overflow: auto;
box-shadow: 0 0 20px 4px #BC9FD8; }
#solutions {
clear: left;
float: left;
overflow: auto;
margin: 0;
padding: 1em 0; }
#solutions li {
list-style: none;
padding: 0.4em 1em;
cursor: default; }
#solutions li:hover {
background-color: #181238; }
/*# sourceMappingURL=style.css.map */