Skip to content

Instantly share code, notes, and snippets.

View phoinixi's full-sized avatar
:octocat:
~

Francesco Esposito phoinixi

:octocat:
~
View GitHub Profile
@phoinixi
phoinixi / browser-prefix-sass-mixin.scss
Created May 14, 2015 14:10
simple browser prefix sass mixin, with this mixin you can apply every browser prefix in one line
@mixin browser-prefix($name, $argument) {
-webkit-#{$name}: #{$argument};
-ms-#{$name}: #{$argument};
-moz-#{$name}: #{$argument};
-o-#{$name}: #{$argument};
#{$name}: #{$argument};
}
@phoinixi
phoinixi / jekyll-monokai-syntax.scss
Last active August 4, 2019 02:48
Monokai color scheme for jekyll highlighling
/**
* Syntax highlighting styles
*/
.highlight {
background: #272822;
@extend %vertical-rhythm;
pre {
border: none;
code {