Skip to content

Instantly share code, notes, and snippets.

@aliciasebastien
Last active August 29, 2015 14:01
Show Gist options
  • Save aliciasebastien/26fe77eec7c8b593e51d to your computer and use it in GitHub Desktop.
Save aliciasebastien/26fe77eec7c8b593e51d to your computer and use it in GitHub Desktop.
Responsive Design

#Responsive Design#

/* Paragraphes en bleu par défaut */
p
{
    color: blue;
}

/* Nouvelles règles si la fenêtre fait au plus 1024px de large */
@media all and (max-width: 1024px)
{
    p
    {
        color: red; 
    }
}

@media all and (min-width: 1024px) and (max-width: 1280px)
{
    p
    {
        color: green; 
    }
}

Sources :

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment