aboutsummaryrefslogtreecommitdiffstats
path: root/css/style.css
blob: 87b02757e63c9f1b173d5cdd73c2f201da16a73e (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
/* Global */
body {
  font-family: "DejaVu Sans", Helvetica, Arial, sans-serif;
  font-size:   11pt;
  line-height: 140%;
  color:       #1a1a1a;
}
.error {
  color: #FF0040;
}


/* Login form */
form.loginform {
  margin: 0px auto;
  border: 1px solid #cccccc;
  padding: 10pt;
  position: relative;
  width: 300px;
  background: #F5F5F5;
}
table.loginform {
  margin:0 auto 5pt auto;
  border-collapse:collapse;
}
table.loginform td {
  padding:0 5pt 0 0;
}
.loginform {
  text-align: center;
  font-size: 12pt;
}
.label {
  text-align: right;
}


/* Header */
#header {
  width: 100%;
}
#header .column {
  position: relative;
  padding:  0pt;
  border:   0pt;
  font-size: 9pt;
}
#header .left {
  width:      50%;
  float:      left;
  text-align: left;
}
#header .right {
  width:      45%;
  float:      right;
  text-align: right;
}


/* Listing table */
table.list {
  width:90%;
  border-top:1px solid #e5eff8;
  border-right:1px solid #e5eff8;
  margin:1em auto;
  border-collapse:collapse;
}
table.list td {
  color:#678197;
  border-bottom:1px solid #e5eff8;
  border-left:1px solid #e5eff8;
  padding:.3em 1em;
  text-align:center;
}
table.list tr.odd td {
  background:#f7fbff
}
table.list th {
  font-weight:normal;
  color: #678197;
  text-align:left;
  border-bottom: 1px solid #e5eff8;
  border-left:1px solid #e5eff8;
  padding:.3em 1em;
}
table.list thead th {
  background:#f4f9fe;
  text-align:center;
  font-weight:bold;
  color:#66a3d3
}
.nonactive {
  color: #FF0040;
}
.active {
  color: #32CD32;
}
.none {
  font-size:  6pt;
  color: lightgray; 
}