Blame view

datalets/graph-datalet/static/css/graphStyle.css 1.41 KB
c49910f8   Luigi Serra   graph updates
1
2
3
4
  circle{

      stroke-width: 2.5px;

  }

  

ce4b5fb1   Luigi Serra   graph-datalet
5
  .text {

c49910f8   Luigi Serra   graph updates
6
      font-family: 'Roboto', sans-serif;

ce4b5fb1   Luigi Serra   graph-datalet
7
8
9
10
11
12
13
14
      visibility: hidden

  }

  

  .node {

      cursor: move;

      fill: #fff;

      stroke: #959595;

      stroke-width: 4.5px

c49910f8   Luigi Serra   graph updates
15
      z-index: 100;

ce4b5fb1   Luigi Serra   graph-datalet
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
  }

  

  .node.fixed {

      cursor: pointer;

      cursor: hand;

      stroke-width: 6px

  }

  

  .link {

      stroke: #d0d0d0;

      stroke-width: 2.5px

  }

  

  g foreignObject {

      z-index: 100;

      position: relative;

      -webkit-transition: opacity .5s ease-in-out;

      -moz-transition: opacity .5s ease-in-out;

      -ms-transition: opacity .5s ease-in-out;

      -o-transition: opacity .5s ease-in-out;

      transition: opacity .5s ease-in-out

  }

  

  g foreignObject div {

33ee61fd   Luigi Serra   graph updates
40
      font-family: 'Roboto', sans-serif;

ce4b5fb1   Luigi Serra   graph-datalet
41
      display: inline-block;

33ee61fd   Luigi Serra   graph updates
42
      font-size: 12px;

ce4b5fb1   Luigi Serra   graph-datalet
43
      text-decoration: none;

33ee61fd   Luigi Serra   graph updates
44
      padding: 0px

ce4b5fb1   Luigi Serra   graph-datalet
45
46
47
48
49
50
51
  }

  

  g foreignObject a:hover {

      background-color: #f4f4f4;

      text-decoration: none

  }

  

ce4b5fb1   Luigi Serra   graph-datalet
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
  .r {

      color: #c82528

  }

  

  .p {

      color: #662d91

  }

  

  .y {

      color: #f69a43

  }

  

  .g {

      color: #519c76

  }

  

  .header {

      text-align: center

  }

  

  .n1 {

      font-size: 8em;

      height: 120px;

      color: #595a5a;

      letter-spacing: -4px;

      line-height: 1

  }

  

  .n1 span {

      color: #c82528;

      font-weight: 700

  }

  

  .n2 {

      font-size: 1.5em;

      line-height: 1

  }

  

  .n2 span {

      display: block

  }

  

  span.n4 {

      font-size: .8em;

      padding-top: 10px;

      line-height: 1.3

ce4b5fb1   Luigi Serra   graph-datalet
98
  }