diff --git a/scripts/mkblog.py b/scripts/mkblog.py index 01ef8b8..0bcd5b6 100644 --- a/scripts/mkblog.py +++ b/scripts/mkblog.py @@ -56,6 +56,9 @@ with open(dummy_file, 'r') as read_file, open(dest_file, 'w') as write_file: # modify the basic html to make it nicer for styling later html = read_file.read() + # extract images from their enclosing

tags + html = re.sub('(

()

)', r'\2', html) + # insert text-panel start between non-

and

elements html = re.sub('((?)\n)(

)', r'\1

\n\2', html) # insert para-block end between

and non-

elements diff --git a/src/inc_css/blog.css b/src/inc_css/blog.css index b41d42a..ca7c680 100644 --- a/src/inc_css/blog.css +++ b/src/inc_css/blog.css @@ -88,6 +88,15 @@ ul.blog-index li a { padding-right: 1em; } +.page .blog img { + width: max(30vmax, 500px); + + margin-top: 1.2em; + margin-bottom: 2em; + + border-radius: 2em; +} + @media only screen and (max-width: 700px) { .page .blog .code-panel { padding: 1.0em 5.0em;