-
-
Save matthewmueller/6566524 to your computer and use it in GitHub Desktop.
nice color scheme - http://jsbin.com/AQAmOnO/1/edit
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
.blue { | |
height: 200px; | |
width: 100%; | |
background: #293e81; | |
} | |
.white { | |
height: 200px; | |
width: 100%; | |
background: #F7F7F7 | |
} | |
.red { | |
height: 200px; | |
width: 100%; | |
background: #CC2A46; | |
} | |
.black { | |
height: 200px; | |
width: 100%; | |
background: #333 | |
} |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta charset=utf-8 /> | |
<title>JS Bin</title> | |
</head> | |
<body> | |
<div class="blue"></div> | |
<div class="white"></div> | |
<div class="red"></div> | |
<div class="black"></div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment