Skip to content

Instantly share code, notes, and snippets.

View hulkish's full-sized avatar
💥
pow, things and more things!

Steven Hargrove hulkish

💥
pow, things and more things!
View GitHub Profile
@mool
mool / Dockerrun.aws.json.template
Created February 8, 2017 13:12
Elastic Beanstalk deploy
{
"AWSEBDockerrunVersion": "1",
"Authentication": {
"Bucket": "bucket_name",
"Key": "docker/dockercfg"
},
"Image": {
"Name": "company/<image>"
},
"Ports": [
@rozzy
rozzy / devices-mixins.less
Last active August 29, 2015 14:09
Auto retina images with background-size
@screenMobile: 320px;
@screenTablet: 768px;
@screenDesktop: 992px;
@screenLarge: 1200px;
@screenExtraLarge: 1600px;
.mobile(@rules, @invert: false) {
.mixin (@invert) when (@invert = false) {
@query: ~"(min-width: @{screenMobile})";
@media @query {
@awood
awood / responsive-columns.less
Created April 24, 2014 18:51
A simple LESS style sheet that you can use in Bootstrap 3 to create columns of uniform height.
// Courtesy of http://www.minimit.com/articles/solutions-tutorials/bootstrap-3-responsive-columns-of-same-height
.column-rules(@type) {
.container-@{type}-height {
display: table;
padding-left: 0px;
padding-right: 0px;
}
.row-@{type}-height {