Skip to content

Instantly share code, notes, and snippets.

View yosefw's full-sized avatar

Yosef Waysman yosefw

View GitHub Profile
@yosefw
yosefw / aspect-ratio
Last active August 29, 2015 14:23
aspect-ratio mixin
.container {
position: relative;
display: block;
height: 0;
padding: 0;
overflow: hidden;
.responsive-element {
position: absolute;
top: 0;
@yosefw
yosefw / accessible-icon-only-buttons
Last active August 29, 2015 14:17
Accessible icon only buttons (Bootstrap + Font Awesome)
<button class="btn">
<span class="btn-label">Button label</span>
</button>
@yosefw
yosefw / ltr-in-rtl
Created January 12, 2015 18:03
For switching an element to LTR in an RTL parent
.lrm-rlm() {
&:before {
content: "\200E"; /* left-right mark */
}
&:after {
content: "\200F"; /* right-left mark */
}
}
@yosefw
yosefw / static_footer
Last active August 29, 2015 14:09
Static footer that sticks to the bottom, regardless of content height. Based on http://mystrd.at/modern-clean-css-sticky-footer/