-
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.
Merge pull request #5 from code4policy/about-us-styling
added styling for about us page
- Loading branch information
Showing
2 changed files
with
59 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
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,55 @@ | ||
/* General Styles */ | ||
body { | ||
font-family: 'Arial', sans-serif; | ||
margin: 0; | ||
padding: 0; | ||
background-color: #f5f5f5; /* Light grey background */ | ||
color: #333; | ||
} | ||
|
||
/* Header Logo and Title */ | ||
.header { | ||
background-color: #fff; /* White background for the logo area */ | ||
padding: 10px 20px; | ||
text-align: center; | ||
border-bottom: 2px solid #d3d3d3; | ||
} | ||
|
||
.header img { | ||
max-height: 50px; /* Adjust logo size */ | ||
margin-bottom: 10px; | ||
} | ||
|
||
.header h1 { | ||
font-size: 2.5em; | ||
color: #800000; /* Harvard maroon */ | ||
margin: 10px 0; | ||
} | ||
|
||
/* Member Section Styling */ | ||
.member { | ||
background: #fff; /* White background for each member */ | ||
border-radius: 8px; | ||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */ | ||
margin: 20px auto; | ||
padding: 20px; | ||
max-width: 600px; /* Center and limit width */ | ||
} | ||
|
||
.member h2 { | ||
color: #800000; /* Harvard maroon */ | ||
font-size: 1.8em; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.member p { | ||
font-size: 1em; | ||
line-height: 1.6; | ||
} | ||
|
||
/* Utility Classes */ | ||
.container { | ||
max-width: 1200px; | ||
margin: 0 auto; | ||
padding: 20px; | ||
} |