Add printable version
This commit is contained in:
parent
a1ed450be8
commit
df92b4e95d
@ -19,6 +19,7 @@
|
|||||||
{% assign hr = false %}
|
{% assign hr = false %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
<li><a id="printable">Printable Version</a><li>
|
||||||
</ul>
|
</ul>
|
||||||
<div id="page">
|
<div id="page">
|
||||||
<h1>{{ page.title }}</h1>
|
<h1>{{ page.title }}</h1>
|
||||||
|
@ -1,4 +1,8 @@
|
|||||||
$(function() {
|
$(function() {
|
||||||
|
$("#printable").click(function() {
|
||||||
|
$("body").addClass("printable");
|
||||||
|
});
|
||||||
|
|
||||||
return $("h2, h3, h4, h5, h6").each(function(i, el) {
|
return $("h2, h3, h4, h5, h6").each(function(i, el) {
|
||||||
var $el, icon, id;
|
var $el, icon, id;
|
||||||
$el = $(el);
|
$el = $(el);
|
||||||
|
@ -5,6 +5,18 @@ html, body {
|
|||||||
background: #333;
|
background: #333;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.printable #navbar{
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.printable #page {
|
||||||
|
left: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.printable .header-link {
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: blue;
|
color: blue;
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
@ -81,6 +93,7 @@ figure {
|
|||||||
padding: 5px;
|
padding: 5px;
|
||||||
color: #ccc;
|
color: #ccc;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
#navbar li:nth-child(odd) a {
|
#navbar li:nth-child(odd) a {
|
||||||
|
Loading…
Reference in New Issue
Block a user