Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_timelines.scss « src - github.com/picturepan2/spectre.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 67041a85e56e343e133e62aa3e7aa2480a17ab6c (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
// Timelines
.timeline {
  .timeline-item {
    display: flex;
    margin-bottom: $unit-6;
    position: relative;
    &::before {
      background: $border-color;
      content: "";
      height: 100%;
      left: 11px;
      position: absolute;
      top: $unit-6;
      width: 2px;
    }

    .timeline-left {
      flex: 0 0 auto;
    }

    .timeline-content {
      flex: 1 1 auto;
      padding: 2px 0 2px $layout-spacing-lg;
    }

    .timeline-icon {
      border-radius: 50%;
      color: $light-color;
      display: block;
      height: $unit-6;
      text-align: center;
      width: $unit-6;
      &::before {
        border: $border-width-lg solid $primary-color;
        border-radius: 50%;
        content: "";
        display: block;
        height: $unit-2;
        left: $unit-2;
        position: absolute;
        top: $unit-2;
        width: $unit-2;
      }

      &.icon-lg {
        background: $primary-color;
        line-height: $line-height;
        &::before {
          content: none;
        }
      }
    }
  }
}