summaryrefslogtreecommitdiff
path: root/tools/editor/style.css
blob: e0014cf520f0892d22a4b11d44d61005cd918783 (plain)
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 {
  font-family: sans-serif;
  margin: 20px;
  background-color: #f4f4f4;
}

h1, h2 {
  color: #333;
}

#editorContainer {
  display: flex;
  margin-top: 20px;
}

#spectrogramCanvas {
  border: 1px solid #ccc;
  background-color: #fff;
  margin-right: 20px;
}

#controls {
  border: 1px solid #ccc;
  padding: 15px;
  background-color: #eee;
  min-width: 200px;
}

#controls button {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  cursor: pointer;
}

#undoButton {
  background-color: #d9534f;
  color: white;
  border: none;
  border-radius: 4px;
}

#undoButton:hover {
  background-color: #c9302c;
}

#redoButton {
  background-color: #5cb85c;
  color: white;
  border: none;
  border-radius: 4px;
}

#redoButton:hover {
  background-color: #4cae4c;
}

/* New styles for playback buttons */
#listenOriginalButton,
#listenGeneratedButton {
  background-color: #5bc0de;
  color: white;
  border: none;
  border-radius: 4px;
  margin-top: 5px;
}

#listenOriginalButton:hover,
#listenGeneratedButton:hover {
  background-color: #31b0d5;
}

hr {
  border: 0;
  height: 1px;
  background-color: #ccc;
  margin: 20px 0;
}