-
Notifications
You must be signed in to change notification settings - Fork 0
/
content.css
122 lines (104 loc) · 1.8 KB
/
content.css
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
/* 确保内容被清空后页面保持干净 */
body {
margin: 0;
padding: 0;
background: #fff;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
/* Logo 样式 */
.lkong-header {
position: fixed;
top: 20px;
left: 100px;
z-index: 1000;
}
.logo {
width: 32px;
height: 32px;
cursor: pointer;
display: block;
filter: brightness(0);
}
.logo:hover {
opacity: 0.8;
}
/* 网文江湖板块样式 */
.section-title {
position: fixed;
top: 80px;
left: 100px;
font-size: 24px;
color: #1a1a1a;
font-weight: 600;
cursor: pointer;
padding: 8px 0;
text-decoration: none;
}
.section-title:hover {
color: #666;
}
/* 内容容器样式 */
.content-container {
position: absolute;
top: 140px;
left: 50%;
transform: translateX(-50%);
width: 800px;
padding: 20px;
}
/* 帖子列表样式 */
.thread-list {
margin-top: 20px;
}
.css-1whuy04 {
display: flex;
flex-direction: column;
gap: 10px;
}
.css-760i8n {
padding: 12px 0;
border-bottom: 1px solid #eee;
}
.css-f30376 {
display: flex;
align-items: flex-start;
}
.bubble {
min-width: 40px;
height: 24px;
line-height: 24px;
text-align: center;
background: #f5f5f5;
border-radius: 12px;
margin-right: 12px;
font-size: 14px;
color: #666;
}
.main-title {
flex: 1;
font-size: 16px;
margin-bottom: 4px;
}
.main-title a {
color: #1a1a1a;
text-decoration: none;
}
.main-title a:hover {
color: #666;
}
.author {
font-size: 14px;
color: #999;
}
.author a {
color: #666;
text-decoration: none;
}
.author a:hover {
color: #1a1a1a;
}
/* 火热图标样式 */
.anticon-fire {
color: #ff4d4f;
margin-left: 8px;
}