Skip to content

Instantly share code, notes, and snippets.

View puginabox's full-sized avatar

Griffin Byron puginabox

View GitHub Profile
@puginabox
puginabox / css-centering.css
Created November 12, 2013 16:05
css centering template
.centerizer {
width: 100%;
height: auto;
margin: 0 auto;
padding: 0;
left: 0;
right: 0;
text-align: center;
}
@puginabox
puginabox / _mixins.scss
Created November 12, 2013 22:20
Sass/Compass mixins partial template
// =================== @mixins ================================/
@mixin breakpoint($point) {
//-------------------------- Mobile --------------|
@if $point == mobile {
@media (max-width: 500px) { @content; }
}
@puginabox
puginabox / _colors.scss
Created November 12, 2013 22:22
my color libraries (keep updating)
// Color Libraries partial (keep adding)
//Club Cafe Live
$flatBlue: #0075bf;
$hoverBlue: #00A3CC;
$steel: #BDCCD4;
$graphite: #3D454D;
$neoBlack: #231611;
$coal: #02111e;
@puginabox
puginabox / master.scss
Created November 12, 2013 22:24
Master Sass template
/*
site-rebrand (11/5/2013)
Client; _______
hand-written from scratch by Griffin Byron @ puginabox.com
©puginabox.com, 2013
@puginabox
puginabox / head.html
Created November 12, 2013 22:27
head tag for html5 template
<head>
<meta charset="UTF-8">
<title>Pug in a Box Design</title>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<!-- SEO -->
<meta name="description" content="">
<meta name="keywords" content="">
<!-- end of SEO -->
@puginabox
puginabox / grunt-html-livereload.html
Created November 12, 2013 22:29
grunt html livereload script tag
<!--
grunt html livereload script tag (put before closing body tag)
-->
<!--==================== @Debugging=======================-->
@puginabox
puginabox / github-push-to-server.php
Created November 12, 2013 22:31
github push to server php template
<!-- this pushed git changes to server -->
<?php `git pull`; // NOTE the back-ticks (``) in php means a Shell Script (SSH)
@puginabox
puginabox / config.rb
Created November 12, 2013 22:37
Deploy Sass/Compass/Susy config file for Grunt
# Deploy Sass/Compass/Susy config file for Grunt
#require "susy"
css_dir = '../css'
sass_dir = 'sass'
javascripts_dir = '../js'
output_style = :compressed
relative_assets = true
@puginabox
puginabox / gruntfile.js
Last active December 28, 2015 04:09
grunt settings template
/* Grunt rocks
Grunt settings template 1.0 | Griffin Byron
Griffin Byron @ puginabox.com
/*********************************************************************************/
/* Settings */
@puginabox
puginabox / .gitignore
Last active December 28, 2015 04:09
.gitignore template
# Compiled source #
###################
*.com
*.class
*.dll
*.exe
*.o
*.so