File: index.html

package info (click to toggle)
node-redux-devtools 3.13.1~git20230831-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 13,868 kB
  • sloc: javascript: 7,775; makefile: 20
file content (38 lines) | stat: -rw-r--r-- 704 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<html>
  <head>
    <title>State tree with d3-state-visualizer</title>
    <style type="text/css">
      .node {
        cursor: pointer;
      }

      .nodeCircle {
        stroke: black;
        stroke-width: 1.5px;
      }

      .nodeText {
        font-family: sans-serif;
        font-size: 10px;
      }

      .link {
        fill: none;
        stroke: #ccc;
        stroke-width: 1.5px;
      }

      .tooltip {
        font-family: Consolas, Menlo, Monaco, monospace;
        font-size: 0.8em;
        background: rgba(0, 0, 0, 0.5);
        color: white;
        padding: 10px;
        border-radius: 5px;
      }
    </style>
  </head>
  <body>
    <div id="root"></div>
  </body>
</html>