mirror of
https://github.com/zxing/zxing.git
synced 2025-02-21 02:55:27 -08:00
Improve icon, header spacing
This commit is contained in:
parent
13be5de462
commit
2d280f7b14
|
@ -27,7 +27,7 @@
|
|||
<body>
|
||||
<div id="main">
|
||||
<div id="header">
|
||||
<h1><img src="zxing-icon.png" height="32" width="32" alt=""/> ZXing Decoder Online</h1>
|
||||
<h1><img src="zxing-icon.png" id="icon" alt=""/> ZXing Decoder Online</h1>
|
||||
</div>
|
||||
<p>Decode a 1D or 2D barcode from an image on the web. Supported formats include:</p>
|
||||
<table><tr>
|
||||
|
|
|
@ -39,7 +39,7 @@
|
|||
</head>
|
||||
<body>
|
||||
<div id="main">
|
||||
<div id="header"><h1><img src="zxing-icon.png" height="32" width="32" alt=""/> Decode Succeeded</h1></div>
|
||||
<div id="header"><h1><img src="zxing-icon.png" id="icon" alt=""/> Decode Succeeded</h1></div>
|
||||
<jsp:scriptlet>
|
||||
@SuppressWarnings("unchecked")
|
||||
Iterable<Result> results = (Iterable<Result>) request.getAttribute("results");
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
</head>
|
||||
<body>
|
||||
<div id="main">
|
||||
<div id="header"><h1><img src="zxing-icon.png" height="32" width="32" alt=""/> <c:out value="${requestScope['title']}"/></h1></div>
|
||||
<div id="header"><h1><img src="zxing-icon.png" id="icon" alt=""/>&nbsp;<c:out value="${requestScope['title']}"/></h1></div>
|
||||
<p><c:out value="${requestScope['text']}"/></p>
|
||||
</div>
|
||||
</body>
|
||||
|
|
|
@ -8,3 +8,4 @@ table#result td{background-color:#dde3e9}
|
|||
table#result pre{margin:0}
|
||||
#header{background-color:#dde3e9;border-bottom:1px solid #dde3e9}
|
||||
#header h1{font-size:24px;padding:12px;margin:0}
|
||||
img#icon {vertical-align:middle;height:32px;width:32px}
|
Loading…
Reference in a new issue