blob: 0863aea3924f69b8929c7d8b1e64a703f63742a2 (
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
|
/** CSS by Wain. */
body {
background-color: #e9eef3;
margin: 0;
padding: 0;
font-family: Arial, sans-serif;
font-size: 11px;
}
#header {
background-color: #dde3e9;
border-bottom: 1px solid #f2f7fc;
}
#header h1 {
font-size: 15px;
font-weight: bold;
margin: 0;
padding: 12px;
border-bottom: 1px solid #c8d0d9;
}
#header span {
font-weight: normal;
color: #5e6b75;
}
#footer {
width: 100%;
text-align:center;
padding-top: 12px;
}
#footer a {
text-decoration:none;
color: #5e6b75;
}
/****************************************/
#mainpanel {
width: 800px;
margin: 0 auto;
padding: 12px;
font-size: 11px;
}
#imageresult {
background-color: #dde3e9;
height: 350px;
width: 350px;
vertical-align: middle;
text-align:center;
padding: 10px;
position: relative;
display: table;
}
#innerresult {
display: table-cell;
vertical-align: middle;
width: 100%;
}
#downloadText {
font-size: 11px;
}
#urlresult {
width: 350px;
}
#rawtextresult {
width: 350px;
}
.firstColumn {
width: 100px;
text-align: right;
vertical-align: top;
padding: 4px 0 4px 0;
color: #5e6b75;
font-weight: bold;
font-size: 11px;
}
.secondColumn {
width: 270px;
font-size: 11px;
color: #5e6b75;
font-weight: bold;
}
/*.inputfield,*/
.gwt-TextBox,
.gwt-TextArea {
border: 1px solid #c8d0d9;
padding: 4px;
width: 256px;
font-family: Arial, sans-serif;
font-size: 13px;
color: #000;
font-weight: normal;
}
/*.inputfield:focus,*/
.gwt-TextBox:focus {
background-color: #fffbcc;
}
.required {
background: #ffffff url(/required-field-bg.png) repeat-y;
}
.errorMessage {
padding-left: 110px;
font-size: 11px;
color: red;
}
|