Skip to content

Instantly share code, notes, and snippets.

@chrismarksus
Forked from anonymous/dabblet.css
Last active February 4, 2016 21:49
Show Gist options
  • Save chrismarksus/e72a86e2b62bbdbc665f to your computer and use it in GitHub Desktop.
Save chrismarksus/e72a86e2b62bbdbc665f to your computer and use it in GitHub Desktop.
The difference between these 2 purples
/**
* The difference between these 2 purples
*/
body{
font-weight: bold;
font-family: 'Comfortaa', cursive;
font-size: 2em;
background-color: #d3d3d3;
}
.container {
margin: 0 auto;
display: flex;
justify-content: center;
align-items: center;
resize: both;
overflow: auto;
}
.color {
color:#fff;
height:100%;
width: 400px;
height:400px;
float: left;
padding: .5em;
}
.color-a {
background-color:#592F6F;
}
.color-b {
background-color:#6a3379;
}
<!-- content to be placed inside <body>…</body> -->
<link href='https://fonts.googleapis.com/css?family=Comfortaa' rel='stylesheet' type='text/css'>
<div class="container">
<div class="color color-a">#592F6F</div>
<div class="color color-b">#6a3379</div>
</div>
// alert('Hello world!');
{"view":"separate","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment