File: simple_bars.css

package info (click to toggle)
libjifty-plugin-chart-perl 1.01%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 348 kB
  • ctags: 350
  • sloc: perl: 2,614; sh: 48; makefile: 2
file content (35 lines) | stat: -rw-r--r-- 589 bytes parent folder | download | duplicates (2)
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
div.simple_bars div.row {
    position: relative;
    padding: 3px 1%;
    width: 100%;
    overflow: auto;
}

div.simple_bars div.row span.label {
    display: block;
    float: left;
    width: 30%;
    overflow: hidden;
}

div.simple_bars div.row span.barArea {
    display: block;
    float: left;
    width: 60%;
    overflow: hidden;
}

div.simple_bars div.row span.barArea span.bar {
    display: block;
}

div.simple_bars span.bar {
    background-color: #4d89f9;
}

div.simple_bars div.row span.value {
    display: block;
    float: left;
    width: 8%;
    text-align: right;
}