diff options
| author | Max Christian Pohle | 2021-12-04 14:29:49 +0100 |
|---|---|---|
| committer | Max Christian Pohle | 2021-12-04 14:29:49 +0100 |
| commit | bef7e1a6f6ed28d580b331063baa35b34a8f1d25 (patch) | |
| tree | 2fdf190056351d42430bc2241f2c788f02673264 /index.html | |
| parent | 512c406b4fb3bc4054073608707ae07f65a65890 (diff) | |
| download | ohmycgi-bef7e1a6f6ed28d580b331063baa35b34a8f1d25.tar.bz2 ohmycgi-bef7e1a6f6ed28d580b331063baa35b34a8f1d25.zip | |
Prepared `letter` type and updated CSSlabelprinter
Diffstat (limited to 'index.html')
| -rw-r--r-- | index.html | 51 |
1 files changed, 3 insertions, 48 deletions
| @@ -4,59 +4,14 @@ | |||
| 4 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | 4 | <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> |
| 5 | <head> | 5 | <head> |
| 6 | <title>print label</title> | 6 | <title>print label</title> |
| 7 | <style> | 7 | <link rel="stylesheet" type="text/css" href="default.css"/> |
| 8 | html,body { | ||
| 9 | font: caption; | ||
| 10 | background-color: Background; | ||
| 11 | margin:0; | ||
| 12 | height:100%; | ||
| 13 | overflow:hidden; | ||
| 14 | } | ||
| 15 | body { | ||
| 16 | padding:2em; | ||
| 17 | } | ||
| 18 | h1 { | ||
| 19 | margin-top:0; | ||
| 20 | } | ||
| 21 | label { | ||
| 22 | font-size:x-small; | ||
| 23 | color:GrayText; | ||
| 24 | } | ||
| 25 | form { | ||
| 26 | border:2px solid Background; | ||
| 27 | border-radius: 1em; | ||
| 28 | padding: 2em; | ||
| 29 | background: AppWorkspace; | ||
| 30 | } | ||
| 31 | input { | ||
| 32 | background: AppWorkspace; | ||
| 33 | cursor:pointer; | ||
| 34 | font: caption; | ||
| 35 | padding: 0.3em 0.5em; | ||
| 36 | width:20ex; | ||
| 37 | border: 3px ridge; | ||
| 38 | border-width: 0px 0px 3px 0px; | ||
| 39 | border-color: ButtonShadow; | ||
| 40 | } | ||
| 41 | |||
| 42 | input[type="submit"] { | ||
| 43 | width:inherit; | ||
| 44 | background: AppWorkspace; | ||
| 45 | margin-left:2em; | ||
| 46 | border-radius:0.5em; | ||
| 47 | border-width:3px; | ||
| 48 | font-weight:bold; | ||
| 49 | } | ||
| 50 | |||
| 51 | </style> | ||
| 52 | </head> | 8 | </head> |
| 53 | |||
| 54 | <body> | 9 | <body> |
| 55 | 10 | ||
| 56 | <form method="post" enctype="multipart/form-data"> | 11 | <form method="post" enctype="multipart/form-data"> |
| 57 | <h1>Simple label</h1> | 12 | <h1>Simple label</h1> |
| 58 | <label>line1<br/><input type="text" name="line1" /></label><br/> | 13 | <label>line1<br/><input type="text" class="label" name="line1" /></label><br/> |
| 59 | <label>line2<br/><input type="text" name="line2" /></label> | 14 | <label>line2<br/><input type="text" class="label" name="line2" /></label> |
| 60 | <input type="submit" value="print" /> | 15 | <input type="submit" value="print" /> |
| 61 | </form> | 16 | </form> |
| 62 | </body> | 17 | </body> |
