Skip to content

Instantly share code, notes, and snippets.

View EgoAnt's full-sized avatar

Aaron Clifford EgoAnt

View GitHub Profile
@EgoAnt
EgoAnt / .gitignore
Last active August 29, 2015 14:27 — forked from thebeardphantom/.gitignore
Unity GitIgnore
# Ignore everything
/*
/*/
# Inverse ignore some stuff
!/Assets/
!/ProjectSettings/
!.gitignore
# Inverse ignore visual studio files
@EgoAnt
EgoAnt / gist:3297391
Created August 8, 2012 18:36
Printing CSS Background Colours - Using CSS Borders
<style>
* {
font-family: Arial, Verdana, Georgia, 'Times New Roman';
color: #646464;
}
.couponWrapper {
width: 412px;
height: 215px;
border: 2px dashed #000;
position: relative;
@EgoAnt
EgoAnt / gist:3297266
Created August 8, 2012 18:20
Printing CSS Backgrounds - the Wrong Way
<style>
* {
font-family: Arial, Verdana, Georgia, 'Times New Roman';
color: #646464;
}
.couponWrapper {
width: 412px; height: 215px; border: 2px dashed #000; position: relative;
}
.couponHeader {
position: absolute;