Skip to content
View mikem33's full-sized avatar

Block or report mikem33

Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. pandora-boilerplate pandora-boilerplate Public

    A HTML5 Boilerplate to start a project.

    Stylus 6

  2. pandora-wordpress-theme pandora-wordpress-theme Public

    A Wordpress Starter theme.

    PHP

  3. miguelmorera.com miguelmorera.com Public

    PHP

  4. characters-replacer characters-replacer Public

    A simple tool to replace characters in a string.

    Stylus

  5. Slugify PHP Function Slugify PHP Function
    1
    function slugify($str) {
    2
        // Convert to lowercase and remove whitespace
    3
        $str = strtolower(trim($str));
    4
    
                  
    5
        // Replace high ascii characters
  6. Media Queries Sass Mixins Media Queries Sass Mixins
    1
    // $Media $Queries
    2
    @mixin above($value, $width: true) {
    3
        @if $width {
    4
            @media (min-width: em($value)) {
    5
                @content;