Skip to content

Instantly share code, notes, and snippets.

View tylerFowler's full-sized avatar

Tyler Fowler tylerFowler

  • LinkedIn
  • San Francisco, CA
View GitHub Profile
@p3t3r67x0
p3t3r67x0 / pseudo_elements.md
Last active July 25, 2025 09:29
A CSS pseudo-element is used to style specified parts of an element. In some cases you can style native HTML controls with vendor specific pseudo-elements. Here you will find an list of cross browser specific pseudo-element selectors.

Styling native elements

Native HTML controls are a challenge to style. You can style any element in the web platform that uses Shadow DOM with a pseudo element ::pseudo-element or the /deep/ path selector.

video::webkit-media-controls-timeline {
  background-color: lime;
}

video /deep/ input[type=range] {
@matthewmueller
matthewmueller / osx-for-hackers.sh
Last active June 23, 2025 13:24
OSX for Hackers (Mavericks/Yosemite)
# OSX for Hackers (Mavericks/Yosemite)
#
# Source: https://gist.github.com/brandonb927/3195465
#!/bin/sh
# Some things taken from here
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
# Ask for the administrator password upfront
@tatsuro-ueda
tatsuro-ueda / How-to-use-CoffeeScript-in-jsFiddle.md
Created December 10, 2012 03:44
How to use CoffeeScript in jsFiddle

How to use CoffeeScript in jsFiddle

121210-coffeescript-in-jsfiddle

  1. Open 'Panel' in left side bar.
  2. Change 'JavaScript' to 'CoffeeScript'.