Skip to content

Instantly share code, notes, and snippets.

@dilvane
dilvane / sample.html
Last active March 21, 2017 14:51
Unitegallery tiles
<!DOCTYPE html>
<html lang="en">
<head>
<link rel='stylesheet' href='http://cdnjs.cloudflare.com/ajax/libs/unitegallery/1.7.40/css/unite-gallery.css' type='text/css'/>
<link rel='stylesheet' href='http://cdnjs.cloudflare.com/ajax/libs/unitegallery/1.7.40/themes/default/ug-theme-default.css' type='text/css'/>
</head>
<body>
@dilvane
dilvane / my-flexbox-grid.scss
Created January 5, 2016 14:13
Custom flexbox grid with angular material layout API
@import '../../bower_components/angular-material/angular-material.scss';
$columns: 12;
$gutter: 24px;
.layout-row, .layout-column {
margin-left: floor(($gutter / -2));
margin-right: ceil(($gutter / -2));
}