Skip to content

Instantly share code, notes, and snippets.

@stefano-rs
Created April 7, 2016 15:04

Revisions

  1. stefano-rs created this gist Apr 7, 2016.
    25 changes: 25 additions & 0 deletions base_media.css
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,25 @@
    /* Large desktops and laptops */
    @media (min-width: 1200px) {

    }

    /* Landscape tablets and medium desktops */
    @media (min-width: 992px) and (max-width: 1199px) {

    }


    /* Portrait tablets and small desktops */
    @media (min-width: 768px) and (max-width: 991px) {

    }

    /* Landscape phones and portrait tablets */
    @media (max-width: 767px) {

    }

    /* Portrait phones and smaller */
    @media (max-width: 480px) {

    }