visual adjustments
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -1 +1,3 @@
|
|||||||
|
_layouts/private-*
|
||||||
_site
|
_site
|
||||||
|
private
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
</article>
|
</article>
|
||||||
<footer>
|
<footer>
|
||||||
Thanks for visiting! This is a personal site – 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 – 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>.
|
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>.
|
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>
|
</footer>
|
||||||
|
|||||||
@@ -37,21 +37,26 @@
|
|||||||
})();
|
})();
|
||||||
</script>
|
</script>
|
||||||
</head>
|
</head>
|
||||||
<body class="layout-{{ page.layout }}">
|
<body class="layout-{{ page.layout }}{% if page.body_class %} {{ page.body_class }}{% endif %}">
|
||||||
<header>
|
<header>
|
||||||
<div class="timeline">
|
<div class="timeline">
|
||||||
<a href="/"><img alt="DPB" src="http://www.gravatar.com/avatar/5544fe6a05400da5a8957ff29dd6718c.png?s=128" /></a>
|
<a href="/"><img alt="DPB" src="http://www.gravatar.com/avatar/5544fe6a05400da5a8957ff29dd6718c.png?s=128" /></a>
|
||||||
</div>
|
</div>
|
||||||
<ul>
|
<ul class="screen-only">
|
||||||
<li><a href="/blog/">blog</a></li>
|
<li><a href="/blog/">blog</a></li>
|
||||||
<li><a href="/projects.html">projects</a></li>
|
<li><a href="/projects.html">projects</a></li>
|
||||||
<li><a href="/about.html">about</a></li>
|
<li><a href="/about.html">about</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
{% if page.print_blurb %}
|
||||||
|
<ul class="print-only">
|
||||||
|
<li>{{ page.print_blurb }}</li>
|
||||||
|
</ul>
|
||||||
|
{% endif %}
|
||||||
<h1>
|
<h1>
|
||||||
<strong><a href="/">Danny Berger</a></strong>
|
<strong><a href="/">Danny Berger</a></strong>
|
||||||
</h1>
|
</h1>
|
||||||
<div class="meta screen-only">
|
<div class="meta screen-only">
|
||||||
<a href="http://dpb587.me/" style="color:inherit;">dpb587</a>
|
<a class="subtle" href="http://dpb587.me/">dpb587</a>
|
||||||
·
|
·
|
||||||
<a href="https://github.com/dpb587">github</a>
|
<a href="https://github.com/dpb587">github</a>
|
||||||
·
|
·
|
||||||
@@ -65,8 +70,6 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="meta print-only">
|
<div class="meta print-only">
|
||||||
<a href="http://dpb587.me/" style="color:inherit;">http://dpb587.me</a>
|
<a href="http://dpb587.me/" style="color:inherit;">http://dpb587.me</a>
|
||||||
<strong style="color:#999999;">·</strong>
|
|
||||||
<a href="mailto:dpb587@gmail.com" style="color:inherit;">dpb587@gmail.com</a>
|
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
<article>
|
<article>
|
||||||
|
|||||||
@@ -1,10 +1,11 @@
|
|||||||
---
|
---
|
||||||
title: About
|
title: About
|
||||||
layout: content
|
layout: content
|
||||||
|
print_blurb: "résumé"
|
||||||
---
|
---
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
<h2>About</h2>
|
<h2 class="screen-only">About</h2>
|
||||||
|
|
||||||
<p>
|
<p>
|
||||||
I am a <em>software engineer</em> who enjoys pushing the limits of <em>web technology</em> and applying them to
|
I am a <em>software engineer</em> who enjoys pushing the limits of <em>web technology</em> and applying them to
|
||||||
|
|||||||
@@ -35,6 +35,10 @@ body > footer {
|
|||||||
color: #666666;
|
color: #666666;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
body.no-footer > footer {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
body > header {
|
body > header {
|
||||||
padding-right: 20px;
|
padding-right: 20px;
|
||||||
width: 654px;
|
width: 654px;
|
||||||
@@ -254,3 +258,12 @@ section.post-content img {
|
|||||||
.print-only {
|
.print-only {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a.subtle {
|
||||||
|
color: inherit;
|
||||||
|
text-decoration: inherit;
|
||||||
|
}
|
||||||
|
|
||||||
|
body.no-footer article > section {
|
||||||
|
border-bottom: 0;
|
||||||
|
}
|
||||||
|
|||||||
@@ -1,5 +1,9 @@
|
|||||||
.print-only {
|
.print-only {
|
||||||
display: block !important;
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
span.print-only {
|
||||||
|
display: inline;
|
||||||
}
|
}
|
||||||
|
|
||||||
body.layout-default {
|
body.layout-default {
|
||||||
@@ -48,7 +52,7 @@ body.layout-post section header .timeline {
|
|||||||
}
|
}
|
||||||
|
|
||||||
p, ul, ol, dl {
|
p, ul, ol, dl {
|
||||||
line-height: 20px;
|
line-height: 18px;
|
||||||
margin: 6px 0;
|
margin: 6px 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user