-
Notifications
You must be signed in to change notification settings - Fork 30
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 #107 from Yaser-123/main
Terms and conditions and Licensing and integrating footer, navbar, scroll to top button, chatbot from the other pages for consistency across all the pages
- Loading branch information
Showing
5 changed files
with
789 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
|
||
|
||
header { | ||
background-color: #4CAF50; | ||
color: #fff; | ||
padding: 1rem 0; | ||
} | ||
|
||
nav { | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
max-width: 100%; | ||
margin: 0 auto; | ||
padding: 0 1rem; | ||
} | ||
|
||
.logo { | ||
font-size: 1.5rem; | ||
font-weight: 700; | ||
} | ||
|
||
.nav-links { | ||
list-style: none; | ||
display: flex; | ||
gap: 1rem; | ||
} | ||
|
||
.nav-links li { | ||
padding: 0.5rem 1rem; | ||
} | ||
|
||
.nav-links a { | ||
text-decoration: none; | ||
color: #fff; | ||
font-weight: 500; | ||
} | ||
|
||
.nav-links a.active { | ||
background-color: #388E3C; | ||
border-radius: 5px; | ||
} | ||
|
||
main { | ||
max-width: 1200px; | ||
margin: 2rem auto; | ||
padding: 0 1rem; | ||
} | ||
|
||
.license-section { | ||
background-color: #fff; | ||
padding: 2rem; | ||
border-radius: 8px; | ||
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); | ||
} | ||
|
||
.license-section h1 { | ||
margin-top: 0; | ||
} | ||
|
||
footer { | ||
background-color: #333; | ||
color: #fff; | ||
text-align: center; | ||
padding: 1rem 0; | ||
margin-top: 2rem; | ||
} |
Oops, something went wrong.