Skip to content

Instantly share code, notes, and snippets.

View davo's full-sized avatar
🦮
Golden

Davo Galavotti davo

🦮
Golden
View GitHub Profile
@davo
davo / SassMeister-input.scss
Created October 11, 2015 15:23
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
// Crear la clases y poner un borde en color RGBA.
$infraestructura: #cca2fc;
$salud: #2bfda6;
$educacion: #88ffff;
@davo
davo / SassMeister-input.scss
Created October 11, 2015 01:44
Generated by SassMeister.com.
// ----
// libsass (v3.2.5)
// ----
// Crear la clases y poner un borde en color RGBA.
$infraestructura: rgba(204, 162, 252,.5);
$salud: rgba(43, 253, 166,.5);
$educacion: rgba(136, 255, 255,.5);
@davo
davo / style.css
Last active October 5, 2015 21:08
Chequeado Fuente y Color
p {
margin: 0 0 20px; /* un poco más de espacio entre parrafos */
font-size: 1.25em; /* un poco más de grande la tipografía para leer mejor */
line-height: 1.6em; /* un poco más altura de línea para que sea más claro el foco línea por línea */
color: #444; /* un color más oscuro para el texto del parrafo */
}
@davo
davo / README.md
Last active July 29, 2019 00:46
Moebio Framework - Network Example
@davo
davo / index.html
Last active September 2, 2015 21:44
Debug alignments with CSS
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>Debug alignments with CSS</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
@davo
davo / README.md
Last active August 29, 2015 14:27 — forked from jazzido/README.md
Diferencia porcentual votos positivos al FPV entre PASO 2011 y 2015 — Por provincia
@davo
davo / index.html
Last active August 29, 2015 14:26 — forked from mbostock/.block
Force-Directed Graph with Mouseover
<!DOCTYPE html>
<meta charset="utf-8">
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>
<style>
.link {
fill: none;
stroke: #666;
stroke-width: 1.5px;
}
@davo
davo / README.md
Last active August 29, 2015 14:25 — forked from mbostock/.block
Multi-Foci Force Layout

Click to perturb or drag the nodes!

This example demonstrates the flexibility of D3's force layout. By using position Verlet integration, it is easy to add custom forces to a layout. In this example, the nodes are clustered around four foci using additional forces: the odd nodes are pushed down, the even nodes are pushed up, and a similar bisecting force is applied laterally. These custom forces are based purely on the index of the node, but they could just as easily be derived from properties of data!

@davo
davo / README.md
Last active August 29, 2015 14:25 — forked from mbostock/.block
Build Your Own Graph!

Click to add nodes! Nodes near the cursor will be linked to the new node.

D3's force layout uses the Barnes–Hut approximation to compute repulsive charge forces between all nodes efficiently. Links are implemented as geometric constraints on top of position Verlet integration, offering greater stability. A virtual spring between each node and the center of the chart prevents nodes from drifting into space.

@davo
davo / index.html
Last active August 29, 2015 14:25 — forked from nbremer/README.md
Gooey Effect - Line
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8"/ >
<title>Gooey effect - Line</title>
<script src="http://d3js.org/d3.v3.min.js"></script>
<!-- jQuery -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>