Skip to content

Instantly share code, notes, and snippets.

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>diamonds</title>
<style type="text/css">
#diamonds {
width: 400px;
height: 400px;
@wernah
wernah / _grid.scss
Created July 12, 2013 06:36
We modified the original _grid.scss file to make a medium breakpoint.
//
// Grid Variables
//
$row-width: emCalc(1140px) !default;
$column-gutter: emCalc(0px) !default;
$total-columns: 12 !default;
//
// Grid Function
//
@wernah
wernah / gist:5696974
Created June 3, 2013 08:56
Responsive Mixins
@mixin respond-to($media) {
@if $media == small-mode {
@media only screen and (max-width: 420px) { @content }
}
@else if $media == medium-mode {
@media only screen and (max-width: 769px) { @content }
}
@else if $media == large-mode {
@media only screen and (max-width: 980px) { @content }
}
@font-face {
font-family: 'HelveticaNeue';
src: url('fonts/HelveticaNeue/HelveticaNeueLTCom-Roman/HelveticaNeueLTCom-Roman.eot');
src: url('fonts/HelveticaNeue/HelveticaNeueLTCom-Roman/HelveticaNeueLTCom-Roman.eot?#iefix') format('embedded-opentype'),
url('fonts/HelveticaNeue/HelveticaNeueLTCom-Roman/HelveticaNeueLTCom-Roman.woff') format('woff'),
url('fonts/HelveticaNeue/HelveticaNeueLTCom-Roman/HelveticaNeueLTCom-Roman.ttf') format('truetype'),
url('fonts/HelveticaNeue/HelveticaNeueLTCom-Roman/HelveticaNeueLTCom-Roman.svg') format('svg');
font-weight: normal;
font-style: normal;
}
@wernah
wernah / common.scss
Created November 8, 2012 11:14
Responsive mixins
@mixin respond-to($media) {
@if $media == iphone {
@media only screen and (max-width: 640px) { @content }
}
@else if $media == ipad {
@media only screen and (max-width: 980px) { @content }
}
@else if $media == ipad-landscape {
@media only screen and (max-width: 1024px) { @content }
}
@PosterCtrl = ($scope) ->
$scope.posters = [
title: "Blade Runner"
url: "http://cf2.imgobject.com/t/p/w342/keDKC1r2SyA6uDkEzzVyH8xUzW8.jpg"
,
title: "Labyrinth"
url: "http://cf2.imgobject.com/t/p/w342/40D6CVNGYbIgg7Sdt1jAYkFA08d.jpg"
,
title: "Jaws"