Skip to content

Commit

Permalink
Visual tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
caufieldjh committed Mar 7, 2024
1 parent 7f05585 commit 6108c4c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/docs/d3_viz.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ function generateD3Tree(jsonFile, marginSettings, camelcase) {

// Shared code here...
var margin = marginSettings,
width = 1600 - margin.right - margin.left,
height = 2000 - margin.top - margin.bottom;
width = 2600 - margin.right - margin.left,
height = 800 - margin.top - margin.bottom;

var i = 0,
duration = 750,
Expand Down
7 changes: 4 additions & 3 deletions src/docs/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,13 @@ h1,h2,h3,h4,h5,h6,footer,p {
cursor: pointer;
}
.node text {
font: 18px serif;
text-shadow:-2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff;
font: 20px serif;
/* text-shadow:-4px -4px 0 #fff, 4px -4px 0 #fff, -4px 4px 0 #fff, 4px 4px 0 #fff; */

}
.link {
fill: none; !important;
stroke: rgba(100, 100, 100, 0.6); !important;
stroke: rgba(100, 100, 100, 0.5); !important;
stroke-width: 4.5px; !important;
}
.small-text {
Expand Down

0 comments on commit 6108c4c

Please sign in to comment.