Skip to content

Instantly share code, notes, and snippets.

View cywtf's full-sized avatar

Cy cywtf

  • Berlin, Germany
View GitHub Profile
@cywtf
cywtf / vagrantfile--box-osx
Created October 12, 2016 12:17
vagrant-box-osx
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# https://github.com/AndrewDryga/vagrant-box-osx
config.vm.box = "osx-yosemite"
@cywtf
cywtf / _mq.scss
Last active June 23, 2017 16:58
mq
// MEDIA QUERIES
$breakpoints: (
phone: 599px,
tablet: 600px,
desktop: 1200px,
big-desktop: 1800px
);
$small-max-width: 40em; /* 640px */
$medium-min-width: 40.063em; /* 641px */
$medium-max-width: 64em; /* 1024px */
$large-min-width: 64.063em; /* 1025px */
$large-max-width: 80em; /* 1280px */
$xlarge-min-width: 80.063em; /* 1281px */
$xlarge-max-width: 90em; /* 1400px */
$xxlarge-min-width: 90.063em; /* 1441px */
$xxlarge-max-width: 120em; /* 1920px */
$xxxlarge-min-width: 120.063em; /* 1921px */