pin reqs, css fix optimize

This commit is contained in:
Tyrel Souza 2022-11-03 11:22:57 -04:00
parent 2fe18eb472
commit 8752f76042
No known key found for this signature in database
GPG Key ID: F6582CF1308A2360
4 changed files with 68 additions and 21 deletions

View File

@ -23,5 +23,7 @@ Unidecode==1.3.6
python-slugify python-slugify
webassets==2.0 webassets==2.0
pelican-webassets==2.0.0
libsass==0.21.0 libsass==0.21.0
livereload==2.6.3 livereload==2.6.3
cssmin==0.2.0

View File

@ -51,7 +51,6 @@ article ul {
.amp {color:#666; font-size:1.05em;font-family:"Warnock Pro", "Goudy Old Style","Palatino","Book Antiqua",serif; font-style:italic;} .amp {color:#666; font-size:1.05em;font-family:"Warnock Pro", "Goudy Old Style","Palatino","Book Antiqua",serif; font-style:italic;}
.dquo {margin-left:-.38em;} .dquo {margin-left:-.38em;}
@media screen and (min-width: 700px) { @media screen and (min-width: 700px) {
.parent-panel { padding-left:20%;width:100%; } .parent-panel { padding-left:20%;width:100%; }
.right-panel { position:relative;float:left;width:100%; } .right-panel { position:relative;float:left;width:100%; }
@ -59,8 +58,8 @@ article ul {
.right-panel-content { .right-panel-content {
border-left: 2px dashed #b58900; border-left: 2px dashed #b58900;
min-height: 96vh; min-height: 96vh;
max-width: 60%; max-width: 80%;
padding-left: 0.75rem; padding-left: 0.75rem;
} }
.left-panel { .left-panel {
position:relative; position:relative;
@ -70,6 +69,13 @@ article ul {
margin-left:-101%; margin-left:-101%;
text-align:right; text-align:right;
} }
a {
padding: 4px;
}
h2 a{
padding: 0;
}
} }
@media screen and (max-width: 700px) { @media screen and (max-width: 700px) {
.parent-panel { .parent-panel {
@ -106,10 +112,13 @@ article ul {
-webkit-order: 2; -webkit-order: 2;
order: 2; order: 2;
} }
.right-panel-content {
max-width: 100%;
}
.left-panel li { .left-panel li {
display: inline; display: inline-block;
padding: 0.5rem; padding: 0.75rem;
white-space: nowrap; white-space: nowrap;
} }
@ -119,7 +128,17 @@ article ul {
.social { .social {
display: none; display: none;
} }
}
@media screen and (max-width: 600px) {
.right-panel-content {
max-width: 80%;
}
}
@media screen and (min-width: 1200px) {
.right-panel-content {
max-width: 1000px;
}
} }
.right-panel-content img { .right-panel-content img {
@ -136,7 +155,7 @@ article ul {
} }
hr { hr {
border: 2px dotted #b58900;; border: 2px dotted #b58900;
border-style: none none dashed; border-style: none none dashed;
} }
@ -150,10 +169,10 @@ hr.end {
.indent { .indent {
font-size: 0.6rem; font-size: 0.6rem;
margin-left: 5.1rem; margin-left: 4.1rem;
} }
h3.entry-title{ header.entry-title{
border-bottom: 1px dotted #b58900; border-bottom: 1px dotted #b58900;
padding-bottom: 0.25rem; padding-bottom: 0.25rem;
} }
@ -173,3 +192,15 @@ ul ul {
list-style-type: circle; list-style-type: circle;
padding-left: 2rem; padding-left: 2rem;
} }
.entry-list-flex-container {
display: flex;
flex-wrap: wrap;
width: 100%;
}
.entry-list-flex-child.date {
flex-basis: fit-content;
margin-right:1rem;
}

View File

@ -6,6 +6,7 @@
<meta charset="utf-8" /> <meta charset="utf-8" />
<meta name="generator" content="Pelican" /> <meta name="generator" content="Pelican" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Tyrel Souza's Blog about Tech, Programming, Automation, and Personal Things" />
{% if FEED_ALL_ATOM %} <link href="{{ FEED_DOMAIN }}/{% if FEED_ALL_ATOM_URL %}{{ FEED_ALL_ATOM_URL }}{% else %}{{ FEED_ALL_ATOM }}{% endif %}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} Full Atom Feed" /> {% endif %} {% if FEED_ALL_ATOM %} <link href="{{ FEED_DOMAIN }}/{% if FEED_ALL_ATOM_URL %}{{ FEED_ALL_ATOM_URL }}{% else %}{{ FEED_ALL_ATOM }}{% endif %}" type="application/atom+xml" rel="alternate" title="{{ SITENAME }} Full Atom Feed" /> {% endif %}
{% if FEED_ALL_RSS %} <link href="{{ FEED_DOMAIN }}/{% if FEED_ALL_RSS_URL %}{{ FEED_ALL_RSS_URL }}{% else %}{{ FEED_ALL_RSS }}{% endif %}" type="application/rss+xml" rel="alternate" title="{{ SITENAME }} Full RSS Feed" /> {% endif %} {% if FEED_ALL_RSS %} <link href="{{ FEED_DOMAIN }}/{% if FEED_ALL_RSS_URL %}{{ FEED_ALL_RSS_URL }}{% else %}{{ FEED_ALL_RSS }}{% endif %}" type="application/rss+xml" rel="alternate" title="{{ SITENAME }} Full RSS Feed" /> {% endif %}

View File

@ -10,20 +10,33 @@
{% for article in articles_page.object_list %} {% for article in articles_page.object_list %}
<li> <li>
<article class="hentry"> <article class="hentry">
<header> <header class="entry-title">
<h3 class="entry-title"> <div class="entry-list-flex-container">
<div>
<span class="small"><time class="published" datetime="{{ article.date.isoformat() }}"> {{ article.date.isoformat().split("T")[0] }} </time></span> <div class="entry-list-flex-child date">
<span class="article-list-title"><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></span> <span class="small">
<time class="published" datetime="{{ article.date.isoformat() }}">
{{ article.date.isoformat().split("T")[0] }}
</time>
</span>
</div> </div>
<span class="small indent">
<span class="category">{{ article.category }}</span> <div class="entry-list-flex-child">
<span class=""> <h2>
{% for tag in article.tags|sort %} <div>
<a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a> <span class="article-list-title"><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">{{ article.title }}</a></span>
{% endfor %}</span> </div>
</span> </h2>
</h3> <span class="small">
<span class="category">{{ article.category }}</span>
<span class="">
{% for tag in article.tags|sort %}
{{ tag }}
{% endfor %}</span>
</span>
</div>
</div>
</header> </header>
</article> </article>
</li> </li>