summaryrefslogtreecommitdiff
path: root/app/assets/stylesheets/pages/stat_graph.scss
blob: 8e2c42c1bd341b06b950b964d985717c14b3831a (plain)
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
.tint-box {
  background: $stat-graph-common-bg;
  position: relative;
  margin-bottom: 10px;
}

.area {
  fill: $stat-graph-area-fill;
  fill-opacity: 0.5;
}

.axis {
  font-size: 10px;
}

#contributors-master {
  @include make-md-column(12);

  svg {
    width: 100%;
  }
}

#contributors {
  .contributors-list {
    margin: 0 0 10px;
    list-style: none;
    padding: 0;

    svg {
      width: 100%;
    }
  }

  .person {
    @include make-md-column(6);
    margin-top: 10px;

    @media (max-width: $screen-xs-max) {
      width: 100%;
    }

    .spark {
      display: block;
      background: $stat-graph-common-bg;
      width: 100%;
    }

    .area-contributor {
      fill: $stat-graph-orange-fill;
    }
  }
}

.selection rect {
  fill-opacity: 0.1;
  stroke-width: 1px;
  stroke-opacity: 0.4;
  shape-rendering: crispedges;
  stroke-dasharray: 3 3;
}