Skip to content

Instantly share code, notes, and snippets.

@guzmonne
Created December 3, 2016 19:25
Show Gist options
  • Select an option

  • Save guzmonne/c3e21c29a3d4f344662d921d64e62867 to your computer and use it in GitHub Desktop.

Select an option

Save guzmonne/c3e21c29a3d4f344662d921d64e62867 to your computer and use it in GitHub Desktop.
Basic colors for simple App layout.
.App {
background-color: black;
}
.App .header {
background-color: blue;
}
.App .body {
background-color: red;
}
.App .body .content {
background-color: green;
}
.App .body .sidebar {
background-color: yellow;
}
.App .footer {
background-color: grey;
}
.App:after,
.App .header:after,
.App .body:after,
.App .body .content:after,
.App .body .sidebar:after,
.App .footer:after {
content: '\00a0';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment