Fix up some styling
3 files changed, 15 insertions(+), 25 deletions(-) M _posts/2017-05-06-pijul.textile M css/main.scss M index.html
M _posts/2017-05-06-pijul.textile => _posts/2017-05-06-pijul.textile +1 -1
@@ 130,4 130,4 @@ bc. $ RUST_LOG=libpijul,pijul pijul <command> Pijul can also output the dependency graph as a dot digraph, by running @pijul info --debug@. The following image was obtained from our example repository. I don't yet understand exactly how the graph describes the repository, so I'll leave that for an update or a later post. !{display: block;margin-left: auto;margin-right: auto;}/img/pijul_debug_master.png! \ No newline at end of file !{display: block;margin-left: auto;margin-right: auto;width: 100%}/img/pijul_debug_master.png!
M css/main.scss => css/main.scss +9 -23
@@ 1,32 1,15 @@ --- --- /* Adapted from http://meyerweb.com/eric/tools/css/reset/ */ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; font-size: 100%; vertical-align: baseline; font-family: sans-serif; } html, body { overflow-x: hidden; background-color: white; font-family: sans-serif; vertical-align: baseline; } h1 { margin: 0; } @@ /* HTML5 display-role reset for older browsers */ 92,6 75,9 @@ table { .content { grid-column-start: 1; .tag::before { content: '#' } } .sidebar {
M index.html => index.html +5 -1
@@ 6,7 6,11 @@ title: ~laumann {% for post in site.posts limit:5 %} <h3><a href="{{ post.url }}">{{ post.title }}</a></h3> <div class="subtitle-stuff"> {{post.date | date: "%F" }} ({{ post.tags | join: "," }}) {{post.date | date: "%F" }} {% for tag in post.tags %} <span class="tag">{{tag}}</span> {% endfor %} </div> <p>{% if post.blurb %}{{ post.blurb }}{% else %}{{ post.excerpt }}{% endif %}</p> {% endfor %}