-
Notifications
You must be signed in to change notification settings - Fork 338
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 #1937 from imsudiptaa/sudi
FEATURE ENHANCEMENT: Family Vacation Itenerary UI Enhancement
- Loading branch information
Showing
10 changed files
with
161 additions
and
25 deletions.
There are no files selected for viewing
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,94 @@ | ||
@import url('https://fonts.googleapis.com/css2?family=poppins:wght@300;400;500;600;700;800;900&display=swap'); | ||
* { | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
font-family: 'Poppins', sans-serif; | ||
} | ||
body { | ||
background: #f9f9f9; | ||
min-height: 100vh; | ||
overflow-x: hidden; | ||
} | ||
header { | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
padding: 30px 100px; | ||
display: flex; | ||
justify-content: flex-start; | ||
align-items: center; | ||
z-index: 100; | ||
} | ||
.logo { | ||
font-size: 2em; | ||
font-weight: 600; | ||
color: #359381; | ||
pointer-events: none; | ||
margin-right: 100px; | ||
} | ||
.navigation a { | ||
text-decoration: none; | ||
color: #359381; | ||
padding: 6px 15px; | ||
border-radius: 20px; | ||
margin: 0 10px; | ||
font-weight: 600; | ||
} | ||
.navigation a:hover, | ||
.navigation a.active { | ||
background: #359381; | ||
color: #fff; | ||
} | ||
.parallax { | ||
position: relative; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100vh; | ||
overflow: hidden; | ||
} | ||
#text { | ||
position: absolute; | ||
font-size: 5em; | ||
font-weight: 600; | ||
color: #fff; | ||
text-shadow: 2px 2px 4px rgba(0, 0, 0, .2); | ||
/* margin-top: 250px; */ | ||
} | ||
.parallax img { | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
pointer-events: none; | ||
} | ||
.container-fluid { | ||
position: relative; | ||
background: #003329; | ||
padding: 100px; | ||
} | ||
h5 { | ||
font-weight: 600; | ||
} | ||
.form-select{ | ||
background-color: #F6D8CB; | ||
} | ||
li { | ||
color: #003329; | ||
font-weight: 600; | ||
} | ||
span { | ||
color: blueviolet; | ||
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; | ||
} | ||
.form-range { | ||
background-color: #028476; | ||
border-radius: 12px; | ||
} | ||
.form-label{ | ||
color:#0C1446; | ||
font-size: large; | ||
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; | ||
} |