summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--_layouts/default.html4
-rw-r--r--_posts/2018-01-24-pyircfuzz.markdown1
-rw-r--r--assets/css/style.css41
3 files changed, 44 insertions, 2 deletions
diff --git a/_layouts/default.html b/_layouts/default.html
index 86e9d2d..2e97cf7 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -13,7 +13,9 @@
</div>
<div class="sticken col-xs-12 col-md-4">
<br />
- {% include {{page.sidebar}} %}
+ {% if page.sidebar
+ %}{% include {{page.sidebar}}
+ %}{% endif %}
</div>
{% else %}
{{ content }}
diff --git a/_posts/2018-01-24-pyircfuzz.markdown b/_posts/2018-01-24-pyircfuzz.markdown
index 2805116..7edf1de 100644
--- a/_posts/2018-01-24-pyircfuzz.markdown
+++ b/_posts/2018-01-24-pyircfuzz.markdown
@@ -38,6 +38,7 @@ Here is a picture of what Irssi looks like at this point. It crashed so quickly
get a screenshot of the fuzzing in action.
<img style="max-width:100%" src="/images/irssi_pyircfuzz_crash.png" />
+{:.wide}
Here is the AddressSanitizer output (from asan.log):
diff --git a/assets/css/style.css b/assets/css/style.css
index ba9f254..2d5ecaf 100644
--- a/assets/css/style.css
+++ b/assets/css/style.css
@@ -308,7 +308,7 @@ blockquote {
border: 1px dashed #81a1c1; /* .form-control:focus */
}
-@media (max-width: 768px) {
+@media (max-width: 767px) {
.irssi-release,.irssi-git { display: inline-block; }
}
@@ -378,3 +378,42 @@ blockquote {
display: inline-block;
}
}
+
+.container.post > p,
+.container.post > ul,
+.container.post > blockquote,
+.container.page > p,
+.container.page > ul,
+.container.page > ol,
+.container.page > blockquote,
+.container.page > dl {
+ max-width: 730px;
+}
+
+.container.page > dl > dd {
+ margin-left: 1em;
+}
+
+.container.page > h3 {
+ max-width: 750px;
+}
+
+.container.post > .wide {
+ max-width: 100%;
+}
+
+@media (min-width:768px) and (max-width: 991px) {
+ .container.post > div > div.highlight,
+ .container.page > div > div.highlight {
+ display: inline-block;
+ min-width: 720px;
+ }
+}
+
+@media (min-width: 992px) {
+ .container.post > div > div.highlight,
+ .container.page > div > div.highlight {
+ display: inline-block;
+ min-width: 730px;
+ }
+}