Created
December 3, 2016 19:25
-
-
Save guzmonne/c3e21c29a3d4f344662d921d64e62867 to your computer and use it in GitHub Desktop.
Basic colors for simple App layout.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .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