visual adjustments

This commit is contained in:
Danny Berger
2013-03-10 23:13:48 -06:00
parent 60e40ebce1
commit 011bfb4915
6 changed files with 32 additions and 9 deletions

2
.gitignore vendored
View File

@@ -1 +1,3 @@
_layouts/private-*
_site
private

View File

@@ -1,6 +1,6 @@
</article>
<footer>
Thanks for visiting! This is a personal site &ndash; it reflects my own opinions and not those of my employers, past or present.<br />
Thanks for visiting<span class="print-only"> <a href="http://dpb587.me">dpb587.me</a></span>! This is a personal site &ndash; it reflects my own opinions and not those of my employers, past or present.<br />
This site is <a href="https://github.com/dpb587/dpb587.github.com">open-source</a>.
Unless noted, software code is licensed under <a href="http://opensource.org/licenses/mit-license.php">MIT License</a> and all other content under <a href="http://creativecommons.org/licenses/by/3.0/">CC-BY</a>.
</footer>

View File

@@ -37,21 +37,26 @@
})();
</script>
</head>
<body class="layout-{{ page.layout }}">
<body class="layout-{{ page.layout }}{% if page.body_class %} {{ page.body_class }}{% endif %}">
<header>
<div class="timeline">
<a href="/"><img alt="DPB" src="http://www.gravatar.com/avatar/5544fe6a05400da5a8957ff29dd6718c.png?s=128" /></a>
</div>
<ul>
<ul class="screen-only">
<li><a href="/blog/">blog</a></li>
<li><a href="/projects.html">projects</a></li>
<li><a href="/about.html">about</a></li>
</ul>
{% if page.print_blurb %}
<ul class="print-only">
<li>{{ page.print_blurb }}</li>
</ul>
{% endif %}
<h1>
<strong><a href="/">Danny Berger</a></strong>
</h1>
<div class="meta screen-only">
<a href="http://dpb587.me/" style="color:inherit;">dpb587</a>
<a class="subtle" href="http://dpb587.me/">dpb587</a>
&middot;
<a href="https://github.com/dpb587">github</a>
&middot;
@@ -65,8 +70,6 @@
</div>
<div class="meta print-only">
<a href="http://dpb587.me/" style="color:inherit;">http://dpb587.me</a>
&nbsp;<strong style="color:#999999;">&middot;</strong>&nbsp;
<a href="mailto:dpb587@gmail.com" style="color:inherit;">dpb587@gmail.com</a>
</div>
</header>
<article>

View File

@@ -1,10 +1,11 @@
---
title: About
layout: content
print_blurb: "r&#233;sum&#233;"
---
<section>
<h2>About</h2>
<h2 class="screen-only">About</h2>
<p>
I am a <em>software engineer</em> who enjoys pushing the limits of <em>web technology</em> and applying them to

View File

@@ -35,6 +35,10 @@ body > footer {
color: #666666;
}
body.no-footer > footer {
display: none;
}
body > header {
padding-right: 20px;
width: 654px;
@@ -254,3 +258,12 @@ section.post-content img {
.print-only {
display: none;
}
a.subtle {
color: inherit;
text-decoration: inherit;
}
body.no-footer article > section {
border-bottom: 0;
}

View File

@@ -1,5 +1,9 @@
.print-only {
display: block !important;
display: block;
}
span.print-only {
display: inline;
}
body.layout-default {
@@ -48,7 +52,7 @@ body.layout-post section header .timeline {
}
p, ul, ol, dl {
line-height: 20px;
line-height: 18px;
margin: 6px 0;
}