Last active
January 29, 2018 07:29
-
-
Save phillcoxon/c11dc85225ba84c389131379b0172a39 to your computer and use it in GitHub Desktop.
Greyscale all images in Beaver Builder and Astra theme for Prototyping
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
/* Greyscale all site images in Beaver Builder and Astra them */ | |
/* Add to Beaver Builder Global CSS */ | |
img, body | |
{ | |
filter: grayscale(100%) !important; | |
-moz-filter: grayscale(100%) !important; | |
-webkit-filter:grayscale(100%) !important; | |
-webkit-filter: grayscale(1) !important; | |
-o-filter:grayscale(100%) !important; | |
-ms-filter:grayscale(100%) !important; | |
filter: gray !important; | |
} | |
div.ast-title-bar-wrap | |
{ | |
filter: grayscale(100%) !important; | |
-moz-filter: grayscale(100%) !important; | |
-webkit-filter:grayscale(100%) !important; | |
-webkit-filter: grayscale(1) !important; | |
-o-filter:grayscale(100%) !important; | |
-ms-filter:grayscale(100%) !important; | |
filter: gray !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment