blob: 94da36e2947bf548670d6b437b23327cd8b5260d (
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
|
.histogrambox-container {
padding: 0vw;
position: absolute;
top: 0;
left:0;
text-align: center;
width: 100%;
height: 100%;
background: black;
}
.histogrambox-xaxislabel {
position:absolute;
left:0;
width:100%;
text-align: center;
bottom:0;
background: lightgray;
font-size: 14;
font-weight: bold;
}
.histogrambox-yaxislabel {
position:absolute;
height:100%;
width: 25px;
left:0;
bottom:0;
background: lightgray;
}
.histogrambox-yaxislabel-text {
position:absolute;
left:0;
transform-origin: left;
transform: rotate(-90deg);
text-align: center;
font-size: 14;
font-weight: bold;
bottom: calc(50% - 25px);
}
|