This repository has been archived on 2021-03-10. You can view files and clone it, but cannot push or open issues or pull requests.
perktree/css/app.css

45 lines
531 B
CSS

/*
* app.css
* Copyright (C) 2019 pavle
*
* Distributed under terms of the BSD-3-Clause license.
*/
body {
width: 960px;
margin: auto;
margin-top: 2rem;
font: 12px sans-serif;
background: #282828;
}
#chart {
width: 100%;
height: 500px;
}
.node rect {
fill-opacity: .9;
shape-rendering: crispEdges;
cursor: pointer;
}
.node text {
pointer-events: none;
text-shadow: 0 1px 0 #fff;
fill: white;
}
.link {
fill: none;
stroke: #000;
stroke-opacity: .4;
}
.link:hover {
stroke-opacity: .8;
stroke: #888;
}