Update app.py
Browse files
app.py
CHANGED
@@ -125,7 +125,7 @@ body {
|
|
125 |
position: relative;
|
126 |
}
|
127 |
button, .button {
|
128 |
-
background-color: #
|
129 |
color: white;
|
130 |
border: none;
|
131 |
padding: 0.5rem 1rem;
|
@@ -136,15 +136,17 @@ button, .button {
|
|
136 |
line-height: 1.25rem;
|
137 |
}
|
138 |
button:hover, .button:hover {
|
139 |
-
background-color: #
|
140 |
}
|
141 |
button.refresh-btn {
|
142 |
-
padding: 0.5rem;
|
143 |
font-size: 1rem;
|
144 |
-
background-color: #
|
|
|
|
|
145 |
}
|
146 |
button.refresh-btn:hover {
|
147 |
-
background-color: #
|
148 |
}
|
149 |
.no-papers {
|
150 |
text-align: center;
|
|
|
125 |
position: relative;
|
126 |
}
|
127 |
button, .button {
|
128 |
+
background-color: #3498db; /* Changed to a more mobile-friendly blue */
|
129 |
color: white;
|
130 |
border: none;
|
131 |
padding: 0.5rem 1rem;
|
|
|
136 |
line-height: 1.25rem;
|
137 |
}
|
138 |
button:hover, .button:hover {
|
139 |
+
background-color: #2980b9; /* Darker blue on hover */
|
140 |
}
|
141 |
button.refresh-btn {
|
142 |
+
padding: 0.5rem;
|
143 |
font-size: 1rem;
|
144 |
+
background-color: #2ecc71; /* Changed to a more visible green */
|
145 |
+
width: auto; /* Allow button to shrink */
|
146 |
+
max-width: 100%; /* Ensure it doesn't overflow */
|
147 |
}
|
148 |
button.refresh-btn:hover {
|
149 |
+
background-color: #27ae60; /* Darker green on hover */
|
150 |
}
|
151 |
.no-papers {
|
152 |
text-align: center;
|