jclyo1 commited on
Commit
9bfed02
1 Parent(s): fa843b5
static/images/li.svg ADDED
static/images/logo.png ADDED
static/index.html CHANGED
@@ -144,22 +144,14 @@
144
  />
145
  </div>
146
  <div class="output-container mt-5" style="display: none">
147
- <h3>Verification Output</h3>
148
  <div id="verification-output"></div>
149
 
150
- <h3>Certificates</h3>
151
  <div class="certificate" id="certificate-output">
152
- <p>
153
- Details about the certificate used for signing.<br />
154
- Truepic maintains the first and only purpose-built C2PA
155
- certificate authority.
156
- </p>
157
-
158
- <p>
159
- <strong style="font-weight: 600">Certificate chain</strong>
160
- </p>
161
  <ul id="certificate-list"></ul>
162
- <p><strong style="font-weight: 600">Details</strong></p>
163
  <div class="details">
164
  <strong>Basic info</strong>
165
  <div>
@@ -231,6 +223,10 @@
231
  </div>
232
  </div>
233
  </div>
 
 
 
 
234
  </div>
235
  <div class="col right-column">
236
  <div class="display-generate">
 
144
  />
145
  </div>
146
  <div class="output-container mt-5" style="display: none">
147
+ <h3 class="mt-4 mb-4">Verification Output</h3>
148
  <div id="verification-output"></div>
149
 
150
+ <h3 class="mt-4 pt-4 mb-4" id="certificates-h3">Certificates</h3>
151
  <div class="certificate" id="certificate-output">
152
+ <h4>Certificate chain</h4>
 
 
 
 
 
 
 
 
153
  <ul id="certificate-list"></ul>
154
+ <h4>Details</h4>
155
  <div class="details">
156
  <strong>Basic info</strong>
157
  <div>
 
223
  </div>
224
  </div>
225
  </div>
226
+ <div class="col mt-4 pt-4" id="logo">
227
+ <img src="images/logo.png" />
228
+ <p class="small mt-3 mb-5">This demo is a provisional version for demo purposes only.</p>
229
+ </div>
230
  </div>
231
  <div class="col right-column">
232
  <div class="display-generate">
static/style.css CHANGED
@@ -20,19 +20,37 @@ h1 {
20
 
21
  h2 {
22
  font-weight: 600;
23
- font-size: 16px;
24
  }
25
 
26
  h3 {
27
  font-weight: 600;
28
- font-size: 18px;
 
 
 
 
 
 
 
 
 
29
  }
30
 
31
  p {
32
  font-weight: 400;
33
  font-size: 16px;
34
  line-height: 24px;
35
- color: #56687A;
 
 
 
 
 
 
 
 
 
36
  }
37
 
38
  .badge.bg-secondary {
@@ -67,7 +85,7 @@ p {
67
  background: rgba(247, 249, 250, 1);
68
  display: flex;
69
  justify-content: center;
70
- height: 35rem;
71
  }
72
 
73
  .image-container img {
@@ -106,6 +124,7 @@ p {
106
  label {
107
  font-size: 14px;
108
  font-weight: 600;
 
109
  }
110
 
111
  label.form-check-label {
@@ -121,8 +140,8 @@ label.form-check-label {
121
  }
122
 
123
  img.thumbnail {
124
- width:100px;
125
- height:100px;
126
  }
127
 
128
  #original-image {
@@ -132,14 +151,15 @@ img.thumbnail {
132
  }
133
 
134
  #resultLabel {
135
- display:none;
136
  }
137
 
138
  .action-menu {
139
  display: none;
140
  }
141
 
142
- .action-menu button, .action-menu a.btn {
 
143
  width: 175px;
144
  }
145
 
@@ -155,14 +175,14 @@ img.thumbnail {
155
  }
156
 
157
  .alert-primary {
158
- border-color: #FEF3C7;
159
- background-color: rgba(254, 243, 199, 0.25);
160
-
161
  }
162
 
163
- .alert-primary h4, .alert-primary p {
 
164
  font-size: 14px;
165
- color: #1F2937;
166
  }
167
 
168
  .alert-primary h4 {
@@ -174,20 +194,19 @@ img.thumbnail {
174
  }
175
 
176
  .alert-secondary {
177
- border-color: #DDE9FF;
178
- background-color: #F4F8FF;
179
  }
180
 
181
  .alert-secondary p {
182
  font-size: 14px;
183
- color: #1F2937;
184
  }
185
 
186
-
187
  .how-it-works {
188
  margin-top: 3rem;
189
  font-size: 12px;
190
- color: #56687A;
191
  }
192
 
193
  .how-it-works strong {
@@ -200,14 +219,23 @@ img.thumbnail {
200
  background: #f7f9fa;
201
  border: 1px solid #d8dfe5;
202
  overflow-y: auto;
 
 
 
 
 
203
  }
204
 
205
  .certificate .details {
206
  color: rgba(86, 104, 122, 1);
207
  font-size: 12px;
208
  font-weight: 400;
209
- margin: 0;
210
  padding: 1rem;
 
 
 
 
 
211
  }
212
 
213
  .certificate .details > div {
@@ -230,7 +258,7 @@ img.thumbnail {
230
 
231
  .certificate #certificate-list {
232
  padding: 0;
233
- margin: 0 0 32px 0;
234
  border-bottom: 1px solid #d8dfe5;
235
  }
236
 
@@ -264,4 +292,12 @@ img.thumbnail {
264
 
265
  .alert#verifyResultDescription {
266
  margin-right: 2rem;
 
 
 
 
 
 
 
 
267
  }
 
20
 
21
  h2 {
22
  font-weight: 600;
23
+ font-size: 18px;
24
  }
25
 
26
  h3 {
27
  font-weight: 600;
28
+ font-size: 16px;
29
+ }
30
+
31
+ h4 {
32
+ font-weight: 600;
33
+ font-size: 14px;
34
+ }
35
+
36
+ .small {
37
+ font-size: 12px;
38
  }
39
 
40
  p {
41
  font-weight: 400;
42
  font-size: 16px;
43
  line-height: 24px;
44
+ color: #56687a;
45
+ }
46
+
47
+ select,
48
+ textarea {
49
+ resize: none;
50
+ }
51
+
52
+ .form-control:focus {
53
+ box-shadow: none;
54
  }
55
 
56
  .badge.bg-secondary {
 
85
  background: rgba(247, 249, 250, 1);
86
  display: flex;
87
  justify-content: center;
88
+ min-height: 512px;
89
  }
90
 
91
  .image-container img {
 
124
  label {
125
  font-size: 14px;
126
  font-weight: 600;
127
+ margin-bottom: .5rem;
128
  }
129
 
130
  label.form-check-label {
 
140
  }
141
 
142
  img.thumbnail {
143
+ width: 100px;
144
+ height: 100px;
145
  }
146
 
147
  #original-image {
 
151
  }
152
 
153
  #resultLabel {
154
+ display: none;
155
  }
156
 
157
  .action-menu {
158
  display: none;
159
  }
160
 
161
+ .action-menu button,
162
+ .action-menu a.btn {
163
  width: 175px;
164
  }
165
 
 
175
  }
176
 
177
  .alert-primary {
178
+ border-color: #fef3c7;
179
+ background-color: rgba(254, 243, 199, 0.25);
 
180
  }
181
 
182
+ .alert-primary h4,
183
+ .alert-primary p {
184
  font-size: 14px;
185
+ color: #1f2937;
186
  }
187
 
188
  .alert-primary h4 {
 
194
  }
195
 
196
  .alert-secondary {
197
+ border-color: #dde9ff;
198
+ background-color: #f4f8ff;
199
  }
200
 
201
  .alert-secondary p {
202
  font-size: 14px;
203
+ color: #1f2937;
204
  }
205
 
 
206
  .how-it-works {
207
  margin-top: 3rem;
208
  font-size: 12px;
209
+ color: #56687a;
210
  }
211
 
212
  .how-it-works strong {
 
219
  background: #f7f9fa;
220
  border: 1px solid #d8dfe5;
221
  overflow-y: auto;
222
+ margin-right: 1rem;
223
+ }
224
+
225
+ #certificates-h3 {
226
+ border-top: 1px solid rgba(227, 234, 240, 1);
227
  }
228
 
229
  .certificate .details {
230
  color: rgba(86, 104, 122, 1);
231
  font-size: 12px;
232
  font-weight: 400;
 
233
  padding: 1rem;
234
+ margin: 0 2rem 0 0;
235
+ height: 480px;
236
+ background: #f7f9fa;
237
+ border: 1px solid #d8dfe5;
238
+ overflow-y: auto;
239
  }
240
 
241
  .certificate .details > div {
 
258
 
259
  .certificate #certificate-list {
260
  padding: 0;
261
+ margin: 0 2rem 32px 0;
262
  border-bottom: 1px solid #d8dfe5;
263
  }
264
 
 
292
 
293
  .alert#verifyResultDescription {
294
  margin-right: 2rem;
295
+ }
296
+
297
+ #logo {
298
+ border-top: 1px solid rgba(227, 234, 240, 1);
299
+ }
300
+
301
+ #logo img {
302
+ width: 156px;
303
  }