Skip to content

Instantly share code, notes, and snippets.

@Golodhros
Forked from milroc/README.md
Last active August 29, 2015 14:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Golodhros/ffc16980bec3e6fc5e86 to your computer and use it in GitHub Desktop.
Save Golodhros/ffc16980bec3e6fc5e86 to your computer and use it in GitHub Desktop.
My First Block

Golodhros' first block!

<!DOCTYPE html>
<head>
<meta charset="utf-8">
<link type="text/css" rel="stylesheet" href="style.css"/>
</head>
<body>
<h2 class="block-title">Golodhros first block</h2>
<div id="chart"></div>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="src.js"></script>
</body>
</html>
d3.unconf = function() {
console.log('Golo!');
};
d3.unconf();
@import url("//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,400,300,700");
body {
font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Helvetica, Arial, sans-serif;
}
.block-title {
color: #222;
font-size: 44px;
font-style: normal;
font-weight: 300;
text-rendering: optimizelegibility;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment