Skip to content

Instantly share code, notes, and snippets.

@travhimself
travhimself / gist:2815760
Created May 27, 2012 20:23
text hipster ipsum
Cardigan sustainable kogi mixtape you probably haven't heard of them street art american apparel, wolf leggings vinyl polaroid portland photo booth food truck high life. Leggings four loko direct trade vegan viral, bushwick american apparel. 3 wolf moon lomo master cleanse yr carles polaroid, gluten-free banksy high life swag mlkshk mixtape kale chips butcher. Lomo lo-fi pinterest authentic biodiesel. Stumptown bicycle rights mlkshk, ethnic 3 wolf moon vinyl lo-fi brooklyn artisan sriracha post-ironic leggings. Cosby sweater sriracha shoreditch gastropub marfa cred. Chambray art party tofu twee, kale chips salvia single-origin coffee truffaut pinterest wayfarers jean shorts banh mi DIY biodiesel.
Ethical four loko forage, sriracha authentic bicycle rights polaroid biodiesel lo-fi 3 wolf moon organic ennui you probably haven't heard of them food truck. DIY odd future aesthetic shoreditch pinterest fanny pack, swag four loko retro trust fund. Pinterest semiotics post-ironic DIY wayfarers. Odd future before the
@travhimself
travhimself / gist:2815754
Created May 27, 2012 20:22 — forked from Domw/Lorem ipsum
text lorem ipsum
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi sodales tellus ut dolor pharetra ornare. Ut felis urna, aliquam suscipit adipiscing sit amet, lobortis non urna. Quisque vulputate convallis magna vel commodo. Pellentesque nec nisl tortor. Etiam et posuere arcu. Pellentesque augue arcu, fermentum ut consectetur non, rhoncus ut erat. Nulla facilisi. Duis purus purus, malesuada ut aliquet nec, feugiat sit amet odio. Sed gravida tincidunt lacus, vel semper leo dapibus vel.
Pellentesque placerat, lectus ac congue ornare, velit mauris tempus metus, vel sollicitudin neque justo vel libero. Cras placerat, ipsum at sagittis lacinia, nunc augue sagittis mi, ut consectetur sapien nisi ac sapien. Donec arcu diam, suscipit vel venenatis vitae, vehicula semper odio. Fusce porta magna tristique leo malesuada faucibus. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Maecenas at ligula eget dui hendrerit interdum. Etiam commodo fermentum tortor, in congue diam consect
@travhimself
travhimself / gist:2815683
Created May 27, 2012 20:03
less css skeleton
/* Scaffolding
================================================== */
body {
}
/* Style
================================================== */
@travhimself
travhimself / CSS: Eric Meyer Reset
Created May 27, 2012 19:57 — forked from tcomaj/CSS: Eric Meyer Reset
css eric meyer reset
/* v2.0 | 20110126
http://meyerweb.com/eric/tools/css/reset/
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
@travhimself
travhimself / gist:2815652
Created May 27, 2012 19:51
less css background gradient
.bgrad (@start, @end) {
background-color: @start;
background-image: -o-linear-gradient(top, @start, @end);
background-image: -ms-linear-gradient(top, @start, @end);
background-image: -moz-linear-gradient(top, @start, @end);
background-image: -webkit-linear-gradient(top, @start, @end);
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(@start), to(@end));
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='@start', endColorstr='@end');
}
@travhimself
travhimself / gist:2815636
Created May 27, 2012 19:45
less css border radius
.brdr (@x) {
border-radius: @x;
-moz-border-radius: @x;
-webkit-border-radius: @x;
}
@travhimself
travhimself / gist:2815634
Created May 27, 2012 19:45
less css shadow
.shdw (@x, @y, @blur, @color) {
box-shadow: @x @y @blur @color;
-moz-box-shadow: @x @y @blur @color;
-webkit-box-shadow: @x @y @blur @color;
}
@travhimself
travhimself / gist:2815631
Last active May 26, 2017 18:10
less css clearfix
.cf { /* from: http://nicolasgallagher.com/micro-clearfix-hack/ */
&:before,
&:after {
content: "";
display: table;
}
&:after {
clear: both;
}
@travhimself
travhimself / CSS: IR
Last active October 5, 2015 13:48 — forked from attegists/CSS: IR
css image replace
.ir {
border: 0;
font: 0/0 a;
text-shadow: none;
color: transparent;
background-color: transparent;
}
@travhimself
travhimself / gist:2815610
Created May 27, 2012 19:33
html basic form
<form class="" action="" method="post">
<input type="text" class="" placeholder="username" />
<input type="text" class="" placeholder="password" />
<input type="submit" class="submit" name="submit" value="submit" />
</form>