-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
184 lines (155 loc) · 3.59 KB
/
styles.css
File metadata and controls
184 lines (155 loc) · 3.59 KB
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
body {
background-color: #f4f4f4;
font-family: Arial, Helvetica, sans-serif;
font-size: 0.9rem;
}
:root {
--sepa-red: #dc3545;
--sepa-blue: #0099ff;
--sepa-green: #4caf50;
--sepa-grey: #f4f4f4;
--sepa-grey-dark: #cccccc;
--sepa-table-header: #f8f8f8;
--sepa-table-border: #cccccc;
}
.container, .card {
background: #fff;
border-radius: 6px;
border: 1px solid var(--sepa-grey-dark);
box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.card-header {
background: #fff;
border-bottom: 1px solid var(--sepa-grey-dark);
padding: 0.5rem 1.25rem;
display: flex;
align-items: center;
justify-content: space-between;
}
.validation-result {
font-weight: normal;
margin-left: 1rem;
font-size: 0.9rem;
line-height: 1;
}
.card-header {
min-height: 0.75rem;
padding: 0.125rem 1.25rem;
display: flex;
align-items: center;
}
h1, h3, h4, h5 {
color: #222;
font-weight: 600;
margin: 0;
}
.table-summary th, .table-payments th, .table-transactions th {
background-color: var(--sepa-table-header);
color: #222;
font-weight: 600;
border: 1px solid var(--sepa-table-border);
padding: 0.3rem 0.5rem;
font-size: 0.85rem;
}
.table-summary td, .table-payments td, .table-transactions td {
padding: 0.3rem 0.5rem;
font-size: 0.85rem;
vertical-align: middle;
}
.table-summary td, .table-payments td, .table-transactions td {
background-color: #fff;
border: 1px solid var(--sepa-table-border);
}
.table-payments thead th, .table-transactions thead th {
background-color: var(--sepa-table-header);
color: #222;
border: 1px solid var(--sepa-table-border);
}
.table-payments tbody tr:nth-child(odd), .table-transactions tbody tr:nth-child(odd) {
background-color: #fff;
}
.table-payments tbody tr:nth-child(even) {
background-color: var(--sepa-grey);
}
.table-payments td, .table-payments th {
border: 1px solid var(--sepa-table-border);
}
.details-section table th {
background-color: var(--sepa-table-header);
color: #222;
border: 1px solid var(--sepa-table-border);
}
.details-section table td {
background-color: #fff;
border: 1px solid var(--sepa-table-border);
}
.btn-primary {
background: var(--sepa-blue);
border: none;
color: #fff;
font-weight: 600;
}
.btn-primary:hover, .btn-primary:focus {
background: #007acc;
}
.btn-success {
background: var(--sepa-green);
border: none;
color: #fff;
font-weight: 600;
}
.btn-success:hover, .btn-success:focus {
background: #388e3c;
}
input, textarea#xmlContent {
font-family: 'Courier New', monospace;
font-size: 0.85rem;
border: 1px solid var(--sepa-grey-dark);
border-radius: 4px;
background: #fff;
}
label {
font-weight: 500;
color: #222;
}
.card {
border: none;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
#validationResults {
min-height: 2.5rem; /* compact */
min-height: 100px;
padding: 1rem;
border-radius: 0.5rem;
}
.valid {
color: #198754;
}
.invalid {
color: #dc3545;
}
.warning {
color: #ffc107;
}
.validation-error {
background-color: #f8d7da;
border-left: 4px solid #dc3545;
padding: 0.75rem 1rem;
margin: 0.75rem 0;
border-radius: 0 0.5rem 0.5rem 0;
display: flex;
align-items: center;
gap: 0.5rem;
font-weight: 600;
}
.validation-success {
background-color: #d1e7dd;
border-left: 4px solid #198754;
padding: 0.75rem 1rem;
margin: 0.75rem 0;
border-radius: 0 0.5rem 0.5rem 0;
display: flex;
align-items: center;
gap: 0.5rem;
font-weight: 600;
}