mirror of
https://github.com/dolthub/dolt.git
synced 2026-02-11 18:49:14 -06:00
52 lines
688 B
CSS
52 lines
688 B
CSS
/**
|
|
* Copyright 2016 The Noms Authors. 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);
|
|
}
|
|
|
|
.node p {
|
|
font-size: 11px;
|
|
font-family: "Menlo", monospace;
|
|
}
|
|
|
|
.link {
|
|
fill: none;
|
|
stroke: #ccc;
|
|
stroke-width: 1.5px;
|
|
}
|