Files
dolt/samples/js/splore/styles.css
2016-08-03 22:54:03 -07:00

47 lines
622 B
CSS

/**
* Copyright 2016 Attic Labs, Inc. All rights reserved.
* Licensed under the Apache License, version 2.0:
* http://www.apache.org/licenses/LICENSE-2.0
*/
html, body, #splore {
height: 100%;
}
html, body, svg {
padding: 0;
margin: 0;
}
a {
color: black;
cursor: pointer;
text-decoration: none;
}
a:hover {
color: blue;
text-decoration: underline;
}
.node {
cursor: default;
transition: transform 200ms;
}
.node .icon {
fill: rgb(176, 196, 222);
stroke: steelblue;
stroke-width: 1.5px;
}
.node .icon.open {
fill: rgb(255, 255, 255);
}
.link {
fill: none;
stroke: #ccc;
stroke-width: 1.5px;
}