Skip to content

Instantly share code, notes, and snippets.

View kristaps-ancans's full-sized avatar

Kristaps kristaps-ancans

  • Barcelona, Spain
View GitHub Profile
@kristaps-ancans
kristaps-ancans / gist:8815993
Created February 5, 2014 01:39
Style External Links with CSS
a[href^="http://"]:not([href*="mysite.com"]),
a[href^="https://"]:not([href*="mysite.com"]),
a[href^="//"]:not([href*="mysite.com"]), {
/* external link styles, use :before or :after if you want! */
}
@kristaps-ancans
kristaps-ancans / gist:8815984
Created February 5, 2014 01:38
To retrieve the color property of the .element:before
var color = window.getComputedStyle(
document.querySelector('.element'), ':before'
).getPropertyValue('color');