Last active
September 24, 2018 20:09
-
-
Save oliverdoetsch/11147948 to your computer and use it in GitHub Desktop.
Revisions
-
oliverdoetsch revised this gist
Apr 24, 2014 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ .post-body img { width: $(content.width); height: auto; margin-left: -1em; padding: 0; @@ -14,7 +14,7 @@ .post-body .tr-caption-container img { padding: 0; display: block; width: $(content.width); height: auto; margin-left: 0; max-width: 100%; -
oliverdoetsch revised this gist
Apr 24, 2014 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,5 @@ .post-body img { width: calc($(content.width) - $(main.column.left.width) - $(main.column.right.width) - 80px); height: auto; margin-left: -1em; padding: 0; @@ -14,7 +14,7 @@ .post-body .tr-caption-container img { padding: 0; display: block; width: calc($(content.width) - $(main.column.left.width) - $(main.column.right.width) - 80px); height: auto; margin-left: 0; max-width: 100%; -
oliverdoetsch created this gist
Apr 21, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,23 @@ .post-body img { width: calc( $(content.width) - $(main.column.left.width) - $(main.column.right.width) - 80px); height: auto; margin-left: -1em; padding: 0; border: none; max-width: 100%; } .post-body .tr-caption-container { padding: 0; } .post-body .tr-caption-container img { padding: 0; display: block; width: calc( $(content.width) - $(main.column.left.width) - $(main.column.right.width) - 80px); height: auto; margin-left: 0; max-width: 100%; background: transparent; border: none; }