Skip to content

Commit

Permalink
Create a new documentation website PalisadoesFoundation#2678
Browse files Browse the repository at this point in the history
  • Loading branch information
Mamatha1718 committed Dec 29, 2024
1 parent 0b22a2e commit 370f21d
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
43 changes: 43 additions & 0 deletions src/css/custom.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
/* Global background and text color */

:root {
--primary-color: #004080;
--secondary-color: #007acc;
--background-light: #f8f9fa;
--background-dark: #1a1a1a;
--text-light: #333;
--text-dark: #ddd;
}


/* Light mode styling */

body {
background-color: var(--background-light);
color: var(--text-light);
}


/* Dark mode styling */

body.dark-mode {
background-color: var(--background-dark);
color: var(--text-dark);
}


/* Navbar styles */

.navbar {
background-color: var(--primary-color);
padding: 1rem;
}

.navbar a {
color: white;
text-decoration: none;
}

.navbar a:hover {
text-decoration: underline;
}
1 change: 1 addition & 0 deletions talawa-docs
Submodule talawa-docs added at a91636

0 comments on commit 370f21d

Please sign in to comment.