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

#rusty-microphone {
    max-width: 320px;
}
#pitch-indicator-bar-container {
    width: calc(100% - 2px);
    height: 30px;
    position: relative;
    background: #C8C8C8;
    border-right: 2px solid #C8C8C8;
    box-sizing: content-box;
}
#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;
}

.error {
    border: 1px solid red;
    padding: 10px;
}