Skip to content

Commit 99be160

Browse files
committed
some progress enable custom shelfmarks
1 parent ef396b0 commit 99be160

5 files changed

Lines changed: 78 additions & 49 deletions

File tree

signaturenDruck/css/index.css

Lines changed: 0 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -39,54 +39,6 @@ body {
3939
/* border: 1px solid red; */
4040
}
4141

42-
.big {
43-
width: 80mm;
44-
height: 43mm;
45-
}
46-
47-
.small {
48-
width: 74mm;
49-
height: 23mm;
50-
}
51-
52-
.indent>p {
53-
font-size: 16pt;
54-
margin: 0px;
55-
padding-top: 0px;
56-
padding-bottom: 0px;
57-
margin-left: 45%;
58-
}
59-
60-
.center>p {
61-
font-size: 15pt;
62-
margin: 0pt;
63-
text-align: center;
64-
}
65-
66-
.center>p#line1 {
67-
margin-top: 30px;
68-
}
69-
70-
#previewBox {
71-
border: 1px solid black;
72-
background-color: white;
73-
float: right;
74-
margin: 5px 0px 5px 5px;
75-
border-radius: 2px;
76-
font-family: "Arial Narrow";
77-
}
78-
79-
p#line1 {
80-
margin-top: 6px;
81-
}
82-
83-
#line1,
84-
#line2,
85-
#line3,
86-
#line6 {
87-
font-weight: bold;
88-
}
89-
9042
th,
9143
td {
9244
text-align: center;

signaturenDruck/css/manual.css

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#container {
2+
/* border: double; */
3+
overflow: hidden;
4+
}
5+
6+
#inputBox {
7+
float: left;
8+
margin-top: 5px;
9+
/* border: 1px solid red; */
10+
}

signaturenDruck/css/preview.css

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
#previewBox {
2+
border: 1px solid black;
3+
background-color: white;
4+
float: right;
5+
margin: 5px 0px 5px 5px;
6+
border-radius: 2px;
7+
font-family: "Arial Narrow";
8+
}
9+
10+
.big {
11+
width: 80mm;
12+
height: 43mm;
13+
}
14+
15+
.small {
16+
width: 74mm;
17+
height: 23mm;
18+
}
19+
20+
.indent>p {
21+
font-size: 16pt;
22+
margin: 0px;
23+
padding-top: 0px;
24+
padding-bottom: 0px;
25+
margin-left: 45%;
26+
}
27+
28+
.center>p {
29+
font-size: 15pt;
30+
margin: 0pt;
31+
text-align: center;
32+
}
33+
34+
.center>p#line1 {
35+
margin-top: 30px;
36+
}
37+
38+
p#line1 {
39+
margin-top: 6px;
40+
}
41+
42+
#line1,
43+
#line2,
44+
#line3,
45+
#line6 {
46+
font-weight: bold;
47+
}

signaturenDruck/index.html

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
<head>
55
<meta charset="UTF-8">
66
<title>Signaturendruck</title>
7-
<link rel="stylesheet" type="text/css" href="./css/index.css">
7+
<link rel="stylesheet" type="text/css" href="./css/index.css">
8+
<link rel="stylesheet" type="text/css" href="./css/preview.css">
89
<link rel="stylesheet" type="text/css" href="C:/Export/user.css">
910
<link rel="stylesheet" type="text/css" href="./css/modal.css">
1011
</head>

signaturenDruck/manual.html

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,32 @@
55
<meta charset="UTF-8">
66
<title>Signaturendruck</title>
77
<link rel="stylesheet" type="text/css" href="./css/manual.css">
8+
<link rel="stylesheet" type="text/css" href="./css/preview.css">
89
<link rel="stylesheet" type="text/css" href="./css/modal.css">
910
</head>
1011

1112
<body>
1213
<div>
1314
<code>Hello World!</code>
1415
</div>
16+
<div id="container">
17+
<div id="inputBox">
18+
<div id="editorBox">
19+
<input type="text" id="line_1"><br>
20+
<input type="text" id="line_2"><br>
21+
<input type="text" id="line_3"><br>
22+
<input type="text" id="line_4"><br>
23+
<input type="text" id="line_5"><br>
24+
<input type="text" id="line_6">
25+
</div>
26+
<div id="lineSelectBox">
27+
<input type="radio" name="numberOfLines" value="1" checked> 1 Zeile
28+
<input type="radio" name="numberOfLines" value="3" checked> 3 Zeilen
29+
<input type="radio" name="numberOfLines" value="6" checked> 6 Zeilen
30+
</div>
31+
</div>
32+
<div id="previewBox" class="big"></div>
33+
</div>
1534
<!-- The Modal -->
1635
<div id="myModal" class="modal">
1736

0 commit comments

Comments
 (0)