Last active
March 16, 2019 16:26
-
-
Save vfontjr/dd1314187c3d8c5e5591638f172ee9dc to your computer and use it in GitHub Desktop.
Adustments to Genesis CSS for Gutenberg
This file contains 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 characters
.entry-content .alignfull, | |
.entry-content .alignwide { | |
margin-left : calc( -100vw / 2 + 100% / 2 ); | |
margin-right : calc( -100vw / 2 + 100% / 2 ); | |
max-width : 100vw; | |
} |
This file contains 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 characters
.full-width-content img.pull-left, | |
.full-width-content figure.pull-left img { | |
float: left; | |
margin: 0 40px 40px -200px; | |
} | |
.full-width-content img.pull-left, | |
.full-width-content figure.pull-right img { | |
float: right; | |
margin: 0 -200px 40px 40px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment