Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

a few special modifications #1

Open
wants to merge 4 commits into
base: upstream
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion resume.html
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ <h1>
<li><i class="fa fa-phone"></i> 800.000.0000</li>
</ul>
</div>
<div class="side-block" id="skills">
<div class="side-block skills">
<h1>
Skills
</h1>
Expand Down
36 changes: 31 additions & 5 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ body{
width: var(--page-width);
height: var(--page-height);
margin: 0;
font-family: "Open Sans", sans-serif;
font-family: "Open Sans", sans-serif;
font-weight: 300;
line-height: 1.3;
color: #444;
Expand Down Expand Up @@ -244,7 +244,7 @@ li{
}

.main-block:not(.concise) .details div{
margin: 0.18in 0 0.1in 0;
margin: 0.18in 0 0.1in 0;
}

.main-block:not(.concise) .blocks:last-child .details div{
Expand Down Expand Up @@ -325,7 +325,7 @@ li{
}

.side-block{
margin-top: 0.5in;
margin-top: 0.5in;
}

#contact ul{
Expand All @@ -341,11 +341,11 @@ li{
text-align: right;
}

#skills{
.skills{
line-height: 1.5;
}

#skills ul{
.skills ul{
margin: 0.05in 0 0.15in;
padding: 0;
}
Expand All @@ -367,3 +367,29 @@ li{
font-weight: 400;
font-style: normal;
}

/* make links functional for web,
* but not distracting for print
*/
a[href]{
text-decoration: none;
color: #444;
}
a[href]:hover{
text-decoration: underline;
}

/* make web version resemble printable page
*/
body{
background-color: grey;
}
body > *{
background-color: white;
}
#main{
height: var(--page-height);
}
#sidebar{
height: var(--page-height);
}