-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
79 lines (73 loc) · 1.1 KB
/
style.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
body {
margin: 0;
padding: 0;
}
canvas {
width: 100%;
height: 100%;
}
.hide {
display: none;
}
.controller {
position: absolute;
left: 10px;
top: 10px;
z-index: 1;
background: #bdb4b4;
border: 1px solid #ddd;
padding: 20px;
border-radius: 8px;
}
.controller ul {
list-style: none;
padding: 0;
margin: 0;
}
.controller ul li {
margin: 5px 0 8px;
}
.controller ul button {
display: block;
width: 100%;
padding: 5px 15px;
border-radius: 8px;
cursor: pointer;
}
.controller .active {
background: #1d48f1;
color: #fff;
}
#btn_run_algorithm {
display: block;
margin-top: 15px;
background: green;
color: #fff;
padding: 10px 25px;
font-size: 1.4rem;
cursor: pointer;
border-radius: 8px;
}
select#from,
select#to {
border-radius: 4px;
padding: 5px;
}
#notification {
position: fixed;
background: rgba(0, 0, 0, 0.7);
border-radius: 25px;
text-align: center;
color: #fff;
padding: 6px 25px 5px;
bottom: 10px;
left: 50%;
transform: translate(-50%, -50%);
}
label {
display: block;
font-size: 0.9rem;
}
input[type=range] {
width: 100%;
}