Sha256: 3b695e9713210c1585d8657220d4ae1ecbe497d495c7c4c5239d10360b362754

Contents?: true

Size: 1.23 KB

Versions: 6

Compression:

Stored size: 1.23 KB

Contents

/*
 * Distributed Network Visualization
 * "Light" Styles
 * By Ryan Sandor Richards (ryan@fastly.com)
 */

body {
	background: #ddd;
	text-align: center;
	font-family: helvetica;
}

a {
	color: #be1919;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}


#network {
	border-radius: 10px;
	padding: 10px;
	background: #f5f5f5;
	margin: 10px auto;
	border: 1px solid rgba(0, 0, 0, 0.15);
	box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
}

/*
 * Node Styles
 */
circle.node {
  stroke-width: 2;
  stroke: #f5f5f5;
  fill: #aaa;
	cursor: pointer;
}

circle.db {
  fill: #1f77b4;
}

circle.stats {
  fill: #ff7f0e;
}

circle.rails {
  fill: #d62728;
}

circle.proxy {
  fill: #8c564b;
}

circle.disabled {
    opacity: 0.5;
}

/*
 * Link Styles
 */
line.link {
  stroke-width: 2;
}

line.link:hover {
	stroke: lime;
	stroke-width: 5;
}

line.active {
	stroke: #ddd;
	stroke-width: 3;
}

line.broken {
	stroke: red;
	stroke-dasharray: 2, 2;
}

line.disabled {
	stroke: #b0b0b0;
	stroke-dasharray: 4,2;
}

/*
 * Text Styles
 */
text {
	cursor: pointer;
}

text.name {
	font-size: 15pt;
	text-shadow: 0px 0px 12px rgba(255, 255, 255, 0.8);
}

text.role {
	fill: #eee;
	font-size: 16pt;
	/*text-shadow: 0px 0px 12px rgba(255, 255, 255, 0.8);*/
}

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
bum-0.0.17 public/css/light.css
bum-0.0.16 public/css/light.css
bum-0.0.15 public/css/light.css
bum-0.0.14 public/css/light.css
bum-0.0.13 public/css/light.css
bum-0.0.12 public/css/light.css