forked from PalisadoesFoundation/talawa
-
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.
Create a new documentation website PalisadoesFoundation#2678
- Loading branch information
1 parent
0b22a2e
commit 370f21d
Showing
2 changed files
with
44 additions
and
0 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,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; | ||
} |
Submodule talawa-docs
added at
a91636