-
Notifications
You must be signed in to change notification settings - Fork 3
/
maze.css
105 lines (90 loc) · 1.48 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
html, #canvas, body {
margin: 0;
padding: 0;
}
body {
color: #000;
overflow: hidden;
font-family: Arial,Helvetica,Verdana,sans-serif;
font-size: 100%;
}
#dialog-wrapper {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
background: rgba(0,0,0,0.8);
display: block;
z-index: 1;
}
.dialog {
width: 800px;
min-width: 800px;
max-width: 80%;
margin: 10% auto 0 auto;
background: white;
padding: 15px;
border: 1px solid #cccccc;
display: table; /* so the dialog changes size when textarea is resized */
}
.dialog-title {
width: 100%;
display: inline-block;
margin-bottom: 10px;
font-size: 120%;
font-weight: bold;
}
.dialog .controls {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.controls .confirm-button {
font-weight: bold;
}
.controls button {
flex-grow: 1;
}
.dialog button {
background: #222;
padding: 10px 20px;
color: #fff;
}
.dialog button:active {
background: #666;
color: #000;
}
.dialog button:hover, .dialog button:focus {
background: #333;
}
textarea#colorFunction {
width: 98%;
min-width: 98%;
resize: both;
margin-left: 1%;
margin-right: 1%;
height: 140px;
-moz-tab-size: 4;
-o-tab-size: 4;
tab-size: 4;
}
#checkSyntaxResult {
display: inline-block;
margin-top: 10px;
}
.dg.a {
margin-right: 0 !important;
}
.wait {
cursor: wait !important;
}
#floatingBox {
background: #fff;
color: #000;
border: 1px solid;
margin: 15px;
padding: 5px;
position: fixed;
display: none;
}