summaryrefslogtreecommitdiff
path: root/tools/editor/style.css
blob: f610969901b43d144e650a74881e510994a248f6 (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
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;
}