-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSSS_Trial.html
503 lines (484 loc) · 13.9 KB
/
SSS_Trial.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
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
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Header Designn</title>
<style>
body,
html {
margin: 0;
padding: 0;
height: 100%;
}
.header {
display: flex;
align-items: center;
justify-content: space-between;
background-color: #000;
color: #fff;
padding: 10px 20px;
font-family: Arial, sans-serif;
}
.left-section {
display: flex;
align-items: center;
}
.logo {
margin-right: 10px;
}
.separator {
width: 1px;
height: 24px;
background-color: #fff;
margin-right: 10px;
}
.sales-hub {
display: flex;
align-items: center;
}
.sales-hub span {
margin-left: 5px;
background-color: #333;
padding: 5px 10px;
border-radius: 4px;
}
.right-section {
display: flex;
align-items: center;
gap: 20px;
}
.person,
.help-center,
.settings,
.menu {
display: flex;
align-items: center;
gap: 8px;
}
svg {
width: 30px;
height: 30px;
fill: white;
}
.icon-small svg {
width: 20px;
height: 20px;
}
.nav-section {
display: flex;
justify-content: center;
gap: 40px;
background-color: #f4f4f4;
padding: 15px 0;
font-family: Arial, sans-serif;
font-size: 16px;
}
.content {
display: flex;
height: calc(100vh - 120px);
}
.left-column {
flex: 2;
background-color: #e0e0e0;
padding: 20px;
}
.middle-column {
flex: 6;
background-color: #fff;
padding: 20px;
}
.right-column {
flex: 2;
background-color: #e0e0e0;
padding: 20px;
}
.search-section {
margin-bottom: 20px;
}
.search-section label {
display: flex;
align-items: center;
font-weight: bold;
margin-bottom: 5px;
position: relative;
gap: 5px; /* Add spacing between text and icon */
}
.search-section label svg {
width: 16px;
height: 16px;
fill: #333;
cursor: pointer;
}
.tooltip {
display: none;
position: absolute;
background-color: #333;
color: #fff;
padding: 5px 10px;
border-radius: 4px;
font-size: 12px;
top: 50%;
left: calc(
100% + 5px
); /* Positioned to the right of the icon with a 5px gap */
z-index: 10;
white-space: nowrap;
transform: translateY(
-50%
); /* Center the tooltip vertically relative to the icon */
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.search-section label:hover .tooltip {
display: block;
}
.search-section input {
width: 95%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
}
.input-with-icon {
position: relative;
display: flex;
align-items: center;
}
.input-with-icon input {
flex: 1;
padding-right: 30px; /* Adds space for the icon */
}
.input-with-icon svg {
position: absolute;
right: 10px;
width: 16px;
height: 16px;
cursor: pointer;
fill: #333;
}
.section-title {
font-size: 24px;
font-weight: bold;
margin-bottom: 20px;
text-align: left;
}
.sub-section {
margin-top: 20px;
padding: 15px;
background-color: #f9f9f9;
border: 1px solid #ccc;
border-radius: 8px;
}
.sub-section-heading {
font-size: 20px;
font-weight: bold;
margin-bottom: 10px;
text-align: left;
}
.sub-section-image {
width: 100%;
margin-top: 10px;
border-radius: 8px;
}
.sub-section-heading-alt {
font-size: 20px;
font-weight: bold;
color: #007BFF;
margin-bottom: 10px;
text-align: left;
}
.spacer {
height: 20px; /* Adjust this value for desired spacing */
}
.additional-image-wrapper {
display: flex;
justify-content: center; /* Centers the image horizontally */
margin-top: 20px; /* Adds space above the new image */
}
.additional-image {
max-width: 100%; /* Ensures the image is responsive */
border-radius: 8px; /* Optional: Adds rounded corners */
}
.centered-heading {
text-align: center; /* Centers the heading */
margin-top: 20px; /* Adds space between the image and the heading */
}
.clickable-link {
font-size: 18px;
color: #007BFF; /* Blue color for the link */
text-decoration: none; /* Removes the underline */
font-weight: bold;
}
.clickable-link:hover {
text-decoration: underline; /* Adds an underline when hovered */
}
.simple-heading {
text-align: center; /* Centers the heading */
margin-top: 10px; /* Adds space between the clickable link and the heading */
}
.simple-heading h3 {
font-size: 20px;
font-weight: normal; /* Simple, non-bold heading */
color: #333; /* Dark text color for the heading */
}
.table-container {
width: 100%; /* Full width of the container */
margin-top: 20px;
}
table {
width: 100%; /* Table takes the full width of the container */
border-collapse: collapse; /* Ensures borders between cells are merged */
}
td {
padding: 10px;
border: 1px solid #ccc; /* Border for the cells */
text-align: center; /* Centers the text in the cells */
}
.blue-bold-text {
color: blue; /* Blue text color */
font-weight: bold; /* Bold text */
}
.underlined-link {
text-decoration: underline;
color: blue; /* Blue color for the links */
}
td:first-child {
text-align: left; /* Left-align content of the first column */
}
td:first-child ul {
padding-left: 20px; /* Adds some space from the left side */
}
.subheading {
color: black;
font-weight: bold;
margin-bottom: 10px;
text-decoration: underline;
text-align: left;
}
td:nth-child(1) {
text-align: left; /* Left-align content */
vertical-align: top; /* Align content to the top */
}
/* Ensure the list items in column 2 are left-aligned */
td:nth-child(2) ul {
padding-left: 20px;
text-align: left;
}
td:nth-child(3) {
text-align: left; /* Left-align content */
vertical-align: top; /* Align content to the top */
}
td:nth-child(3) ul {
padding-left: 20px;
margin-top: 10px; /* Add some spacing after the subheading */
}
td:nth-child(4) {
text-align: left; /* Left-align content */
vertical-align: top; /* Align content to the top */
}
td:nth-child(4) ul {
padding-left: 20px;
text-align: left; /* Left-align the list items */
}
</style>
</head>
<body>
<div class="header">
<div class="left-section">
<div class="logo">
<svg viewBox="0 0 64 64">
<g>
<circle cx="32" cy="32" r="30"></circle>
</g>
</svg>
</div>
<div class="separator"></div>
<div class="sales-hub">Sales Hub<span>Production</span></div>
</div>
<div class="right-section">
<div class="person icon-small">
<svg viewBox="0 0 64 64">
<g>
<circle cx="32" cy="24" r="12"></circle>
<rect x="16" y="40" width="32" height="16"></rect>
</g>
</svg>
Rahul
</div>
<div class="help-center">Help Center</div>
<div class="settings icon-small">
<svg viewBox="0 0 64 64">
<g>
<circle cx="32" cy="32" r="28"></circle>
<circle cx="32" cy="32" r="10"></circle>
</g>
</svg>
Settings
</div>
<div class="menu icon-small">
<svg viewBox="0 0 64 64">
<g>
<rect x="12" y="20" width="40" height="8"></rect>
<rect x="12" y="36" width="40" height="8"></rect>
</g>
</svg>
</div>
</div>
</div>
<div class="nav-section">
<div>Home</div>
<div>Information Pages</div>
<div>Sales Library</div>
<div>Information Builder</div>
<div>PFR Hub</div>
</div>
<div class="content">
<div class="left-column">
<div class="search-section">
<label for="search-records">Sales Library Quick Search</label>
<div class="input-with-icon">
<input type="text" id="search-records" placeholder="Search for records by ID or keyword">
<svg viewBox="0 0 24 24">
<g>
<circle cx="12" cy="12" r="10" stroke="black" stroke-width="2" fill="none"/>
<text x="12" y="16" font-size="12" text-anchor="middle" fill="black">i</text>
</g>
</svg>
</div>
</div>
<div class="search-section">
<label for="recent-downloads"
>Recent Downloads
<svg viewBox="0 0 24 24">
<g>
<circle
cx="12"
cy="12"
r="10"
stroke="black"
stroke-width="2"
fill="none"
/>
<text
x="12"
y="16"
font-size="12"
text-anchor="middle"
fill="black"
>
i
</text>
</g>
</svg>
<span class="tooltip"
>Displays 10 documents that you have recently downloaded</span
>
</label>
<input
type="text"
id="recent-downloads"
placeholder="Displays documents you have downloaded"
/>
</div>
<div class="search-section">
<label for="favourites"
>Favourites
<svg viewBox="0 0 24 24">
<g>
<circle
cx="12"
cy="12"
r="10"
stroke="black"
stroke-width="2"
fill="none"
/>
<text
x="12"
y="16"
font-size="12"
text-anchor="middle"
fill="black"
>
i
</text>
</g>
</svg>
<span class="tooltip">Displays 10 documents in My Favourites</span>
</label>
<input
type="text"
id="favourites"
placeholder="Displays documents added to My Favourites"
/>
</div>
</div>
<div class="middle-column">
<div class="section-title">Testing Solutions</div>
<div class="sub-section">
<div class="sub-section-heading">Overview</div>
<p>Content for the overview section goes here.</p>
<div class="sub-section-heading-alt">Details</div>
<img src="https://via.placeholder.com/800x400" alt="Placeholder Image" class="sub-section-image">
<div class="spacer"></div>
<div class="sub-section-heading-alt">Details</div>
<img src="https://via.placeholder.com/800x400" alt="Placeholder Image" class="sub-section-image">
<div class="additional-image-wrapper">
<img src="https://via.placeholder.com/800x400" alt="Centered Image" class="additional-image">
</div>
<div class="centered-heading">
<a href="#" class="clickable-link">Click Here</a>
</div>
<div class="centered-heading">
<a href="#" class="clickable-link">Click Here</a>
</div>
<div class="simple-heading">
<h3>Simple Heading Below Link</h3>
</div>
<div class="table-container">
<table>
<!-- First Row with 4 columns, merging column 2 and column 3 -->
<tr>
<td class="blue-bold-text">Heading 1</td>
<td class="blue-bold-text" colspan="2">Heading 2 & 3</td>
<td class="blue-bold-text">Heading 4</td>
</tr>
<!-- Second Row with 4 columns -->
<tr>
<td>
<ul>
<li><a href="#" class="underlined-link">Link 1</a></li>
<li><a href="#" class="underlined-link">Link 2</a></li>
<li><a href="#" class="underlined-link">Link 3</a></li>
</ul>
</td>
<td>
<div class="subheading">Subheading 2</div>
<ul>
<li><a href="#" class="underlined-link">Link A</a></li>
<li><a href="#" class="underlined-link">Link B</a></li>
<li><a href="#" class="underlined-link">Link C</a></li>
<li><a href="#" class="underlined-link">Link D</a></li>
</ul>
</td>
<td>
<div class="subheading">Important Text</div>
<ul>
<li>Point 1</li>
<li>Point 2</li>
</ul>
</td>
<td>
<ul>
<li><a href="#" class="underlined-link">Final Link 1</a></li>
<li><a href="#" class="underlined-link">Final Link 2</a></li>
</ul>
</td>
</tr>
</table>
</div>
</div>
</div>
<div class="right-column">Right Column</div>
</div>
</body>
</html>