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
hr { | |
border: 0; | |
height: 1px; | |
background-image: linear-gradient(left , rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%); | |
background-image: -o-linear-gradient(left , rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%); | |
background-image: -moz-linear-gradient(left , rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%); | |
background-image: -webkit-linear-gradient(left , rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%); | |
background-image: -ms-linear-gradient(left , rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%); | |
background-image: -webkit-gradient( |
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
/* Large desktop */ | |
@media (min-width: 1200px) { } | |
/* Portrait tablet to landscape and desktop */ | |
@media (min-width: 768px) and (max-width: 979px) { } | |
/* Landscape phone to portrait tablet */ | |
@media (max-width: 767px) { } | |
/* Landscape phones and down */ |
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
function sortByLetter( array ) { | |
var length = array.length, | |
groups = {}, | |
item, | |
firstChar; | |
for ( var i = 0; i < length; i ++ ) { | |
item = array[ i ], | |
firstChar = item.charAt( 0 ); |
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
article img { | |
box-shadow: 5px 5px 0 0 rgb(238, 238, 238); | |
padding: 10px; | |
border: 1px solid rgb(238, 238, 238); | |
} |
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
@mixin responsive($media) { | |
@if $media == sm { | |
@media (min-width: 768px) { @content; } | |
} | |
@else if $media == md { | |
@media (min-width: 992px) { @content; } | |
} | |
@else if $media == lg { | |
@media (min-width: 1200px) { @content; } | |
} |
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
.blocks-stacked { | |
.block { | |
border: 1px solid #eee; | |
margin-left: 0; | |
margin-right: 0; | |
z-index: 1; | |
&:hover { | |
border-color: blue; | |
z-index: 2; |
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
grunt.initConfig({ | |
sass: { | |
files: ['<%= yeoman.app %>/styles/{,*/}*.scss'], | |
tasks: ['sass:server', 'autoprefixer'] | |
}, | |
sass: { | |
server: { | |
files: { | |
'.tmp/styles/main.css': '<%= yeoman.app %>/styles/main.scss' |
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
[alias] | |
co = checkout | |
ci = commit | |
s = status | |
p = push | |
pl = pull | |
hist = log --pretty=format:\"%h %ad | %s%d [%an]\" --graph --date=short |
OlderNewer