Created
April 12, 2012 18:23
-
-
Save dwins/2369814 to your computer and use it in GitHub Desktop.
Raster properties in CSS
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 characters
* { | |
raster-opacity: 0.7; | |
raster-channel-selection: 1; | |
raster-channel-selection: 1 2 3; | |
raster-contrast-enhancement: normalize; | |
raster-contrast-enhancement: histogram; | |
raster-contrast-enhancement: gamma-value(2); | |
raster-shaded-relief: brightness-only; | |
raster-shaded-relief: relief-factor(55); | |
raster-shaded-relief: brightness-only relief-factor(55); | |
raster-color-map: | |
0 black | |
100 rgb(0.25, 0, 0) | |
200 rgb(0.50, 0, 0) | |
300 rgb(0.75, 0, 0) | |
400 rgb(1, 0, 0); | |
raster-color-map-mode: intervals; | |
raster-color-map-mode: ramp; | |
raster-color-map-mode: values; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment