Compile SASS to style.css (considering you already have installed compass I think)
sass --watch style.scss:../style.css
Compile SASS to style.css (considering you already have installed compass I think)
sass --watch style.scss:../style.css
.unlink {
pointer-events: none;
cursor: default;
}
img {
-webkit-filter: grayscale(100%);
filter: grayscale(100%);
filter: gray;
filter: url(“data:image/svg+xml;utf8,<svg version=‘1.1’ xmlns=’http://www.w3.org/2000/svg’ height=’0’><filter id=’greyscale’><feColorMatrix type=’matrix’ values=’0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0’ /></filter></svg>#greyscale”);
}
-webkit-backface-visibility: hidden;
@mixin placeholder {
&::-webkit-input-placeholder {@content}
&:-moz-placeholder {@content}
&::-moz-placeholder {@content}
&:-ms-input-placeholder {@content}
}
Use it like
@include placeholder { color: white }
.slide_content:empty { display: none; }
#box { background: url(zzz.jpeg); padding-left: 10px; margin-left: -10px; }
p { -webkit-text-size-adjust: none; }
.button { -webkit-appearance: none; }
.Absolute-Center {
margin: auto;
position: absolute;
top: 0; left: 0; bottom: 0; right: 0;}