The Original Super Awesome Buttons Many moons ago, we create the first set of super awesome buttons. They worked great with any background color and allowed us to turn any anchor or button element into a sexy call to action.
Tag Archives: CSS
CSS3 Pointer Events
Summary The CSS property pointer-events allows authors to control whether or when an element may be the target of a mouse event. This property is used to specify under which circumstance (if any) a mouse event should go “through” an element and target whatever is “underneath” that element instead.
Sass | CSS
Sass makes CSS fun again. Sass is an extension of CSS3, adding nested rules, variables,mixins, selector inheritance, and more. It’s translated to well-formatted, standard CSS using the command line tool or a web-framework plugin.
CSS Pseudo-elements
CSS pseudo-elements are used to add special effects to some selectors.
CSS Pseudo-classes
CSS pseudo-classes are used to add special effects to some selectors.
Disable textarea resizing
CSS to disable resizing The CSS to disable resizing for all textareas looks like this: textarea { resize: none; }