aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src/components/FeedList.css
blob: d91a8ac4787b79c2e7216d8646f98fc4dc078439 (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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
.feed-list {
    /* Removed card styling */
    padding: 0;
    background: transparent;
}

.search-section {
    margin-bottom: 1.5rem;
}

.search-form {
    display: flex;
}

.search-input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #999;
    background: #eee;
    font-size: 1rem;
    font-family: inherit;
}

.search-input:focus {
    outline: none;
    background: white;
    border-color: #000;
}

.feed-list h2 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #999;
    padding-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.sidebar-feed-item {
    padding: 0.25rem 0;
    border-bottom: none;
    /* Clean look */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feed-title {
    color: var(--link-color);
    text-decoration: none;
    font-size: 0.9rem;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.feed-title:hover {
    text-decoration: underline;
    color: var(--link-color);
}

.feed-category {
    display: none;
    /* Hide category in sidebar list to save space */
}

.tag-section {
    margin-top: 2rem;
}

.tag-link {
    color: var(--link-color);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    padding: 0.1rem 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.tag-link:hover {
    text-decoration: underline;
    background: transparent;
    color: var(--link-color);
}

.filter-section {
    margin-bottom: 2rem;
}

.filter-list {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-list li a {
    text-decoration: none;
    color: #333;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-variant: small-caps;
    text-transform: lowercase;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.filter-list li a:hover {
    color: blue;
    background-color: transparent;
    text-decoration: underline;
}

.feed-title.active,
.tag-link.active,
.filter-list li a.active {
    font-weight: bold !important;
}