aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/gas-customization/gas-price-chart/index.scss
blob: bfe9b807b433f6381d634515776ddae1a2e8d3df (plain) (blame)
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
39
40
41
42
43
44
45
46
47
48
49
50
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
97
98
99
100
101
102
103
104
.gas-price-chart {
  display: flex;
  position: relative;

  .tick text, .c3-axis-x-label, .c3-axis-y-label {
    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    line-height: normal;
    font-size: 8px;
    text-align: center;
    fill: #9A9CA6 !important;
  }

  .custom-tooltip {
    background: rgba(0, 0, 0, 1);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 3px;
    transform: translate(-41px, -50px);
    opacity: 1 !important;
    width: 44px;
    height: 21px;
    z-index: 1;
  }

  .tooltip-arrow {
      background: rgba(0, 0, 0, 1);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.5);
    top: -35px;
    left: -23px;
    transform: rotate(45deg);
    opacity: 1 !important;
    width: 9px;
    height: 9px;
    position: absolute;
    display: inline-block;
  }

  .custom-tooltip th {
    font-family: Roboto;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  font-size: 10px;
  text-align: center;

  color: #FFFFFF;
  }

  .c3-circle._expanded_ {
    fill: #FFFFFF !important;
    stroke-width: 2.4px !important;
    stroke: #2d9fd9 !important;
  }

  .c3-axis-x-label, .c3-axis-y-label {
    font-weight: normal;
  }

  .tick text tspan {
    visibility: hidden;
  }

  .c3-circle {
    fill: #2d9fd9 !important;
  }

  .c3-line-data1 {
    stroke: #2d9fd9 !important;
    background: rgba(0,0,0,0) !important;
    color: rgba(0,0,0,0) !important;
  }

  .c3 path {
    fill: none;
  }

  .c3 path.c3-area-data1 {
    opacity: 1;
    fill: #e9edf1 !important;
  }

  .c3-xgrid-line line {
    stroke: #B8B8B8 !important;
  }

  .c3-axis .tick line {display: none;}

  .c3-axis-x .domain {
    fill: none;
    stroke: none;
  }

  .c3-axis-y .domain {
    fill: none;
    stroke: #C8CCD6;
  }
}

@import url(//fonts.googleapis.com/css?family=Roboto:400,700,300);

#chart {
  background: #F8F9FB
}