Compare commits

...

2 Commits

Author SHA1 Message Date
0d89429503 Remove CSS for bar / info box 2022-07-15 15:25:28 -06:00
d1057534ec Fix HTML indentation 2022-07-15 15:25:11 -06:00
4 changed files with 265 additions and 325 deletions

View File

@ -29,7 +29,6 @@
{% endblock %}
{% block content %}
{% if article.wide %}
<div class="content content-wide">
{% else %}
@ -50,7 +49,9 @@
</header>
<hr />
<article>
{{ article.content }}
</article>
</div>

View File

@ -13,6 +13,7 @@
<style>
{% include 'style.css' %}
</style>
<script defer src="/theme/instant-page.js"></script>
@ -33,7 +34,7 @@
<span class="wname">Webring:</span> <a href="https://jason.schwarzenberger.co.nz/" class="wprev">&lt; Previous</a> | <a href="https://webring.t0.vc" class="windex">Index</a> | <a href="https://udia.ca" class="wnext">Next &gt;</a>
</p>
<p class="footer">
© 20122021 Tanner Collin
© 20122022 Tanner Collin
</p>
</body>
</html>

View File

@ -2,28 +2,10 @@
{% block head %}
{{ super() }}
<meta name="description" content="The personal website of Tanner Collin." />
<meta name="summary" content="The personal website of Tanner Collin." />
{% endblock %}
{% block info %}
<picture>
<source type="image/webp" srcset="/theme/me.webp">
<source type="image/jpeg" srcset="/theme/me.jpg">
<img src="/theme/me.jpg" width="128" height="164" class="me" alt="me smiling wide and looking into the camera lit up brightly">
</picture>
<div class="info">
<h1>Tanner Collin</h1>
<p class="contact-icons">
<a href="mailto:site4@tannercollin.com" rel="noreferrer noopener"><img alt="email" src="/theme/mail.svg" width="20" height="20" /></a>
<a href="https://t.me/tannercollin" target="_blank" rel="noreferrer noopener"><img alt="telegram" src="/theme/telegram.svg" width="20" height="20" /></a>
<a href="https://github.com/tannercollin" target="_blank" rel="noreferrer noopener"><img alt="github" src="/theme/github.svg" width="20" height="20" /></a>
</p>
</div>
{% endblock %}
{% block content %}
<div class="content index">
<p>
@ -59,6 +41,7 @@
<div class="summary">
{{ article.summary }}
</div>
{% endfor %}
<h3>
@ -77,6 +60,7 @@
<div class="summary">
{{ article.summary }}
</div>
{% endfor %}
<h2>Writing</h2>
@ -88,6 +72,7 @@
<div class="summary">
{{ article.summary }}
</div>
{% endfor %}
</div>
{% endblock %}

View File

@ -45,7 +45,7 @@ pre {
.container {
max-width: 56rem;
margin: 2rem auto 12rem auto;
margin: 1rem auto 12rem auto;
}
.footer {
@ -130,59 +130,12 @@ pre {
text-align: right;
white-space: nowrap;
}
.bar .me {
width: 100%;
display: block;
}
.bar .info {
margin-top: 1.75rem;
}
.bar .contact-icons a {
border-bottom: none;
}
.bar .contact-icons img {
width: 1.25rem;
height: 1.25rem;
margin-left: 0.5rem;
}
}
@media screen and (max-width:36rem) {
.bar {
overflow: auto;
margin-top: -0.5rem;
}
.bar .me {
float: left;
height: 6.5rem;
width: auto;
}
.bar .info {
float: left;
margin-top: 0.5rem;
margin-left: 1.5rem;
}
.bar .contact-icons {
margin-top: 1rem;
margin-left: 0.25rem;
margin-bottom: 0;
}
.bar .contact-icons a {
border-bottom: none;
}
.bar .contact-icons img {
width: 1.25rem;
height: 1.25rem;
margin-right: 1rem;
margin-bottom: -1rem;
}
}