mirror of
https://github.com/dolthub/dolt.git
synced 2026-05-03 11:30:28 -05:00
8ffcc4f89e
* 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
46 lines
525 B
CSS
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;
|
|
}
|