mirror of
https://github.com/dolthub/dolt.git
synced 2026-02-08 10:26:35 -06:00
47 lines
622 B
CSS
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;
|
|
}
|