-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathy-bug-height.html
111 lines (101 loc) · 3.4 KB
/
y-bug-height.html
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
103
104
105
106
107
108
109
110
111
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html xmlns:xs="http://www.w3.org/2001/XMLSchema">
<head>
<style type="text/css">
body {
background-color: #FFFFFF;
color: #000000;
font-family: 'Arial', sans-serif;
font-size: 11pt;
margin: 0;
padding: 1px 5%;
}
div.body {
width: 100%;
min-width: 480px;
margin-left: auto;
margin-right: auto;
}
table {
border-collapse: collapse;
}
.normalna {
width: 100%;
}
.wypelniane {
background-color: white;
border: 1px solid black;
font-size: 1.2em;
padding: 1px;
vertical-align: top;
text-align: left;
}
.opisrubryki {
font-size: 0.5em;
margin-bottom: 0.2em;
text-align: left;
font-weight: bold;
text-transform: none;
}
.nazwa-dla-kodu {
font-size: 0.9em;
}
table.normalna {
width: 100%;
margin: 0;
border: 1px solid black;
}
.rowdiv {
<!--
TODO:
instead of height set min-height and it will look correct
-->
height: 2em;
}
</style>
</head>
<body>
<div xmlns:tns="http://crd.gov.pl/wzor/2022/11/09/11890/" class="deklaracja">
<table class="normalna">
<tr>
<td class="wypelniane" style="width: 50%">
<div class="opisrubryki">12. Identyfikator podatkowy NIP / numer PESEL</div>12345678901
</td>
<td class="wypelniane" style="width: 50%">
<div class="rowdiv">
<div class="opisrubryki">
13. Zagraniczny numer identyfikacyjny podatnika <font style="font-weight: normal">(numer dokumentu stwierdzającego tożsamość)<sup>11)</sup></font>
</div>
</div>
</td>
</tr>
<tr>
<td class="wypelniane" style="width: 50%">
<div class="rowdiv">
<div class="opisrubryki">
14. Rodzaj numeru identyfikacyjnego (dokumentu stwierdzającego tożsamość)
</div>
</div>
</td>
<td class="wypelniane" style="width: 50%">
<div class="rowdiv">
<div class="opisrubryki">
15. Kraj wydania numeru identyfikacyjnego (dokumentu stwierdzającego tożsamość)
</div>PL 
<span class="nazwa-dla-kodu">(POLSKA)</span>
</div>
</td>
</tr>
</table>
<table class="normalna">
<tr>
<td class="wypelniane" style="width: 100%">
<div class="opisrubryki">11. Rodzaj obowiązku podatkowego podatnika</div><input type="checkbox" checked="checked" disabled="disabled" />
1. nieograniczony
obowiązek podatkowy (rezydent)
</td>
</tr>
</table>
</div>
</body>
</html>