Skip to content

Instantly share code, notes, and snippets.

View probil's full-sized avatar
:shipit:
Exploring

Max Liashuk probil

:shipit:
Exploring
View GitHub Profile
@probil
probil / bg-to-full-height.css
Last active August 29, 2015 14:05
Simple code to position your background to true bottom of page (without it browser place your background to bottom of screen)
html {
min-height: 100%;
height: auto;
}
body{
background: url("../img/bg-top.png"), url("../img/bg-middle.png"), url("../img/bg-bottom.png");
background-repeat: no-repeat,no-repeat, no-repeat;
background-position: top center, center center, bottom center;
}
@probil
probil / jsbin.yemiwo.css
Created April 13, 2014 12:33
Simple method to create row with description that slide out when you click on it.
.desc-row td{
margin: 0 !important;
padding: 0 !important;
border: 0 !important;
}
.description{
padding: 5px 8px;
border-bottom: 1px solid #ddd;
}
.table-row{