fix more shit for nik

This commit is contained in:
Tyrel Souza 2022-11-03 01:55:17 -04:00
parent 5282fe8de3
commit 1fcecbc81f
7 changed files with 58 additions and 12 deletions

Binary file not shown.

Binary file not shown.

View File

@ -43,9 +43,9 @@ AUTHOR_FEED_ATOM = None
AUTHOR_FEED_RSS = None
FEED_ATOM = 'tyrel-dev.atom.xml'
FEED_RSS = 'tyrel-dev.rss'
#FEED_RSS = 'tyrel-dev.rss'
FEED_ALL_ATOM = 'tyrel-dev.all.xml'
FEED_ALL_RSS = 'tyrel-dev.all.rss'
#FEED_ALL_RSS = 'tyrel-dev.all.rss'
PLUGINS = ["webassets"]

View File

@ -12,9 +12,9 @@ SITEURL = 'https://tyrel.dev/blog'
RELATIVE_URLS = False
FEED_ATOM = 'tyrel-dev.atom.xml'
FEED_RSS = 'tyrel-dev.rss'
FEED_RSS = None
FEED_ALL_ATOM = 'tyrel-dev.all.xml'
FEED_ALL_RSS = 'tyrel-dev.all.rss'
FEED_ALL_RSS = None
DELETE_OUTPUT_DIRECTORY = True

View File

@ -53,16 +53,14 @@ article ul {
.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;}
.right-panel-content {
border-left: 2px dashed #b58900;
min-height: 96vh;
}
@media screen and (min-width: 700px) {
.parent-panel { padding-left:20%;width:100%; }
.right-panel { position:relative;float:left;width:100%; }
.right-panel-content {
border-left: 2px dashed #b58900;
min-height: 96vh;
max-width: 60%;
padding-left: 0.75rem;
}
@ -76,8 +74,52 @@ article ul {
}
}
@media screen and (max-width: 700px) {
.parent-panel {
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;
-webkit-box-orient: vertical;
-moz-box-orient: vertical;
-webkit-flex-direction: column;
-ms-flex-direction: column;
flex-direction: column;
/* optional */
-webkit-box-align: start;
-moz-box-align: start;
-ms-flex-align: start;
-webkit-align-items: flex-start;
align-items: flex-start;
}
.left-panel {
border: 2px dashed #b58900;
width: 100%;
-webkit-box-ordinal-group: 1;
-moz-box-ordinal-group: 1;
-ms-flex-order: 1;
-webkit-order: 1;
order: 1;
}
.right-panel{
-webkit-box-ordinal-group: 2;
-moz-box-ordinal-group: 2;
-ms-flex-order: 2;
-webkit-order: 2;
order: 2;
}
.left-panel li {
display: inline;
padding: 0.5rem;
white-space: nowrap;
}
.blogroll {
display: none;
}
.social {
display: none;
}
}
@ -111,7 +153,6 @@ hr.end {
.indent {
font-size: 0.6rem;
margin-left: 5.1rem;
/*border-bottom: 2px dotted #b58900;*/
}
h3.entry-title{

View File

@ -1,8 +1,12 @@
.wordcloud {
padding: 0.1rem;
width: 400px;
text-align:center;
}
@media screen and (min-width: 700px) {
.wordcloud {
width: 400px;
}
}
.size-1 { font-size:1.0rem; }
.size-2 { font-size:1.1rem; }

View File

@ -5,6 +5,7 @@
<title>{% block title %}{{ SITENAME }}{% endblock title %}</title>
<meta charset="utf-8" />
<meta name="generator" content="Pelican" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{% 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 %}