Categories
Tools

JSHint, a JavaScript Code Quality Tool

JSHint, a JavaScript Code Quality Tool

Categories
Snippets

Disabling a Link With CSS

.unlink {
pointer-events: none;
cursor: default;
}

Categories
Snippets

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”);
}

Categories
Terminal

Check If You are Running 32 or 64 bit OS X

uname -m

Categories
Terminal

Force Empty the Trash

sudo rm -rf ~/.Trash
sudo rm -rf /Volumes/*/.Trashes

Categories
Color Palettes

Morning mood – Color Palette

Morning mood

Categories
Snippets

Fixed Positioning for some/old ANDROID Devices

-webkit-backface-visibility: hidden;

Categories
Snippets

Placeholder Mixin for CHILD Elements in SASS

@mixin placeholder {
  &::-webkit-input-placeholder {@content}
  &:-moz-placeholder {@content}
  &::-moz-placeholder {@content}
  &:-ms-input-placeholder {@content}
}

Use it like

@include placeholder { color: white }

Categories
Color Palettes

Under The Table – Color Palette

Under The Table

Categories
Snippets

Hiding Empty Elements with CSS

.slide_content:empty { display: none; }
Design a site like this with WordPress.com
Get started