This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* { | |
-webkit-box-sizing: border-box; /* Android ≤ 2.3, iOS ≤ 4 */ | |
-moz-box-sizing: border-box; /* Firefox 1+ */ | |
box-sizing: border-box; /* Chrome, IE 8+, Opera, Safari 5.1 */ | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Flexbox Grid System</title> | |
<link rel="stylesheet" href="css/fb-grid.css"> | |
</head> | |
<body> | |
<div class="row"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<title>HTML TEST: <empty></title> | |
<meta description="0.1"> | |
<meta author="Vedran Jaic"> | |
</head> | |
<body> | |
<a href="#"></a> | |
<abbr></abbr> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<title>HTML TEST: <filled></title> | |
<meta description="0.1"> | |
<meta author="Vedran Jaic"> | |
</head> | |
<body> | |
<a href="#">Lorem ipsum dolor sit amet.</a> | |
<abbr></abbr> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<title>SAMPLE</title> | |
<meta name="description" content="" /> | |
<meta name="keywords" content="" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=9" /> | |
<!-- CSS --> | |
<link rel="stylesheet" href="style.css" type="text/css" media="screen" charset="utf-8"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
defaults write com.apple.dock persistent-apps -array-add '{tile-data={}; tile-type="spacer-tile";}' | |
killall Dock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<title>Bootstrap 101 Template</title> | |
<meta name="description" content="" /> | |
<meta name="keywords" content="" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<!-- CSS --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Mixins | |
// http://css-tricks.com/media-queries-sass-3-2-and-codekit/ | |
@mixin breakpoint($point) { | |
@if $point == lg { | |
@media (min-width: 1200px) { @content; } | |
} | |
@else if $point == md { | |
@media (min-width: 992px) { @content; } | |
} | |
@else if $point == sm { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Gulp environment | |
// https://github.com/gulpjs/gulp-util#noop | |
// should start gulp with desired environment | |
// gulp --type production | |
.pipe(gutil.env.type === 'production' ? uglify() : gutil.noop()) |