-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1688 from Ansanjohny/dev
Feat:PathFinder
- Loading branch information
Showing
4 changed files
with
440 additions
and
2 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
114 changes: 114 additions & 0 deletions
114
src/modules/Common/Authentication/pages/Onboarding/PathFinder/PathFinder.module.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,114 @@ | ||
.pathFinderContainer { | ||
width: 80%; | ||
margin: 0 auto; | ||
padding: 20px; | ||
background-color: #f9f9f9; | ||
border-radius: 8px; | ||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
.pathFinderContainer h1 { | ||
text-align: center; | ||
font-size: 2rem; | ||
margin-bottom: 20px; | ||
} | ||
|
||
.pathFinderContainer p { | ||
font-size: 1rem; | ||
margin-bottom: 20px; | ||
} | ||
|
||
.pathFinderContainer .question-box { | ||
padding: 20px; | ||
background-color: #fff; | ||
border-radius: 8px; | ||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); | ||
} | ||
|
||
.pathFinderContainer .question-no { | ||
font-weight: bold; | ||
color: #333; | ||
} | ||
|
||
.pathFinderContainer h4 { | ||
font-size: 1.25rem; | ||
margin-top: 20px; | ||
} | ||
|
||
.pathFinderContainer .options-table { | ||
width: 100%; | ||
margin-top: 10px; | ||
} | ||
|
||
.pathFinderContainer .options-table td { | ||
padding: 10px 0; | ||
font-size: 1rem; | ||
} | ||
|
||
.pathFinderContainer input[type="checkbox"] { | ||
margin-right: 10px; | ||
} | ||
|
||
.pathFinderContainer .button-container { | ||
display: flex; | ||
justify-content: space-between; /* Aligns buttons to left and right */ | ||
margin-top: 20px; | ||
} | ||
|
||
.pathFinderContainer button.prev { | ||
background-color: #ddd; | ||
color: #333; | ||
padding: 10px 20px; | ||
border: none; | ||
border-radius: 5px; | ||
} | ||
|
||
.pathFinderContainer button.prev:hover { | ||
background-color: #ccc; | ||
} | ||
|
||
.pathFinderContainer button.next { | ||
background-color: #007bff; | ||
color: #fff; | ||
padding: 10px 20px; | ||
border: none; | ||
border-radius: 5px; | ||
} | ||
|
||
.pathFinderContainer button.next:hover { | ||
background-color: #0056b3; | ||
} | ||
|
||
.pathFinderContainer .result-box { | ||
padding: 20px; | ||
background-color: #fff; | ||
border-radius: 8px; | ||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); | ||
} | ||
|
||
.pathFinderContainer .bold-text { | ||
font-weight: bold; | ||
font-size: 1.5rem; | ||
color: #007bff; | ||
} | ||
|
||
.pathFinderContainer .result-heading { | ||
margin-top: 20px; | ||
font-size: 1.25rem; | ||
font-weight: bold; | ||
} | ||
|
||
.pathFinderContainer hr { | ||
margin: 20px 0; | ||
border-top: 2px solid #007bff; | ||
} | ||
|
||
.pathFinderContainer strong { | ||
font-weight: bold; | ||
} | ||
|
||
.pathFinderContainer span { | ||
font-size: 1.25rem; | ||
margin-left: 10px; | ||
color: #333; | ||
} |
Oops, something went wrong.