Skip to content

Instantly share code, notes, and snippets.

View ismailfarooq's full-sized avatar
🎯
Focusing

Ismail Farooq ismailfarooq

🎯
Focusing
View GitHub Profile
<?php
/*
http://stackoverflow.com/questions/12448134/social-share-links-with-custom-icons
http://petragregorova.com/articles/social-share-buttons-with-custom-icons
wp_enqueue_style('fontAwesome', '//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css', array(), '4.3.0', 'all');
use in template files:: <?php echo do_shortcode('[social_sharing]') ; ?>
*/
@ismailfarooq
ismailfarooq / mixin.css
Created May 29, 2018 10:56
SASS Media Query Mixin
.test {
padding: 2rem;
font-size: 1.8rem;
}
@media (max-width: 767px) {
.test {
max-width: inherit;
}
}
@media (min-width: 768px) {