Subversion Repositories Integrator Subversion

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 espaco 1
/***
2
Dashboard Charts(new in v1.2.1)
3
***/
4
.easy-pie-chart,
5
.sparkline-chart {
6
   text-align: center;
7
}
8
 
9
.sparkline-chart {
10
  margin-top: 15px;
11
  position:relative ;
12
}
13
 
14
.easy-pie-chart .number {
15
    font-size: 14px !important;
16
    font-weight: 300;
17
    margin: 0 auto;
18
    position: relative;
19
    text-align: center;
20
    width: 75px;
21
    height: 75px;
22
    line-height: 75px;
23
 
24
    canvas {
25
      position: absolute;
26
      top: 0;
27
      left: 0;
28
    }
29
}
30
 
31
.sparkline-chart .number {
32
    width: 100px;
33
    margin: 0 auto;
34
    margin-bottom: 10px;
35
}
36
 
37
.sparkline-chart .title,
38
.easy-pie-chart .title {
39
    display: block;
40
    text-align: center;
41
    color: #333;
42
    font-weight: 300;
43
    font-size: 16px;
44
    margin-top: 5px;
45
    margin-bottom: 10px;
46
}
47
 
48
.sparkline-chart .title:hover,
49
.easy-pie-chart .title:hover {
50
  color: #666;
51
  text-decoration: none;
52
}
53
 
54
.sparkline-chart .title > i,
55
.easy-pie-chart .title > i {
56
  margin-top: 5px;
57
}