summaryrefslogtreecommitdiff
path: root/www/ajax/style.css
blob: ac7f89dff06d8e6d8200b6690d1709302d2b5ec0 (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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165

/* -----------------------------------------------------------------------------
 * MAIN LAYOUT
 */

*
{
    color: #E7E1CC;
    font-family: sans-serif;
}

body
{
    background-color: #1A1A1A
}

#main-table
{
    width: 100%;
    height: 100%;
    padding: 10px;
}

#top-row
{
    height: 30pt;
    padding: 0px;
}

#main-row
    { height: 100%; }

#main-cell
    { background-color: #252424; padding: 5pt; }

#main-frame
{
    border: none;
    height: 100%;
    width: 100%;
}

#logo
{
    font-size: 16pt;
    font-weight: bold;
}

/* -----------------------------------------------------------------------------
 * GROUP HEADERS
 */

/* A group button at the top */
.header
{
    background-color: #3D2C2C;
    padding: 4pt 6pt;
    font-size: 8pt;
    font-weight: bold;
    -moz-border-radius: 3pt;
    cursor: pointer;
    margin-right: 5pt;
    text-decoration: none;
}

/* Our sample header (which gets copied for each group) is hidden */
#header-template
    { visibility: hidden; }

/* -----------------------------------------------------------------------------
 * GRAPHS/FRAME
 */

body.in-frame
{
    background-color: #252424;
}

img.graph
{
    margin: 7px;
}

#zoom
{
    cursor: crosshair;
    position: absolute;
    background-color: red;
    display: none;
    top: 0px;
    left: 0px;
    width: 10px;
    height: 10px;
    filter: alpha(opacity=40);
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    opacity: 0.5;
}

/* -----------------------------------------------------------------------------
 * ACTION BAR
 */

#actions
{
    background-color: #252424;
    position: absolute;
    left: 50px;
    top: 50px;
    height: 120px;
    display: none;
}

.action
{
    margin: 3px;
    cursor: pointer;

    /* COMPAT: IE doesn't support :hover on anything but links
       so transparency has no use whatsover */

    -moz-opacity: 0.75;
    -khtml-opacity: 0.75;
    opacity: 0.75;
}

img.action:hover
{
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
}

#goto
{
    position: absolute;
    padding: 10px;
    top: 0px;
    left: 0px;
    background-color: #252424;
    display: none;
}

#goto-select
{
    border: 1px solid black;
    font-size: 8pt;
    font-weight: normal;
    width: 120px;
    background-color: #252424;
}

/* -----------------------------------------------------------------------------
 * MISC
 */

.error
{
    background-color: #F3BDBD;
    border: 1px solid red;
    padding: 3pt;
    font-size: 8pt;
    color: black;
}