Bob's Family tree
Just need to copy this ino the url https://treehouse.gartner.io
| 1.3.1 |
Bob's Family tree
Just need to copy this ino the url https://treehouse.gartner.io
| [{ | |
| "name": "Niclas Superlongsurname", | |
| "class": "man", | |
| "textClass": "emphasis", | |
| "marriages": [{ | |
| "spouse": { | |
| "name": "Iliana", | |
| "class": "woman" | |
| }, | |
| "children": [{ | |
| "name": "James", | |
| "class": "man", | |
| "marriages": [{ | |
| "spouse": { | |
| "name": "Alexandra", | |
| "class": "woman" | |
| }, | |
| "children": [{ | |
| "name": "Eric", | |
| "class": "man", | |
| "marriages": [{ | |
| "spouse": { | |
| "name": "Eva", | |
| "class": "woman" | |
| } | |
| }] | |
| }, { | |
| "name": "Jane", | |
| "class": "woman" | |
| }, { | |
| "name": "Jasper", | |
| "class": "man", | |
| "extra": { | |
| "favorite_color": "Blue" | |
| } | |
| }, { | |
| "name": "Emma", | |
| "class": "woman" | |
| }, { | |
| "name": "Julia", | |
| "class": "woman" | |
| }, { | |
| "name": "Jessica", | |
| "class": "woman" | |
| }] | |
| }] | |
| }] | |
| }] | |
| }] |
| svg { | |
| font: 10px sans-serif; | |
| } | |
| .linage { | |
| fill: none; | |
| stroke: #000; | |
| } | |
| .marriage { | |
| fill: none; | |
| stroke: black; | |
| } | |
| .man { | |
| background-color: lightblue; | |
| border-style: solid; | |
| border-width: 1px; | |
| } | |
| .woman { | |
| background-color: pink; | |
| border-style: solid; | |
| border-width: 1px; | |
| } | |
| .emphasis{ | |
| font-style: italic; | |
| } | |
| p { | |
| padding:0; | |
| margin:0; | |
| } |