Persano commited on
Commit
d2bb274
·
verified ·
1 Parent(s): 48c9226

Update static/css/style.css

Browse files
Files changed (1) hide show
  1. static/css/style.css +17 -12
static/css/style.css CHANGED
@@ -1,27 +1,32 @@
1
  body {
2
  font-family: Arial, sans-serif;
3
- background-color: #f4f6f9;
4
- padding: 20px;
5
  }
6
-
7
  .container {
8
  max-width: 800px;
9
  margin: auto;
10
  background: white;
11
- padding: 30px;
12
  border-radius: 10px;
13
- box-shadow: 0 4px 10px rgba(0,0,0,0.1);
14
  }
15
-
16
  h1, h2 {
17
- color: #003366;
 
 
 
 
 
 
 
 
18
  }
19
-
20
  button {
21
- background-color: #007bff;
22
  color: white;
23
- padding: 10px 15px;
24
- border: none;
25
- border-radius: 5px;
26
  cursor: pointer;
27
  }
 
 
 
 
1
  body {
2
  font-family: Arial, sans-serif;
3
+ background-color: #f0f4f8;
4
+ padding: 30px;
5
  }
 
6
  .container {
7
  max-width: 800px;
8
  margin: auto;
9
  background: white;
10
+ padding: 20px;
11
  border-radius: 10px;
12
+ box-shadow: 0 4px 8px rgba(0,0,0,0.1);
13
  }
 
14
  h1, h2 {
15
+ color: #004080;
16
+ }
17
+ input, select, textarea, button {
18
+ width: 100%;
19
+ padding: 8px;
20
+ margin-top: 8px;
21
+ margin-bottom: 15px;
22
+ border-radius: 5px;
23
+ border: 1px solid #ccc;
24
  }
 
25
  button {
26
+ background-color: #0070cc;
27
  color: white;
 
 
 
28
  cursor: pointer;
29
  }
30
+ button:hover {
31
+ background-color: #005bb5;
32
+ }