7.1
15832144755
2021-07-01 ba21fcf8482029f7634b62d60daf171538001769
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
.mt-container {
  max-width: 570px;
}
 
.modern-timeline {
  list-style: none;
  position: relative;
  padding: 50px 0 50px;
  margin: 0;
 
  &:before {
    position: absolute;
    background: $m-color_18;
    bottom: 0;
    left: 50%;
    top: 0;
    content: "";
    width: 3px;
    margin-left: -1.5px;
  }
 
  > li {
    margin-bottom: 50px;
    position: relative;
 
    &:after, &:before {
      display: table;
      content: "";
    }
 
    > {
      .modern-timeline-badge {
        position: absolute;
        background: $m-color_12;
        border: 3px solid $m-color_18;
        border-radius: 100%;
        height: 20px;
        width: 20px;
        margin-left: -10px;
        text-align: center;
        z-index: 1;
        left: 50%;
        top: 32px;
      }
 
      .modern-timeline-panel {
        position: relative;
        border: 1px solid $m-color_18;
        background: $m-color_18;
        border-radius: .1875rem;
        transition: .3s ease-in-out;
        float: left;
        width: 46%;
        border-radius: 6px;
 
        &:before {
          position: absolute;
          background: $m-color_18;
          right: -37px;
          top: 40px;
          transition: .3s ease-in-out;
          content: " ";
          width: 37px;
          height: 3px;
          display: block;
        }
      }
    }
 
    &:nth-child(even) > .modern-timeline-panel:before {
      right: auto;
      left: -37px;
      width: 37px;
    }
 
    &:after {
      clear: both;
    }
 
    > .modern-timeline-panel {
      .modern-timeline-preview img {
        width: 100%;
        border-top-left-radius: 6px;
        border-top-right-radius: 6px;
      }
 
      *:last-child {
        margin-bottom: 0;
      }
    }
 
    &:nth-child(even) > .modern-timeline-panel {
      border: 1px solid $m-color_18;
      float: right;
    }
 
    > .modern-timeline-panel {
      *:last-child {
        margin-bottom: 0;
      }
 
      .modern-timeline-body {
        padding: 30px 20px;
        border-bottom-left-radius: 6px;
        border-bottom-right-radius: 6px;
 
        h4 {
          color: $m-color_14;
          margin-bottom: 20px;
          font-size: 1.125rem;
        }
 
        p {
          color: $m-color_6;
          margin-bottom: 0;
 
          a {
            display: block;
          }
        }
      }
 
      *:last-child {
        margin-bottom: 0;
      }
    }
  }
}
 
.modern-timeline-top:before, .modern-timeline-bottom:before {
  background: $m-color_18;
  position: absolute;
  height: 3px;
  width: 50px;
  display: block;
  content: "";
  bottom: 0;
  left: 50%;
  margin-left: -25px;
}
 
.modern-timeline-top:before {
  top: 0;
}
 
@media (max-width: 767px) {
  ul.modern-timeline > li > {
    .modern-timeline-panel {
      border: 1px solid $m-color_18;
      float: right;
      width: 100%;
    }
 
    .modern-timeline-badge {
      display: none;
    }
  }
 
  .modern-timeline > li > .modern-timeline-panel:before {
    display: none;
  }
}