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
| /*
| =====================
| Modern
| =====================
| */
|
| .timeline-alter .item-timeline {
| display: flex;
|
| .t-time {
| padding: 10px;
| align-self: center;
|
| p {
| margin: 0;
| min-width: 58px;
| max-width: 100px;
| font-size: 16px;
| font-weight: 600;
| color: $m-color_6;
| align-self: center;
| }
| }
|
| .t-img {
| position: relative;
| border-color: $m-color_2;
| padding: 10px;
|
| &:before {
| content: '';
| position: absolute;
| border-color: inherit;
| border-width: 2px;
| border-style: solid;
| border-radius: 50%;
| width: 10px;
| height: 10px;
| top: 15px;
| left: 50%;
| transform: translateX(-50%);
| }
|
| &:after {
| content: '';
| position: absolute;
| border-color: inherit;
| border-width: 2px;
| border-style: solid;
| border-radius: 50%;
| width: 10px;
| height: 10px;
| top: 15px;
| left: 50%;
| transform: translateX(-50%);
| width: 0;
| height: auto;
| top: 25px;
| bottom: -15px;
| border-right-width: 0;
| border-top-width: 0;
| border-bottom-width: 0;
| border-radius: 0;
| }
|
| img {
| width: 45px;
| height: 45px;
| border-radius: 50%;
| z-index: 7;
| position: relative;
| }
| }
|
| .t-usr-txt {
| display: block;
| padding: 10px;
| position: relative;
| border-color: $m-color_2;
|
| &:before {
| content: '';
| position: absolute;
| border-color: inherit;
| border-width: 2px;
| border-style: solid;
| border-radius: 50%;
| width: 10px;
| height: 10px;
| top: 15px;
| left: 50%;
| transform: translateX(-50%);
| }
|
| &:after {
| content: '';
| position: absolute;
| border-color: inherit;
| border-width: 2px;
| border-style: solid;
| border-radius: 50%;
| width: 10px;
| height: 10px;
| top: 15px;
| left: 50%;
| transform: translateX(-50%);
| width: 0;
| height: auto;
| top: 25px;
| bottom: -15px;
| border-right-width: 0;
| border-top-width: 0;
| border-bottom-width: 0;
| border-radius: 0;
| }
|
| p {
| margin: 0;
| background: $primary;
| height: 45px;
| width: 45px;
| border-radius: 50%;
| display: flex;
| align-self: center;
| justify-content: center;
| margin-bottom: 0;
| color: $l-primary;
| font-weight: 700;
| font-size: 18px;
| z-index: 7;
| position: relative;
| }
|
| span {
| align-self: center;
| }
| }
|
| .t-meta-time {
| padding: 10px;
| align-self: center;
|
| p {
| margin: 0;
| min-width: 100px;
| max-width: 100px;
| font-size: 12px;
| font-weight: 700;
| color: $m-color_6;
| }
| }
|
| .t-text {
| padding: 10px;
| align-self: center;
|
| p {
| font-size: 13px;
| margin: 0;
| color: $m-color_6;
| font-weight: 600;
|
| a {
| color: $m-color_14;
| font-weight: 600;
| }
| }
| }
| }
|
|