forked from apu52/Travel_Website
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enhanced the visual design of the thankyou.html page to create a more…
… engaging user experience following feedback submission. Improve Visual Appeal of thankyou.html Page to Enhance User Experience Post-Feedback Submission
- Loading branch information
1 parent
44acf84
commit 9ecb373
Showing
2 changed files
with
33 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
body { | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 100vh; | ||
margin: 0; | ||
background: linear-gradient(to right, #8e2de2, #4a00e0); | ||
font-family: 'Roboto', sans-serif; | ||
} | ||
|
||
.container { | ||
text-align: center; | ||
padding: 20px; | ||
background-color: #fff; | ||
border-radius: 10px; | ||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); | ||
max-width: 400px; | ||
width: 90%; | ||
} | ||
|
||
.container:hover { | ||
transform: scale(1.05); | ||
transition: transform 0.3s ease; | ||
} | ||
|
||
h2 { | ||
color: #333; | ||
font-family: Arial, sans-serif; | ||
} |
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