aboutsummaryrefslogtreecommitdiffstats
path: root/frontend/src/components/Settings.css
blob: 171dcad95aeb90b0c3a2e18142727eaf00836d56 (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
.settings-page {
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.add-feed-section {
  background: var(--sidebar-bg);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border: 1px solid var(--border-color);
}

.add-feed-form {
  display: flex;
  gap: 1rem;
}

.feed-input {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid var(--border-color);
  background: var(--bg-color);
  color: var(--text-color);
  border-radius: 4px;
  font-size: 1rem;
}

.error-message {
  color: #d32f2f;
  margin-top: 1rem;
}

.settings-feed-list {
  list-style: none;
  padding: 0;
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

.settings-feed-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}

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

.feed-info {
  display: flex;
  flex-direction: column;
}

.feed-title {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: bold;
  font-size: 1.1rem;
}

.feed-url {
  color: var(--text-color);
  opacity: 0.6;
  font-size: 0.9rem;
}

.delete-btn {
  background: #ff5252;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
}

.delete-btn:hover {
  background: #ff1744;
}

.delete-btn:disabled {
  background: #ffcdd2;
  cursor: not-allowed;
}