aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src/components/FeedList.css
blob: b8ca7e66dea7f059ac2180f59a3899b0be476f1b (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
97
98
99
100
101
102
103
104
105
106
.feed-list {
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feed-list h2 {
    margin-top: 0;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.feed-list-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feed-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feed-item:last-child {
    border-bottom: none;
}

.feed-title {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.feed-title:hover {
    color: #007bff;
}

.feed-category {
    background: #e9ecef;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8rem;
    color: #666;
}
.tag-section {
    margin-top: 2rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.tag-list-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-item {
    display: inline-block;
}

.tag-link {
    display: block;
    padding: 0.3rem 0.6rem;
    background: #e9ecef;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    transition: background-color 0.2s;
}

.tag-link:hover {
    background: #dde2e6;
    color: #000;
}

.filter-section {
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1rem;
}

.filter-list li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.filter-list li a:hover {
    color: #007bff;
}