summaryrefslogtreecommitdiff
path: root/web/style.css
blob: f704d6fd1df0382dba57dc3de4d307f6c2d10177 (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
* {
    box-sizing: border-box;
}

#rusty-microphone {
    max-width: 320px;
}
#pitch-indicator-bar-container {
    width: calc(100% - 2px);
    height: 30px;
    position: relative;
    background: rgb(200, 200, 200);
}
#pitch-indicator-bar {
    height: 100%;
    border: 1px solid black;
    width: 0;
    position: absolute;
    left: 50%;
}

#pitch-indicator-colours {
    width: 100%;
    height: 50px;
}

#flat-indicator {
    width: 50%;
    height: 100%;
    background: blue;
    float: left;
}

#sharp-indicator {
    width: 50%;
    height: 100%;
    background: red;
    float: left;
}