Skip to content

Instantly share code, notes, and snippets.

View arthurgouveia's full-sized avatar
🥑

Arthur Gouveia arthurgouveia

🥑
View GitHub Profile
@arthurgouveia
arthurgouveia / osx_setup.md
Last active December 5, 2017 03:41 — forked from ruyadorno/osx_setup.md
Guide for setting up a new osx

Setup Mac OS X

This is just a personal script to help me remember all the steps required to setup a new osx machine in their correct order. I do not advise you to follow this guide if you don't know what you're doing.

Setup

1. Run software update

@arthurgouveia
arthurgouveia / gist:fef6e127a479cfe3ef83
Last active August 29, 2015 14:11
Sass & Compass sprites for standard and HD displays
// Sprite mappers
$sprite: sprite-map('sprite/standard/*.png', $layout: 'smart');
$sprite-hd: sprite-map('sprite/hd/*.png', $layout: 'smart');
// HD media query
$hd: 'print, (-o-min-device-pixel-ratio: 5/4), (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 120dpi)';
// HD mixin sprite
// Your HD files should necessarily be twice the size of the standard ones
@mixin hd-sprite {
@arthurgouveia
arthurgouveia / _functions.scss
Last active December 30, 2015 22:49
Sass function to output a property, along with it's values, with REM or PX units, depending on the value of $px-only
$font-size: 16;
$px-only: true;
@function u($values){
$list: ();
@each $value in $values {
@if $value == 'auto' {
@arthurgouveia
arthurgouveia / mixins.scss
Created October 29, 2013 00:50
Simple mixin to return the property with REM units along with PX fallback.
$font-size: 16;
@function strip-unit($num) {
@return $num / ($num * 0 + 1);
}
@mixin rem($property, $values...) {
$max: length($values);
$pxValues: '';
$remValues: '';