-
Notifications
You must be signed in to change notification settings - Fork 7
/
backpayCalc.css
248 lines (225 loc) · 4.38 KB
/
backpayCalc.css
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
.helper {
font-size: 80%;
display: block;
}
table {
border: thin solid #808080;
}
caption {
font-weight: bold;
}
th, td {
border: thin inset #808080;
padding: .25em .5em;
}
legend {
font-size: 120%;
padding: .1em .4em;
}
footer {
border-top: thin solid #808080;
width: 100%;
font-size: 80%;
}
.yearSect {
padding: 0;
margin: 1em 0 2.5em;
}
.yearSect h4 {
margin-bottom: 0;
padding-bottom: 0;
}
.tables-responsive {
max-width: 95%;
overflow-x: scroll;
margin: 0;
padding: 0.25em 1% .2em;
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
/* Hide scrollbar for Chrome, Safari and Opera */
.tables-responsive::-webkit-scrollbar {
display: none;
}
.tables-responsive2 {
max-width: 95%;
overflow-x: scroll;
margin: 0;
padding: 0.25em 1% .2em;
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
/* Hide scrollbar for Chrome, Safari and Opera */
.tables-responsive2::-webkit-scrollbar {
display: none;
}
::backdrop {
/*
background-image: linear-gradient(
45deg,
magenta,
rebeccapurple,
dodgerblue,
green
);
*/
background-color: #606060;
opacity: 0.75;
}
/* Open state of the dialog */
dialog[open] {
opacity: 1;
transform: scaleY(1);
}
/* Closed state of the dialog */
dialog {
opacity: 0;
transform: scaleY(0);
transition:
opacity 0.7s ease-out,
transform 0.7s ease-out,
overlay 0.7s ease-out allow-discrete,
display 0.7s ease-out allow-discrete;
/* Equivalent to
transition: all 0.7s allow-discrete; */
}
/* Before-open state */
/* Needs to be after the previous dialog[open] rule to take effect,
as the specificity is the same */
@starting-style {
dialog[open] {
opacity: 0;
transform: scaleY(0);
}
}
/* Transition the :backdrop when the dialog modal is promoted to the top layer */
dialog::backdrop {
background-color: rgb(0 0 0 / 0%);
transition:
display 0.7s allow-discrete,
overlay 0.7s allow-discrete,
background-color 0.7s;
/* Equivalent to
transition: all 0.7s allow-discrete; */
}
dialog[open]::backdrop {
background-color: rgb(0 0 0 / 35%);
}
/* This starting-style rule cannot be nested inside the above selector
because the nesting selector cannot represent pseudo-elements. */
@starting-style {
dialog[open]::backdrop {
background-color: rgb(0 0 0 / 0%);
}
}
.fieldHolder {
margin: 1.25em .5em .5em;
}
.fieldHolder label {
font-weight: bold;
display: block;
}
.fieldHolder input, .fieldHolder select {
margin: .5em .2em;
}
.small {
font-size: 80%;
}
#promotionsDiv {
/*border: thin solid blue;*/
}
.error span, .error p {
border: 2px solid #AA0000;
padding: 0.25em .2em;
margin: .5em 0;
/*display: block-inline;*/
color: #AA0000;
font-weight: bold;
}
.warning span, .warning p {
border: 2px solid #FF9900;
padding: 0.25em .2em;
margin: .5em 0;
/*display: block-inline;*/
color: #C05300;
font-weight: bold;
}
.invisibleStuff {
position: absolute;
height: 1px;
width: 1px;
clip: rect(1px, 1px, 1px, 1px);
overflow: hidden;
margin: 0;
}
.summary {
display: inline;
font-size: 150%;
}
details {
border: thin solid #c0c0c0;
padding: 0.5em;
margin: 0 5em 1.35em 0;
}
dl dt{
display: inline-block;
min-width: 100px;
font-weight: bold;
}
dl dd {
display: inline;
margin: 0 0 0 1em;
}
dl dd:after{
display: block;
content: '';
}
#skipLinks {
display: block;
margin: 0;
padding: 0;
list-style-type: none;
}
#skipLinks > li {
left: 0;
position: absolute;
text-align: center;
top: 10px;
width: 100%;
z-index: 3;
}
#skipLinks > li > a {
clip: rect(1px,1px,1px,1px);
height: 1px;
margin: 0;
overflow: hidden;
position: absolute;
width: 1px;
}
#skipLinks > li > a:focus {
clip: rect(auto,auto,auto,auto);
height: inherit;
margin: inherit;
overflow: inherit;
position: static;
width: inherit;
}
#LangSwitcher {
margin: 0.8em 5%;
text-align: right;
}
#payTablesSect details {
width: 95%;
}
#payTablesSect details summary h3 {
display: inline;
padding-left: 0.5em;
}
#payTablesSect details table {
margin-top: .75em;
}
#payTablesSect details table caption {
text-align: left;
margin: 0 0 0.5em 0.5em;
font-size: 110%;
}