-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
692 lines (632 loc) · 14.8 KB
/
style.css
File metadata and controls
692 lines (632 loc) · 14.8 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
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
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}
body {
background: #eef2f5;
color: #2a2a2a;
line-height: 1.7;
overflow-x: hidden;
}
nav {
background: #0f1c33;
padding: 1.5rem 3rem;
display: flex;
justify-content: space-between;
align-items: center;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
nav img {
width: 40px;
height: 40px;
}
nav h1 {
color: #fff;
font-size: 1.7rem;
margin-left: 1rem;
display: inline;
font-weight: 600;
}
nav ul {
list-style: none;
display: flex;
gap: 2.5rem;
}
nav ul li a {
color: #d9e1e8;
text-decoration: none;
font-weight: 500;
transition: color 0.3s ease;
}
nav ul li a:hover {
color: #00a3cc;
}
nav > div {
display: flex;
align-items: center;
}
.dropdown {
position: relative;
}
.dropdown-content {
display: none;
position: absolute;
background: #0f1c33;
min-width: 200px;
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
z-index: 1;
border-radius: 6px;
top: 100%;
left: 0;
}
.dropdown-content a {
color: #d9e1e8;
padding: 12px 16px;
display: block;
text-decoration: none;
}
.dropdown-content a:hover {
background: #1a2a44;
color: #00a3cc;
}
.dropdown:hover .dropdown-content {
display: block;
}
header {
background: linear-gradient(135deg, #0f1c33 30%, #007ea7 100%);
color: #fff;
text-align: center;
padding: 7rem 3rem 5rem;
margin-top: 70px; /* Adjust based on nav height */
}
header h1 {
font-size: 2.9rem;
margin-bottom: 0.75rem;
font-weight: 700;
letter-spacing: 0.5px;
}
header h2 {
font-size: 1.5rem;
font-weight: 300;
opacity: 0.9;
margin-bottom: 2.5rem;
}
.cta-button {
display: inline-block;
background: #e63946;
color: #fff;
padding: 1rem 2.5rem;
border-radius: 6px;
text-decoration: none;
font-weight: 600;
margin: 0.5rem;
transition: background 0.3s ease, transform 0.2s ease;
position: relative; /* For potential ::after elements if used as stretched link anchor */
z-index: 2; /* Ensure button text is above stretched link pseudo-element */
}
.cta-button:hover {
background: #f25f5c;
transform: translateY(-2px);
}
.secondary-cta {
background: transparent;
color: #fff;
border: 2px solid #fff;
}
.secondary-cta:hover {
background: rgba(255, 255, 255, 0.1);
border-color: #00a3cc;
transform: translateY(-2px);
}
section {
padding: 5rem 3rem;
text-align: center;
}
#intro, #license, #license-faq, #community, #capabilities, #solutions {
background: #fff;
box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
margin: 3rem auto;
max-width: 950px;
padding: 3.5rem;
border-radius: 10px;
}
#intro h2, #license h2, #license-faq h2, #capabilities h2, #community h2, #solutions h2 {
color: #0f1c33;
font-size: 2.3rem;
margin-bottom: 1.75rem;
font-weight: 600;
}
#intro p, #license p, #capabilities p, #community p, #solutions p {
font-size: 1.1rem;
margin-bottom: 1.5rem;
color: #4a4a4a;
}
#intro a, #license a, #license-faq a, #capabilities a, #community a, #solutions a {
color: #007ea7;
text-decoration: none;
font-weight: 600;
transition: color 0.3s ease;
}
#intro a:hover, #license a:hover, #license-faq a:hover, #capabilities a:hover, #community a:hover, #solutions a:hover {
color: #00a3cc;
}
#features {
background: #eef2f5;
}
#features h2 {
font-size: 2.3rem;
margin-bottom: 3.5rem;
color: #0f1c33;
font-weight: 600;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
max-width: 1200px;
margin: 0 auto;
}
.card {
background: #fff;
padding: 2rem;
border-radius: 10px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
transition: transform 0.3s ease, box-shadow 0.3s ease;
position: relative; /* For stretched link */
}
.card:hover {
transform: translateY(-8px);
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
/* Stretched link for cards in a .grid that contain a .cta-button */
.grid .card > a.cta-button::after {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1; /* Place it above other card content for clicks, but below button text */
}
.card h3 {
color: #0f1c33;
margin-bottom: 0.8rem;
font-size: 1.35rem;
font-weight: 600;
}
.card p {
color: #5a5a5a;
font-size: 1rem;
}
#capabilities figure {
margin: 0;
text-align: center;
}
#capabilities img {
max-width: 100%;
height: auto;
border-radius: 6px;
margin-bottom: 0.5rem;
}
#capabilities figcaption {
font-size: 0.95rem;
color: #4a4a4a;
font-weight: 500;
}
#license-faq {
text-align: left;
}
#license-faq dl {
margin-top: 1.5rem;
}
#license-faq dt {
font-size: 1.15rem;
font-weight: 600;
color: #0f1c33;
margin-bottom: 0.75rem;
padding-left: 1rem;
border-left: 4px solid #007ea7;
}
#license-faq dd {
font-size: 1rem;
color: #4a4a4a;
margin-bottom: 2rem;
padding: 1rem;
background: #f9fafb;
border-radius: 6px;
line-height: 1.6;
}
footer {
background: #0f1c33;
color: #d9e1e8;
padding: 3rem 2rem;
text-align: center;
}
.footer-links {
margin-bottom: 1.5rem;
}
.footer-links a {
color: #00a3cc;
text-decoration: none;
margin: 0 1.5rem;
font-weight: 500;
transition: color 0.3s ease;
}
.footer-links a:hover {
color: #fff;
}
/* DownloadNet Footer Section Style */
.downloadnet-footer {
background-color: #ffd700; /* Gold yellow */
color: #0f1c33; /* Dark blue text for contrast */
padding: 1.5rem 2rem;
text-align: center;
}
.downloadnet-footer p {
margin: 0;
font-size: 1.1rem;
}
.downloadnet-footer a {
color: #0f1c33; /* Dark text on yellow */
font-weight: 600;
text-decoration: none;
transition: color 0.3s ease;
}
.downloadnet-footer a:hover {
color: #007ea7; /* Link hover color from main theme */
text-decoration: underline;
}
@media screen and (max-width: 600px) {
nav {
padding: 1rem;
overflow-x: auto;
}
nav > div {
padding-right: 1.618em;
}
header {
padding: 5rem 1rem 3rem;
}
section {
padding: 3rem 1rem;
}
#intro, #license, #license-faq, #community, #capabilities, #solutions {
padding: 2rem;
}
.dropdown-content {
min-width: 150px;
}
}
#contact a.cta-button, section a.cta-button {
color: white;
}
/* Styles for .secondary-cta when inside a .card (which has a light background) */
.card .secondary-cta {
color: #007ea7; /* Theme blue for text */
border: 2px solid #007ea7; /* Theme blue for border */
background: transparent; /* Ensure it's transparent by default */
}
.card .secondary-cta:hover {
background: #007ea7; /* Fill with theme blue on hover */
color: #fff; /* White text for contrast on blue background */
border-color: #007ea7; /* Keep border color consistent on hover */
}
/* ============================================
SUBPAGE STYLES (Compliance, Solutions, etc.)
============================================ */
.subpage {
background: #eef2f5;
}
/* Navigation for subpages (reuse home-nav class) */
.home-nav {
background: #0f1c33;
padding: 1rem 2rem;
display: flex;
justify-content: space-between;
align-items: center;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.home-nav .brand {
display: flex;
align-items: center;
gap: 0.75rem;
}
.home-nav .brand span {
color: #fff;
font-size: 1.5rem;
font-weight: 600;
}
.home-nav img {
width: 40px;
height: 40px;
}
.home-nav ul {
list-style: none;
display: flex;
gap: 2rem;
}
.home-nav ul a {
color: #d9e1e8;
text-decoration: none;
font-weight: 500;
transition: color 0.3s ease;
}
.home-nav ul a:hover {
color: #00a3cc;
}
.nav-cta {
margin-left: 1rem;
}
/* CTA Buttons - Modern style */
.cta {
display: inline-block;
padding: 0.875rem 1.75rem;
font-weight: 600;
font-size: 1rem;
text-decoration: none;
border-radius: 6px;
transition: all 0.3s ease;
cursor: pointer;
border: 2px solid transparent;
}
.cta.primary {
background: #e63946;
color: #fff;
border-color: #e63946;
}
.cta.primary:hover {
background: #f25f5c;
border-color: #f25f5c;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}
.cta.secondary {
background: transparent;
color: #007ea7;
border-color: #007ea7;
}
.cta.secondary:hover {
background: #007ea7;
color: #fff;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 126, 167, 0.3);
}
.cta-row {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin-top: 1.5rem;
justify-content: center;
}
/* Subpage wrapper */
.sub-wrap {
max-width: 1000px;
margin: 0 auto;
padding: 2rem;
}
/* Subpage hero section */
.sub-hero {
background: linear-gradient(135deg, #0f1c33 30%, #007ea7 100%);
color: #fff;
padding: 3rem;
border-radius: 12px;
text-align: center;
margin-bottom: 2rem;
box-shadow: 0 8px 24px rgba(15, 28, 51, 0.2);
}
.sub-hero .kicker {
display: inline-block;
background: rgba(255, 255, 255, 0.15);
color: #00a3cc;
padding: 0.5rem 1rem;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.05em;
margin-bottom: 1rem;
}
.sub-hero h1 {
font-size: 2.25rem;
font-weight: 700;
margin-bottom: 1rem;
line-height: 1.2;
}
.sub-hero p {
font-size: 1.1rem;
opacity: 0.9;
max-width: 700px;
margin: 0 auto;
line-height: 1.6;
}
/* Panels for subpage content */
.panel {
background: #fff;
border-radius: 12px;
padding: 2.5rem;
margin-bottom: 1.5rem;
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.panel h2 {
color: #0f1c33;
font-size: 1.75rem;
font-weight: 600;
margin-bottom: 1.5rem;
text-align: center;
}
.panel p {
color: #4a4a4a;
font-size: 1.05rem;
line-height: 1.7;
text-align: center;
}
.panel ul {
list-style: none;
padding: 0;
max-width: 600px;
margin: 0 auto;
}
.panel ul li {
padding: 1rem 1rem 1rem 2.5rem;
position: relative;
color: #4a4a4a;
font-size: 1.05rem;
border-bottom: 1px solid #eef2f5;
}
.panel ul li:last-child {
border-bottom: none;
}
.panel ul li::before {
content: "✓";
position: absolute;
left: 0.5rem;
color: #007ea7;
font-weight: bold;
}
.panel .grid {
margin-top: 1rem;
}
.panel .card {
text-align: center;
padding: 1.75rem;
border: 1px solid #e8ecf0;
}
.panel .card strong {
display: block;
color: #0f1c33;
font-size: 1.2rem;
margin-bottom: 0.75rem;
}
.panel .card p {
font-size: 0.95rem;
margin: 0;
}
/* Stripe pricing panel */
.stripe-panel {
background: #f8fafc;
}
.stripe-panel stripe-pricing-table {
display: block;
margin-top: 1.5rem;
}
/* Meta text (small muted) */
.meta {
color: #6b7280;
font-size: 0.9rem;
margin-top: 1rem;
}
.panel a {
color: #007ea7;
text-decoration: none;
font-weight: 500;
}
.panel a:hover {
color: #00a3cc;
text-decoration: underline;
}
/* Home footer for subpages */
.home-footer {
background: #0f1c33;
color: #d9e1e8;
padding: 2.5rem 2rem;
text-align: center;
margin-top: 2rem;
}
.home-footer .footer-links {
margin-bottom: 1rem;
}
.home-footer .footer-links a {
color: #00a3cc;
text-decoration: none;
margin: 0 1rem;
font-weight: 500;
transition: color 0.3s ease;
}
.home-footer .footer-links a:hover {
color: #fff;
}
.home-footer p {
color: #8899a6;
font-size: 0.9rem;
margin: 0;
}
/* ============================================
MOBILE RESPONSIVE - Enhanced
============================================ */
@media screen and (max-width: 768px) {
.home-nav {
flex-wrap: wrap;
gap: 1rem;
padding: 1rem;
}
.home-nav ul {
order: 3;
width: 100%;
justify-content: center;
gap: 1rem;
flex-wrap: wrap;
font-size: 0.9rem;
}
.nav-cta {
margin-left: 0;
}
.sub-wrap {
padding: 1rem;
}
.sub-hero {
padding: 2rem 1.5rem;
}
.sub-hero h1 {
font-size: 1.75rem;
}
.sub-hero p {
font-size: 1rem;
}
.panel {
padding: 1.5rem;
}
.panel h2 {
font-size: 1.5rem;
}
.cta {
width: 100%;
text-align: center;
}
.cta-row {
flex-direction: column;
align-items: stretch;
}
.grid {
grid-template-columns: 1fr;
}
.home-footer .footer-links {
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.home-footer .footer-links a {
margin: 0;
}
}
@media screen and (max-width: 480px) {
header h1 {
font-size: 2rem;
}
header h2 {
font-size: 1.2rem;
}
.cta-button {
display: block;
margin: 0.5rem auto;
max-width: 280px;
}
}