nagasurendra commited on
Commit
422caf7
·
verified ·
1 Parent(s): 45d8214

Update static/styles.css

Browse files
Files changed (1) hide show
  1. static/styles.css +7 -14
static/styles.css CHANGED
@@ -1,33 +1,26 @@
1
- /* styles.css */
2
-
3
  body {
4
  font-family: Arial, sans-serif;
5
  background-color: #f8f9fa;
6
  color: #333;
7
  }
8
 
9
- h1, h2 {
10
- text-align: center;
11
- color: #444;
12
- }
13
-
14
  button {
15
  background-color: #007bff;
16
  color: white;
17
  border: none;
18
- padding: 10px 20px;
19
- cursor: pointer;
20
  border-radius: 5px;
 
21
  }
22
 
23
  button:hover {
24
  background-color: #0056b3;
25
  }
26
 
27
- .suggestions {
28
- background-color: #fff;
29
- border: 1px solid #ddd;
30
- padding: 10px;
31
- margin: 10px 0;
32
  border-radius: 5px;
 
33
  }
 
 
 
1
  body {
2
  font-family: Arial, sans-serif;
3
  background-color: #f8f9fa;
4
  color: #333;
5
  }
6
 
 
 
 
 
 
7
  button {
8
  background-color: #007bff;
9
  color: white;
10
  border: none;
11
+ padding: 8px 12px;
 
12
  border-radius: 5px;
13
+ cursor: pointer;
14
  }
15
 
16
  button:hover {
17
  background-color: #0056b3;
18
  }
19
 
20
+ .suggestion-container {
21
+ margin: 10px;
22
+ padding: 5px;
23
+ border: 1px solid #ccc;
 
24
  border-radius: 5px;
25
+ background-color: #fff;
26
  }