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
| html{
| width: 100%;
| height: 100%;
| }
|
| body{
| font: 12px Segoe UI, Verdana, Tahoma, Arial;
| padding: 0;
| margin: 0;
| }
|
| .controlBarWrapper{
| width: 100%;
| top: 0;
| left: 0;
| z-index: 2000;
|
| }
|
| .titlebar{
| position: relative;
| font-style: italic;
| color: white;
| font-weight: bold;
| padding: 2px 5px 2px;
| background: url('../images/header_back_sml.gif') repeat-x bottom;
| }
|
| .canvas{
| width: 100%;
| height: 100%;
| background: url('../images/20x20_grid_bg.gif') repeat;
| }
|
| .toolBar{
| background-color : lightGrey;
| }
|
| .toolBarButton{
| padding: 2px;
| margin: 5px;
| }
|
|