Files
dolt/clients/js/splore/styles.css
T
Aaron Boodman 8ffcc4f89e Split clients/* into clients/go and clients/js
* clients/counter -> clients/go/counter

* remove last little bit of crunchbase

* clients/csv -> clients/go/csv and other cleanups

* clients/flags -> clients/go/flags

* clients/fs -> clients/js/fs and other cleanups

* clients/json_importer -> clients/go/json-import

* move clients/plotly_bar_chart -> clients/js/bar-chart

* move clients/server -> clients/go/server

* move clients/shove -> clients/go/shove

* move clients/splore -> client/js/splore

* move clients/struct-by-name -> clients/js/struct-by-name

* move clients/test_util -> clients/go/test_util

* move clients/url-fetch -> clients/js/url-fetch

* move clients/util -> clients/go/util

* move clients/xml_importer -> clients/xml
2016-05-05 20:54:01 -07:00

46 lines
525 B
CSS

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);
}
.node p {
font-size: 11px;
font-family: "Menlo", monospace;
}
.link {
fill: none;
stroke: #ccc;
stroke-width: 1.5px;
}