Skip to content

Instantly share code, notes, and snippets.

View cstipkovic's full-sized avatar
🏠
Working from home

Clauber Stipkovic cstipkovic

🏠
Working from home
View GitHub Profile
@cstipkovic
cstipkovic / pseudo-elements.md
Created September 19, 2016 20:10 — forked from p3t3r67x0/pseudo_elements.md
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] {
@cstipkovic
cstipkovic / install_my_env.sh
Last active May 7, 2022 19:19 — forked from zenorocha/.hyper.js
My Mac OS X setup script
#!/bin/sh
# Install XCode and Commando Line Tools
xcode-select --install
# Install homebrew
/usr/bin/ruby -e " $(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
# Cask for Versions
brew tap caskroom/versions