Categories
Categories
Disabling a Link With CSS
.unlink {
pointer-events: none;
cursor: default;
}
Categories
Turn Images to Grayscale with CSS
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”);
}
uname -m
Categories
Force Empty the Trash
sudo rm -rf ~/.Trash
sudo rm -rf /Volumes/*/.Trashes
Categories
Morning mood – Color Palette
-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 }
Categories
Under The Table – Color Palette
Categories
Hiding Empty Elements with CSS
.slide_content:empty { display: none; }

