blob: 5420e40dc05d4e251a990caa3a349638dc0f84ce (
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
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
|
.status-container-container {
margin: 16px 0;
}
.status-container {
display: flex;
}
.status-content {
margin: 8px 0;
}
.status-content p {
margin: 0px;
}
.status-profile-img {
height: 48px;
width: 48px;
object-fit: contain;
}
.status {
margin: 0 8px;
}
.status a {
text-decoration: none;
}
.status-dname {
font-weight: 800;
}
.status-uname {
font-style: italic;
font-size: 10pt;
}
.status-emoji {
height: 20px;
margin-bottom: -4px;
witdth: auto;
}
.name-emoji {
height: 20px;
witdth: auto;
}
.status-action {
display: flex;
margin-top: 4px;
}
.status-action a {
display: flex;
margin: 0 4px;
width: 64px;
text-decoration: none;
color: #333333;
}
.status-action a:hover {
color: #777777;
}
.status-action .icon {
margin: 0 4px 0 0;
}
.status-action a.status-time {
width: auto;
}
.icon.dripicons-star.liked {
color: yellow;
}
.icon.dripicons-retweet.retweeted {
color: green;
}
.status-image,
.status-video {
max-height: 180px;
width: auto;
}
.page-title {
font-size: 23pt;
}
.navigation {
margin: 4px 0;
}
.navigation a {
margin-right: 8px;
}
.timeline-post-form {
margin: 8px 0;
}
.signin-form {
margin: 8px 0;
}
.signin-form input {
margin: 4px 0;
}
.retweet-info {
margin: 8px 0 4px 24px;
}
.retweet-info .status-profile-img {
height: 24px;
width: 24px;
margin-bottom: -8px;
object-fit: contain;
}
.retweet-info .status-dname{
margin-left: 4px
}
.retweet-info .icon.dripicons-retweet.retweeted {
vertical-align: sub;
}
|