BigW Consortium Gitlab

stat_graph.scss 684 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
.tint-box {
  background: #f3f3f3;
  position: relative;
  margin-bottom: 10px;
}

.area {
  fill: #1db34f;
  fill-opacity: 0.5;
}

.axis {
  fill: #aaa;
  font-size: 10px;
}

17 18 19 20 21
#contributors {
  .contributors-list {
    margin: 0 0 10px 0;
    list-style: none;
    padding: 0;
22
  }
23

24 25 26 27 28 29 30
  .person {
    &:nth-child(even) {
      float: right;
    }
    float: left;
    margin-top: 10px;
  }
31

32 33 34 35
  .person .spark {
    display: block;
    background: #f3f3f3;
  }
36

37 38 39
  .person .area-contributor {
    fill: #f17f49;
  }
40 41 42 43 44 45 46 47 48 49 50
}

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