-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathindex.module.css
More file actions
113 lines (101 loc) · 2.02 KB
/
index.module.css
File metadata and controls
113 lines (101 loc) · 2.02 KB
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
.container {
width: 100%;
display: flex;
flex-direction: column;
box-sizing: border-box;
}
.thumbnailContainer {
width: 100%;
display: flex;
flex-direction: column;
margin-left: 16px;
}
.authorContainer {
width: 100%;
display: flex;
flex-direction: row;
}
.text {
color: var(--grey-color-3);
leading-trim: both;
text-edge: cap;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: normal;
white-space: pre-wrap;
margin-top: 12px;
margin-left: 0px;
margin-bottom: 0px;
user-select: text;
}
.text > a {
color: var(--blue-color-1);
text-decoration: none;
}
.buttonList {
width: 100%;
display: flex;
flex-direction: row;
gap: 12px;
padding-top: 16px;
padding-left: 40px;
box-sizing: border-box;
}
.containerAuthorThumbnail {
width: 40px;
height: 40px;
border-radius: 50%;
overflow: hidden;
}
.containerAuthorThumbnail svg {
width: 100%;
height: 100%;
background-color: #000;
border-radius: 50%;
}
.containerAuthorThumbnail img {
width: 100%;
height: 100%;
border-radius: 50%;
}
.authorName {
color: var(--white-color);
leading-trim: both;
text-edge: cap;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: normal;
}
.metadata {
color: var(--grey-color-4);
leading-trim: both;
text-edge: cap;
font-family: Inter;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
margin-left: 8px;
}
.repiesButton {
display: flex;
padding: 6px 15px 6px 15px;
justify-content: center;
align-items: center;
gap: 4px;
border-radius: 99px;
border: 1px solid var(--grey-color-7);
overflow: hidden;
color: var(--white-color);
text-align: center;
font-family: Inter;
font-size: 14px;
font-style: normal;
font-weight: 500;
line-height: 140%;
cursor: pointer;
}