blob: 38a053ddda7572d73e8ba7a86be72e8f651d9f4f (
plain) (
blame)
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
|
.header {
display: flex;
padding-bottom: 0.75rem;
line-height: var(--tweet-header-line-height);
font-size: var(--tweet-header-font-size);
white-space: nowrap;
overflow-wrap: break-word;
overflow: hidden;
}
.avatar {
position: relative;
height: 48px;
width: 48px;
}
.avatarOverflow {
height: 100%;
width: 100%;
position: absolute;
overflow: hidden;
border-radius: 9999px;
}
.avatarSquare {
border-radius: 4px;
}
.avatarShadow {
height: 100%;
width: 100%;
transition-property: background-color;
transition-duration: 0.2s;
box-shadow: rgb(0 0 0 / 3%) 0px 0px 2px inset;
}
.avatarShadow:hover {
background-color: rgba(26, 26, 26, 0.15);
}
.author {
max-width: calc(100% - 84px);
display: flex;
flex-direction: column;
justify-content: center;
margin: 0 0.5rem;
}
.authorLink {
text-decoration: none;
color: inherit;
display: flex;
align-items: center;
}
.authorLink:hover {
text-decoration-line: underline;
}
.authorVerified {
display: inline-flex;
}
.authorLinkText {
font-weight: 700;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
.authorMeta {
display: flex;
}
.authorFollow {
display: flex;
}
.username {
color: var(--tweet-font-color-secondary);
text-decoration: none;
text-overflow: ellipsis;
}
.follow {
color: var(--tweet-color-blue-secondary);
text-decoration: none;
font-weight: 700;
}
.follow:hover {
text-decoration-line: underline;
}
.separator {
padding: 0 0.25rem;
}
.brand {
margin-inline-start: auto;
}
.twitterIcon {
width: 23.75px;
height: 23.75px;
color: var(--tweet-twitter-icon-color);
fill: currentColor;
user-select: none;
}
|