-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathStoryListItem.css
More file actions
executable file
·95 lines (84 loc) · 1.51 KB
/
StoryListItem.css
File metadata and controls
executable file
·95 lines (84 loc) · 1.51 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
.StoryListItem_link {
color: black;
text-decoration: none;
}
.StoryListItem_flexRow {
display: flex;
flex: 1;
padding: 8px;
}
.StoryListItem_icon {
width: 32px;
height: 32px;
}
.StoryListItem_storyCell {
flex: 1;
flex-direction: column;
flex-wrap: nowrap;
justify-content: space-around;
align-items: stretch;
}
.StoryListItem_storyTitle {
display: flex;
flex: 0 0 auto;
margin-bottom: 4px;
font-size: 18px;
font-weight: 700;
}
.StoryListItem_storyIndex {
display: flex;
flex: 0 0 auto;
font-size: 18px;
line-height: 1.2;
margin-right: 12px;
}
.StoryListItem_storyIndex::after {
display: block;
content: '.';
}
.StoryListItem_row {
align-items: center;
flex-direction: row;
}
.StoryListItem_itemRow {
align-items: stretch;
border-bottom: solid 1px #eee;
display: flex;
margin-top: 6px;
margin-bottom: 6px;
cursor: default;
}
.StoryListItem_byline,
.StoryListItem_commentsText {
color: #999999;
}
.StoryListItem_byline {
font-size: 12px;
padding: 0;
}
.StoryListItem_commentsCell {
align-items: center;
display: flex;
justify-content: center;
padding: 8;
text-align: center;
width: 80px;
}
.StoryListItem_row .StoryListItem_number {
margin-right: 4px;
padding-right: 6px;
border-right: 1px solid currentColor;
}
.StoryListItem_number b {
font-weight: 700;
}
.StoryListItem_commentsText {
font-size: 10px;
text-align: center;
}
.StoryListItem_commentsCell a {
text-decoration: none;
}
a:hover .StoryListItem_commentsText {
color: #000;
}