Skip to content

Instantly share code, notes, and snippets.

@Zhurbin
Zhurbin / gist:26f0511d51321bad188a
Created December 23, 2014 09:15
Sticky footer
http://css-tricks.com/snippets/css/sticky-footer/
http://ryanfait.com/sticky-footer/
@Zhurbin
Zhurbin / css
Created December 23, 2014 09:04
Corner ribbon
.ribbon-wrapper-green {
width: 85px;
height: 88px;
overflow: hidden;
position: absolute;
top: -3px;
right: -3px;
}
.ribbon-green {
@Zhurbin
Zhurbin / gist:009383347c2916532050
Created December 23, 2014 09:00
standart specify the dimensions for containers
.container {
width: 100%;
max-width: 1400px;
margin: 0 auto;
}
@Zhurbin
Zhurbin / gist:64014e046272f106e66f
Created December 23, 2014 08:55
How to get HTML5 Boilerplate-style Conditional Comments Working in Slim
doctype html
/[if lt IE 7]
| <html class="ie6">
/[if IE 7]
| <html class="ie7">
/[if IE 8]
| <html class="ie8">
/[if IE 9]
| <html class="ie9">
| <!--[if (gte IE 9)|!(IE)]<!--> <html> <!--<![endif]-->