summaryrefslogtreecommitdiffstats
path: root/sass
diff options
context:
space:
mode:
authorYour Name <you@example.com>2020-07-26 18:27:35 +0200
committerYour Name <you@example.com>2020-07-26 18:27:35 +0200
commit65916e989979b60f5ae0bf7baba3d92311ca62ba (patch)
tree7b603113e936e974c8f4b783376f15e87f043d94 /sass
parent3787bc2049de0c4454a0b519289e819c9e6806cf (diff)
downloadrabalderz-65916e989979b60f5ae0bf7baba3d92311ca62ba.tar.gz
rabalderz-65916e989979b60f5ae0bf7baba3d92311ca62ba.tar.bz2
rabalderz-65916e989979b60f5ae0bf7baba3d92311ca62ba.zip
Make figure shortcode resize large images somwhat smart.
Images higher than 500px will be resized to not be any higher. Also we check for images that will be less than 400px wide after resizing, and float them to the left on wide displays.
Diffstat (limited to 'sass')
-rw-r--r--sass/styles.scss14
1 files changed, 14 insertions, 0 deletions
diff --git a/sass/styles.scss b/sass/styles.scss
index ef2ea26..b662254 100644
--- a/sass/styles.scss
+++ b/sass/styles.scss
@@ -58,6 +58,14 @@ pre {
padding-bottom: 0.5em;
}
+.prefer-left {
+ @media(min-width: 960px) {
+ float: left;
+ width: 400px;
+ margin: 0.5rem;
+ }
+}
+
.license {
display: flex;
border-top: 1px solid #aaa;
@@ -79,8 +87,14 @@ pre {
}
}
+.post {
+ clear: both;
+ margin-top: 2em;
+}
+
.post-title {
margin-bottom: 0;
+ font-size: 150%;
}
.post-meta {