diff options
author | Siri Reiter <siri@jones.dk> | 2017-09-04 20:16:41 +0200 |
---|---|---|
committer | Siri Reiter <siri@jones.dk> | 2017-09-04 20:16:41 +0200 |
commit | 6a2078cfab88ad02c3d37675c7a4f1ae133c90ec (patch) | |
tree | e878bfa3fcbbaead43ef94c65a4b512292989e18 | |
parent | 4ca1c30e999f1070397ee4e5f2337ed21896f469 (diff) |
Adding width to image class solo.
-rw-r--r-- | style.scss | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -285,6 +285,7 @@ img { //Styling of tall images img.tall { width: 300px; + height: auto; } //Small images in tour descriptions, floating in a vertical row, not inflicting on the text content. #content img.deco { @@ -304,11 +305,13 @@ img.tall { display: block; float: none; } -//Image pushing text down, below. +//Image pushing text down, below. Fixed width as an experiment. #content img.solo { float: none; display: block; padding: 0; + width: 500px; + height: auto; } //One (concrete) image meant to fill the whole viewport. #content img.x2470x3783 { |