Skip to content

Instantly share code, notes, and snippets.

View moladukes's full-sized avatar
🤙
Focus

Milo Delgado moladukes

🤙
Focus
View GitHub Profile
@moladukes
moladukes / base.css.scss
Last active August 29, 2015 14:19
Simple Fluid Grid with responsive font sizing
// Responsive text sizing
html {
@media (min-width: 768px) {
font-size: 62.5%;
}
@media (max-width: 767px) {
font-size: 52.5%;
}
@media (max-width: 504px) {
font-size: 42.5%;
@moladukes
moladukes / burger.css
Last active August 29, 2015 14:18
Animated drawer icon
.hamburger {
position: relative;
width: 20px;
height: 40px;
.patty {
position: absolute;
display: block;
width: 20px;
height: 1px;
background: #fff;