-
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.
- Loading branch information
Showing
1 changed file
with
68 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,68 @@ | ||
/* Cascading stylesheet for the website */ | ||
|
||
/* Text inside these asterisks and slashes are comments for human */ | ||
|
||
a { | ||
color: blue; /* set the text color to blue here */ | ||
text-decoration: none; /* This means we do not want hyperlinks to be underlined */ | ||
} | ||
|
||
a:hover { | ||
color: red; /* set the text color to red here */ | ||
text-decoration: none; /* This means we do not want hyperlinks to be underlined */ | ||
} | ||
|
||
body { | ||
/* set the background color here */ | ||
background-color: beige; | ||
/* set the text color to black here */ | ||
color: black; | ||
/* set the font here */ | ||
font-family: Arial, Helvetica, sans-serif; | ||
/* set the text alignment here */ | ||
text-align: center; | ||
} | ||
|
||
footer { | ||
margin-top: 2rem; | ||
margin-bottom: 2rem; | ||
} | ||
|
||
h1 { | ||
margin-bottom: 0.5rem; | ||
margin-top: 3rem; | ||
} | ||
|
||
h2 { | ||
/* set the text color of to #075AAB here */ | ||
color: #075AAB; | ||
/* set both the bottom margin and top margin to 2.5rem here */ | ||
margin-top: 2.5rem; | ||
margin-bottom: 2.5rem; | ||
} | ||
|
||
h3 { | ||
margin-bottom: 0; | ||
margin-top: 2rem; | ||
} | ||
|
||
h4 { | ||
margin-bottom: 1rem; | ||
margin-top: 0.5rem; | ||
} | ||
|
||
h5 { | ||
margin-top: 0.5rem; | ||
} | ||
|
||
hr { | ||
margin-bottom: 3rem; | ||
margin-top: 3rem; | ||
} | ||
|
||
/* this controls how the bullet points in the resume page looks */ | ||
ul { | ||
display: table; | ||
margin: 0 auto; | ||
text-align: left; | ||
} |