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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
/*
=======================
    Timeline Simple
=======================
*/
 
.timeline-simple {
  margin-bottom: 45px;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
 
  h3 {
    font-size: 23px;
    font-weight: 600;
  }
 
  p.timeline-title {
    position: relative;
    font-size: 19px;
    font-weight: 600;
    color: $m-color_14;
    margin-bottom: 28px;
 
    &:before {
      position: absolute;
      content: "";
      height: 2px;
      width: 70px;
      background: $m-color_14;
      border-radius: 50px;
      bottom: -2px;
      left: 15px;
    }
  }
 
  .timeline-list {
    p.meta-update-day {
      margin-bottom: 24px;
      font-size: 16px;
      font-weight: 600;
      color: $m-color_6;
    }
 
    .timeline-post-content {
      display: flex;
 
      > div > div {
        margin-top: 28px;
      }
 
      &:not(:last-child) > div > div {
        margin-bottom: 70px;
      }
 
      div.user-profile {
        position: relative;
        z-index: 2;
 
        &:after {
          content: '';
          position: absolute;
          border-color: inherit;
          border-width: 2px;
          border-style: solid;
          top: 15px;
          left: 34%;
          transform: translateX(-50%);
          width: 0;
          height: auto;
          top: 48px;
          bottom: -15px;
          border-right-width: 0;
          border-top-width: 0;
          border-bottom-width: 0;
          border-radius: 0;
          z-index: -1;
          border-color: $m-color_18;
        }
 
        img {
          width: 53px;
          height: 53px;
          border-radius: 50%;
          margin-right: 30px;
          -webkit-box-shadow: 0px 4px 9px 0px rgba(31, 45, 61, 0.31);
          box-shadow: 0px 4px 9px 0px rgba(31, 45, 61, 0.31);
        }
      }
 
      h4 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 0;
        color: $m-color_14;
      }
 
      svg {
        color: $m-color_6;
        vertical-align: text-bottom;
        width: 21px;
        height: 21px;
      }
 
      &:hover svg {
        color: $m-color_14;
        fill: rgba(27, 85, 226, 0.2392156863);
      }
 
      h6 {
        display: inline-block;
        font-size: 17px;
        font-weight: 600;
        margin-bottom: 11px;
        color: $m-color_5;
      }
 
      &:hover h6 {
        color: $m-color_6;
      }
 
      p.post-text {
        padding-left: 31px;
        color: $m-color_6;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 28px;
      }
 
      .post-contributers {
        padding-left: 31px;
 
        img {
          width: 38px;
          border-radius: 50%;
          margin-right: 7px;
          -webkit-box-shadow: 0px 6px 9px 2px rgba(31, 45, 61, 0.31);
          box-shadow: 1px 3px 7px 2px rgba(31, 45, 61, 0.31);
          -webkit-transition: all 0.35s ease;
          transition: all 0.35s ease;
          cursor: pointer;
          margin-bottom: 5px;
 
          &:hover {
            -webkit-transform: translateY(-3px) scale(1.02);
            transform: translateY(-3px) scale(1.02);
            box-shadow: none;
          }
        }
      }
 
      .post-gallery-img {
        padding-left: 31px;
 
        img {
          width: 20%;
          border-radius: 6px;
          -webkit-box-shadow: 0px 6px 9px 2px rgba(31, 45, 61, 0.31);
          box-shadow: 1px 3px 7px 2px rgba(31, 45, 61, 0.31);
          -webkit-transition: all 0.35s ease;
          transition: all 0.35s ease;
          cursor: pointer;
 
          &:hover {
            -webkit-transform: translateY(-3px) scale(1.02);
            transform: translateY(-3px) scale(1.02);
            box-shadow: none;
          }
 
          &:not(:last-child) {
            margin-right: 23px;
          }
        }
      }
    }
  }
}