Skip to content

Instantly share code, notes, and snippets.

@manbearwolf
Last active October 20, 2017 18:16
Show Gist options
  • Save manbearwolf/8ba8aad65d828c10959f8dd6671e3cda to your computer and use it in GitHub Desktop.
Save manbearwolf/8ba8aad65d828c10959f8dd6671e3cda to your computer and use it in GitHub Desktop.
opacity the post wrapper (BlogInn) Cheap Transparent in a class css
.entry-title {
background-color: $picton-blue;
clear: both;
color: $white;
float: left;
font-size: 36px;
margin: 60px 0 0;
max-width: 75%;
padding: 30px;
-ms-word-wrap: break-word;
word-wrap: break-word;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)"; /* IE 8 */
filter: alpha(opacity=70); /* IE 5-7 */
-moz-opacity: 0.7; /* Netscape */
-khtml-opacity: 0.70; /* Safari 1.x */
opacity: 0.7; /* Good browsers */
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment