Projet

Général

Profil

Télécharger (1,19 ko) Statistiques
| Branche: | Tag: | Révision:

univnautes / usr / local / www / themes / pfsense_ng / graphlink.css @ 6817c18a

1
/*******************************************************************************
2
  $Id: graphlink.css,v 1.2.2.1 2007/01/17 18:43:30 sullrich Exp $
3

    
4
  This file is part of the GraphLink software.
5
  GraphLink is distributed under the MIT License.
6
  Copyright (C) 2005-2006 Max Khitrov <max@mxsoft.org>
7
*******************************************************************************/
8

    
9
/**
10
 * Defines the background image used for the graph, as well as the actual data
11
 * locations.
12
 * Use padding-left and padding-top to align the data area correctly with your
13
 * background image.
14
 * Width and height should same as the dimensions of the image, minus the
15
 * padding values in both directions.
16
 */
17
div.GraphLink {
18
  width: 212px;
19
  height: 60px;
20
  padding-left: 38px;
21
  padding-top: 10px;
22
  background-image: url(/themes/nervecenter/images/misc/graph.png);
23
  overflow: hidden;
24
}
25

    
26
/**
27
 * Defines the data display area. Modify to fit your background image.
28
 */
29
div.GraphLinkData {
30
  width: 200px;
31
  height: 50px;
32
  overflow: hidden;
33
}
34

    
35
/**
36
 * Defines the look of one bar. Nothing to change here other than the color.
37
 */
38
span.GraphLinkBar {
39
  background-color: #990000;
40
  height: 100%;
41
  float: left;
42
  overflow: hidden;
43
}
(5-5/12)