mirror of
https://github.com/zxing/zxing.git
synced 2024-11-11 05:24:06 -08:00
cedfd4c618
git-svn-id: https://zxing.googlecode.com/svn/trunk@2030 59b500cc-1b3d-0410-9834-0bbf25fbcc57
103 lines
1.7 KiB
CSS
103 lines
1.7 KiB
CSS
/** 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(static/required-field-bg.png) repeat-y;
|
|
}
|
|
.errorMessage {
|
|
padding-left: 110px;
|
|
font-size: 11px;
|
|
color: red;
|
|
}
|