Blame view

datalets/graph-datalet/static/css/graphStyle.css 1.4 KB
c49910f8   Luigi Serra   graph updates
1
  circle{

cc7592d4   Luigi Serra   graphs update
2
      stroke-width: 1.5px;

c49910f8   Luigi Serra   graph updates
3
4
  }

  

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
      visibility: hidden

  }

  

  .node {

0e9ad951   Luigi Serra   graph updates
11
      cursor: pointer;

ce4b5fb1   Luigi Serra   graph-datalet
12
      fill: #fff;

01a6d2e5   Luigi Serra   graph updates
13
      stroke: #FFFFFF;

cc7592d4   Luigi Serra   graphs update
14
15
      stroke-width: 2.5px

      z-index: 10;

ce4b5fb1   Luigi Serra   graph-datalet
16
17
18
19
  }

  

  .node.fixed {

      cursor: pointer;

ce4b5fb1   Luigi Serra   graph-datalet
20
21
22
23
24
      stroke-width: 6px

  }

  

  .link {

      stroke: #d0d0d0;

01a6d2e5   Luigi Serra   graph updates
25
      stroke-width: 1.0px

ce4b5fb1   Luigi Serra   graph-datalet
26
27
28
29
30
31
32
33
34
35
36
37
38
  }

  

  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
39
      font-family: 'Roboto', sans-serif;

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

01a6d2e5   Luigi Serra   graph updates
41
      font-size: 8px;

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

33ee61fd   Luigi Serra   graph updates
43
      padding: 0px

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

  

  g foreignObject a:hover {

      background-color: #f4f4f4;

      text-decoration: none

  }

  

ce4b5fb1   Luigi Serra   graph-datalet
51
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
  .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
97
  }