Yaswanth56 commited on
Commit
470f389
·
verified ·
1 Parent(s): 50526c7

Update static/styles.css

Browse files
Files changed (1) hide show
  1. static/styles.css +39 -16
static/styles.css CHANGED
@@ -1,29 +1,52 @@
1
  body {
2
  font-family: Arial, sans-serif;
3
- background-color: #f0f8ff;
4
- display: flex;
5
- justify-content: center;
6
- align-items: center;
7
- height: 100vh;
8
- margin: 0;
9
  }
10
 
11
  .form-container {
12
- background: white;
13
- border-radius: 10px;
14
  padding: 20px;
15
- width: 400px;
16
- box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
17
- text-align: center;
18
  }
19
 
20
  h1 {
21
- font-size: 24px;
22
- margin-bottom: 20px;
23
  }
24
 
25
  table {
26
- margin: 20px auto;
27
- width: 80%;
28
- text-align: left;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
29
  }
 
1
  body {
2
  font-family: Arial, sans-serif;
3
+ background-color: #e6f7ec;
4
+ padding: 20px;
 
 
 
 
5
  }
6
 
7
  .form-container {
8
+ max-width: 600px;
9
+ margin: 0 auto;
10
  padding: 20px;
11
+ background-color: white;
12
+ border-radius: 10px;
13
+ box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
14
  }
15
 
16
  h1 {
17
+ text-align: center;
18
+ color: #333;
19
  }
20
 
21
  table {
22
+ width: 100%;
23
+ border-collapse: collapse;
24
+ margin-top: 20px;
25
+ }
26
+
27
+ td {
28
+ padding: 10px;
29
+ border: 1px solid #ccc;
30
+ }
31
+
32
+ input[type="number"] {
33
+ width: 100%;
34
+ padding: 10px;
35
+ margin: 10px 0;
36
+ border: 1px solid #ccc;
37
+ border-radius: 5px;
38
+ }
39
+
40
+ button {
41
+ background-color: #38a169;
42
+ color: white;
43
+ padding: 10px;
44
+ border: none;
45
+ width: 100%;
46
+ border-radius: 5px;
47
+ cursor: pointer;
48
+ }
49
+
50
+ button:hover {
51
+ background-color: #2f855a;
52
  }