Skip to content

Commit 29258af

Browse files
Merge branch 'main' into revert-1933-main
2 parents 5ec13b7 + 7616ea0 commit 29258af

21 files changed

+1756
-2017
lines changed

ContactUs.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -367,12 +367,12 @@ <h3 class="join">Register to join us....</h3>
367367
body {
368368
font-family: Arial, sans-serif;
369369
background-color: #f4f4f4;
370-
margin: 10px;
370+
margin: 0;
371371
padding: 20px;
372372
}
373373
.container {
374374
max-width: 600px;
375-
margin: 40px auto;
375+
margin: 0 auto;
376376
background: #fff;
377377
padding: 20px;
378378
border-radius: 10px;

Finveda/Finveda/package-lock.json

Lines changed: 0 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Finveda/Finveda/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
"preview": "vite preview"
1111
},
1212
"dependencies": {
13-
"finveda": "file:",
1413
"react": "^18.2.0",
1514
"react-dom": "^18.2.0"
1615
},

about.html

Lines changed: 54 additions & 150 deletions
Original file line numberDiff line numberDiff line change
@@ -566,9 +566,9 @@ <h4>Our Team</h4>
566566
/* Paragraph styling */
567567
p {
568568
margin-top: 10px;
569-
color: #f0ebeb;
569+
color: #f0ebeb; /* Softer text color */
570570
line-height: 1.5;
571-
text-align: center;
571+
text-align: center; /* Center paragraph text */
572572
}
573573

574574
/* Shadows inside the cards */
@@ -596,153 +596,49 @@ <h4>Our Team</h4>
596596
}
597597

598598
</style>
599-
<div class="blog-content back">
600-
<div class="good-card">
601-
<div class="good-card1">
602-
<div class="white-card">
603-
Wanna learn how to grow your money to become rich? We have made becoming a stock market Guru easy with our AI powered finance advisor - Arth Sathi 🤵🏻
604-
<button class="learn-more">Learn More</button>
605-
</div>
606-
<div class="color-card green"></div>
607-
<div class="shadow"></div>
608-
</div>
609-
<div class="good-card2">
610-
<div class="round1"></div>
611-
<div class="round2"></div>
612-
<div class="white-card">
613-
FinVeda trends fetches live market figures, ensuring users access the most up-to-date information instantly. Be it stock prices, currency rates, or commodity values.
614-
<button class="learn-more">Learn More</button>
615-
</div>
616-
<div class="color-card orange"></div>
617-
<div class="shadow"></div>
618-
</div>
619-
<div class="good-card3">
620-
<div class="white-card">
621-
FinVeda tools provide a range of calculators like Mutual Fund Investment tool, EMI calculator, Insurance calculator, Savings Goods etc which would make your life easy
622-
<button class="learn-more">Learn More</button>
623-
</div>
624-
<div class="color-card purple"></div>
625-
<div class="shadow"></div>
626-
</div>
627-
</div>
628-
<img style="position: absolute; top: 500px; left:-120px; mix-blend-mode: multiply;" src="./assets/images/contributors.jpeg" alt="photo">
629-
</div>
630-
631-
632-
<style>
633-
.white-card {
634-
position: relative; /* Make it relative to position children */
635-
display: flex; /* Use flexbox for centering */
636-
flex-direction: column; /* Stack items vertically */
637-
justify-content: space-between; /* Space between items */
638-
align-items: center; /* Center align items horizontally */
639-
}
640-
641-
.learn-more {
642-
margin-top: 20px; /* Space above the button */
643-
padding: 12px 25px; /* Padding inside the button */
644-
border: none; /* No border */
645-
border-radius: 5px; /* Rounded corners */
646-
background: linear-gradient (45deg, #252627, #e1e8ee);/* Gradient background */
647-
color: rgb(10, 10, 10); /* Text color */
648-
font-size: 16px; /* Font size */
649-
cursor: pointer; /* Pointer on hover */
650-
transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s; /* Transition for hover effects */
651-
box-shadow: 0 4px 10px rgba(0, 123, 255, 0.4); /* Shadow for depth */
652-
}
653-
654-
/* Hover effects for the button */
655-
.learn-more:hover {
656-
background: linear-gradient(45deg, #007BFF, #0056b3); /* Reverse gradient on hover */
657-
transform: scale(1.05); /* Slightly enlarge the button */
658-
box-shadow: 0 8px 15px rgba(0, 123, 255, 0.6); /* Darker shadow on hover */
659-
}
660-
661-
/* Optional: Focus effects for accessibility */
662-
.learn-more:focus {
663-
outline: none; /* Remove default outline */
664-
box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.5); /* Add custom focus ring */
665-
}
666-
667-
668-
/* Container for blog content */
669-
.blog-content {
670-
position: relative;
671-
padding: 20px;
672-
}
673-
674-
/* General styles for all cards */
675-
.white-card, .color-card {
676-
height: 300px; /* Set a fixed height for white cards */
677-
width: 80%;
678-
text-align: justify;
679-
padding: 20px; /* Added padding for all cards */
680-
border-radius: 10px;
681-
border: 2px solid rgb(185, 198, 44); /* White border for all cards */
682-
transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s; /* Transition for hover effects */
683-
cursor: pointer;
684-
}
685-
686-
/* Hover effects for cards */
687-
.white-card:hover, .color-card:hover {
688-
transform: translateY(-10px);
689-
box-shadow: 0 8px 15px rgba(255, 255, 255, 0.5); /* Added a white glow effect on hover */
690-
}
691-
692-
/* Additional styling for color cards */
693-
.color-card {
694-
height: 400px; /* Set a fixed height for color cards */
695-
position: relative;
696-
transition: box-shadow 0.4s, transform 0.4s; /* Transition for color card */
697-
}
698-
699-
.color-card:hover {
700-
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Shadow on hover for color card */
701-
transform: translateY(-10px); /* Slight hover lift */
702-
}
703-
704-
/* Background colors for different color cards */
705-
.green {
706-
background: rgb(86, 255, 213);
707-
}
708-
709-
.orange {
710-
background-color: #ff9071;
711-
}
599+
<div class="blog-content back">
600+
<div class="good-card">
601+
<div class="good-card1">
602+
<div class="white-card">
603+
Wanna learn how to grow your money to become rich? We have made becoming a stock market Guru easy with our AI
604+
powered finance advisor - Arth Sathi 🤵🏻
712605

713-
.purple {
714-
background: rgb(246, 142, 255);
715-
}
606+
</div>
607+
<div class="color-card green">
716608

717-
/* Padding for paragraphs inside cards */
718-
.white-card p, .color-card p {
719-
padding-top: 50px;
720-
721-
}
609+
</div>
610+
<div class="shadow"></div>
611+
</div>
612+
<div class="good-card2">
613+
<div class="round1">
722614

723-
/* Shadow and round elements */
724-
.shadow {
725-
height: 20px;
726-
width: 250px;
727-
border-radius: 50%;
728-
background: rgb(223, 223, 223);
729-
margin-top: -300px;
730-
margin-left: 2%;
731-
}
615+
</div>
616+
<div class="round2">
732617

733-
.round1, .round2 {
734-
height: 120px;
735-
width: 120px;
736-
margin-left: 25%;
737-
border-radius: 50%;
738-
border: 2px solid saddlebrown;
739-
margin-top: -50px;
740-
visibility: hidden;
741-
}
618+
</div>
619+
<div class="white-card">
620+
FinVeda trends fetches live market figures, ensuring users access the most up-to-date information instantly.
621+
Be it stock prices, currency rates, or commodity values.
622+
</div>
623+
<div class="color-card orange">
742624

743-
</style>
625+
</div>
626+
<div class="shadow"></div>
627+
</div>
628+
<div class="good-card3">
629+
<div class="white-card">
630+
FinVeda tools provide a range of calculators like Mutual Fund Investment tool,EMI calculator, Insurance
631+
calculator, Savings Goods etc which would make your life easy
632+
</div>
633+
<div class="color-card purple">
744634

635+
</div>
636+
<div class="shadow"></div>
637+
</div>
638+
</div>
745639

640+
<img style="position: absolute; top: 500px; left:-120px; mix-blend-mode: multiply;" src="./assets/images/contributors.jpeg" alt="photo">
641+
</div>
746642
<section class="contributors">
747643
<h2>Our Contributors</h2>
748644
<div class="contributor-cards" id="contributor-cards">
@@ -757,11 +653,19 @@ <h2>Our Contributors</h2>
757653

758654

759655
/* Parent element styling */
656+
.contributors {
657+
background: linear-gradient(135deg, #ebb074, #acb6e5);
658+
padding: 50px 20px;
659+
text-align: center;
660+
border-radius: 12px;
661+
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
662+
}
760663

761664
.contributors h2 {
762665
font-weight: bolder;
666+
text-decoration:underline;
763667
font-size: 2.5rem;
764-
color: #fff;
668+
color: #d6e2e2;
765669
margin-bottom: 40px;
766670
font-weight: 700;
767671
text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
@@ -905,20 +809,21 @@ <h2>Our Contributors</h2>
905809

906810
/* Card styling with gradient background */
907811
.contributor-member {
908-
background:#c6caeb; /* Gradient background */
812+
background: linear-gradient(135deg, #74d5eb, #acb6e5); /* Gradient background */
909813
border-radius: 12px; /* Rounded corners */
910814
padding: 20px;
911815
box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); /* Soft shadow */
912-
transition: all 0.4s ease;
816+
transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.4s ease;
913817
cursor: pointer;
914818
overflow: hidden;
915819
position: relative;
916820
}
917821

918822
/* Hover effect */
919823
.contributor-member:hover {
824+
transform: translateY(-10px); /* Lifting effect */
920825
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); /* Deeper shadow */
921-
background: #fffaf0; /* Gradient change on hover */
826+
background: linear-gradient(145deg, #89fffd, #7af1e5); /* Gradient change on hover */
922827
}
923828

924829
/* Image styling inside the card */
@@ -932,7 +837,7 @@ <h2>Our Contributors</h2>
932837

933838
/* Text and button styling */
934839
.contributor-member h3 {
935-
font-size: 1.3rem;
840+
font-size: 1.5rem;
936841
margin: 10px 0;
937842
color: #333;
938843
transition: color 0.3s ease;
@@ -945,7 +850,7 @@ <h2>Our Contributors</h2>
945850
}
946851

947852
.contributor-member button {
948-
background-color:#737ba5;
853+
background-color: #34d185;
949854
color: white;
950855
border: none;
951856
padding: 10px 15px;
@@ -955,8 +860,7 @@ <h2>Our Contributors</h2>
955860
}
956861

957862
.contributor-member button:hover {
958-
background-color: #c6caeb;
959-
color: black; /* Darker button color on hover */
863+
background-color: #2fa671; /* Darker button color on hover */
960864
}
961865
/* Parent element with glowing, rotating border */
962866
.contributors {

assets/css/about.css

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ body.dark-mode {
362362
.contributors {
363363
width: 90%;
364364
margin: 0 auto;
365-
background: linear-gradient(135deg, #353a5f,#9ebaf3 60%,#353a5f 100%);
365+
background: linear-gradient(135deg, #112d60 20%,#b6c0c5);
366366
border-radius: 10px;
367367
padding: 20px;
368368
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
@@ -394,7 +394,7 @@ body.dark-mode {
394394
}
395395

396396
.contributor-member:hover {
397-
scale: 1.06;
397+
scale: 0.95;
398398
background: linear-gradient(135deg,#b5b2b8,#3cc3de);
399399
box-shadow: 0 8px 12px #2e3061;
400400
}
@@ -468,10 +468,9 @@ body.dark-mode {
468468
}
469469

470470
.pagination button.active {
471-
background-color: white;
471+
background-color: transparent;
472472
text-decoration: underline;
473473
font-size: x-large;
474-
color: black;
475474
}
476475

477476
/* General styles for the about-us-block divs */

assets/css/style.css

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,7 @@ p {
711711

712712
.navbar-area {
713713
position: absolute;
714-
top: 0px;
714+
top: 0;
715715
left: 0;
716716
width: 100%;
717717
z-index: 99;
@@ -744,19 +744,16 @@ p {
744744
-ms-transition: background-color 0.3s ease-in-out;
745745
-o-transition: background-color 0.3s ease-in-out;
746746
}
747-
/* .navbar-nav {
748-
background-color: saddlebrown;
747+
.navbar-nav {main
748+
background-color: saddlebrown;
749749
list-style-type: none;
750750
margin: 0 1rem;
751751
padding: 0;
752752
overflow: hidden;
753-
} */
753+
}
754754

755755
.nav-item {
756756
float: left;
757-
margin: 17px;
758-
width: 69px;
759-
padding: 10px;
760757
}
761758

762759

@@ -768,7 +765,6 @@ p {
768765
text-decoration: none;
769766
position: relative;
770767
cursor: pointer;
771-
772768
}
773769

774770
.nav-item a::after {

assets/images/quiz.png

-221 KB
Binary file not shown.

0 commit comments

Comments
 (0)