neerajkalyank commited on
Commit
0eea6b3
1 Parent(s): 94b8fab

Update app.css

Browse files
Files changed (1) hide show
  1. app.css +4 -3
app.css CHANGED
@@ -27,19 +27,20 @@ button:hover {
27
  background-color: #218838; /* Darker green on hover */
28
  }
29
 
30
- /* Style for labels to look like buttons */
31
  label {
32
  display: inline-block;
33
  padding: 8px 12px;
34
- background-color: #007bff; /* Blue color for labels */
35
  color: white;
36
  font-weight: bold;
37
  border-radius: 5px;
38
  margin-bottom: 5px;
39
  text-align: center;
 
40
  }
41
 
42
  label:hover {
43
- background-color: #0056b3; /* Darker blue on hover */
44
  }
45
  """
 
27
  background-color: #218838; /* Darker green on hover */
28
  }
29
 
30
+ /* Style for labels to look highlighted */
31
  label {
32
  display: inline-block;
33
  padding: 8px 12px;
34
+ background-color: #343a40; /* Dark gray for contrast */
35
  color: white;
36
  font-weight: bold;
37
  border-radius: 5px;
38
  margin-bottom: 5px;
39
  text-align: center;
40
+ width: fit-content;
41
  }
42
 
43
  label:hover {
44
+ background-color: #495057; /* Slightly lighter gray on hover */
45
  }
46
  """