Skip to content

Commit

Permalink
Merge pull request #107 from Yaser-123/main
Browse files Browse the repository at this point in the history
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
MastanSayyad authored Jul 14, 2024
2 parents eed146c + 496b215 commit c24d8ca
Show file tree
Hide file tree
Showing 5 changed files with 789 additions and 2 deletions.
67 changes: 67 additions & 0 deletions License.css
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;
}
Loading

0 comments on commit c24d8ca

Please sign in to comment.