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
| body {
| margin: 20px;
| }
| h1 {
| margin-bottom: 15px;
| font-size: 16px;
| }
|
| #app-header {
| text-align: center;
| font-family: arial;
| background-color: #fff;
| }
| #app-center .x-panel-header {
| font-size: 13px;
| text-align: center;
| padding-left: 178px;
| font-family: helvetica, arial, sans-serif;
| color: #455C6F;
| }
| #app-west {
| border-right: 1px solid #99BBE8;
| }
| #app-west .x-panel-body {
| background: #D0DEF0;
| }
| #app-header-content h1 {
| float:left;
| margin:8px 5px;
| font-size: 18px;
| color: #455C6F;
| }
| #app-logo {
| float: left;
| margin: 5px 10px;
| width: 30px;
| }
| #app-logo .logo-top,
| #app-logo .logo-bottom {
| height: 0;
| font-size: 0;
| line-height: 0;
| padding: 0;
| overflow: hidden;
| margin: 0 1px;
| border: 0;
| border-top-width: 1px;
| border-top-style: solid;
| border-color: #9F2727;
| }
| .x-ie #app-logo .logo-top {
| margin-bottom: -1px;
| }
| .ext-border-box #app-logo .logo-top,
| .ext-border-box #app-logo .logo-bottom {
| height: 1px;
| }
| #logo-body {
| margin: 0;
| text-align: center;
| overflow: hidden;
| border-width: 3px 1px 0;
| border-style: solid;
| border-color: #9F2727;
| background: #fff;
| font-weight: bold;
| padding: 1px 0 2px;
| font-size: 18px;
| line-height: 18px;
| color: #455C6F;
| }
| #app-msg {
| /* background: #FAD163;*/
| color: #c8a52e;
| padding: 2px 10px;
| font-weight: bold;
| font-size: 13px;
| -moz-border-radius:3px;
| -webkit-border-radius:3px;
| border-radius:3px;
| }
|
|