|
|
(54 intermediate revisions by the same user not shown) |
Line 1: |
Line 1: |
| /* Change the background color of the entire page */
| |
| body {
| |
| background-color: #222222; /* Light gray background */
| |
| }
| |
|
| |
|
| /* Optionally, change the background color of the content area */
| |
| #content {
| |
| background-color: #333333; /* White background */
| |
| }
| |
|
| |
| /* You can also target other specific elements as needed */
| |
| .vector-menu-content {
| |
| background-color: #222222; /* Adjusting background for menus */
| |
| }
| |
|
| |
| /* Change the text color of the content area */
| |
| #content {
| |
| color: #FFFFEE; /* off white */
| |
| }
| |
|
| |
| /* Change the text color of headers */
| |
| h1, h2, h3, h4, h5, h6 {
| |
| color: #FFFFEE; /* off white */
| |
| }
| |
|
| |
| /* Change the text color of links */
| |
| a {
| |
| color: #BC813B; /* Blue links */
| |
| }
| |