Persano commited on
Commit
cad9023
·
verified ·
1 Parent(s): 9a3efcc

Update static/stile.css

Browse files
Files changed (1) hide show
  1. static/stile.css +12 -40
static/stile.css CHANGED
@@ -1,58 +1,30 @@
1
  body {
2
  font-family: Arial, sans-serif;
3
- background: #f2f2f2;
4
- margin: 0;
5
- padding: 0;
6
- }
7
-
8
- .container {
9
- background: white;
10
- max-width: 500px;
11
  margin: 50px auto;
12
- padding: 30px;
13
- box-shadow: 0 0 20px rgba(0,0,0,0.1);
14
- border-radius: 10px;
15
- }
16
-
17
- h1 {
18
- text-align: center;
19
- color: #333;
20
- }
21
-
22
- label {
23
- display: block;
24
- margin-top: 15px;
25
- color: #444;
26
  }
27
 
28
  input, textarea {
29
  width: 100%;
30
- padding: 10px;
31
- margin-top: 5px;
32
  border: 1px solid #ccc;
33
- border-radius: 5px;
34
- font-size: 1em;
35
  }
36
 
37
  button {
38
- margin-top: 20px;
39
- width: 100%;
40
- background: #007bff;
41
  color: white;
42
  border: none;
43
- padding: 12px;
44
- font-size: 1em;
45
- border-radius: 5px;
46
  cursor: pointer;
47
  }
48
 
49
  button:hover {
50
- background: #0056b3;
51
- }
52
-
53
- a {
54
- display: block;
55
- text-align: center;
56
- margin-top: 20px;
57
- color: #007bff;
58
  }
 
1
  body {
2
  font-family: Arial, sans-serif;
3
+ max-width: 600px;
 
 
 
 
 
 
 
4
  margin: 50px auto;
5
+ padding: 20px;
6
+ background-color: #f9f9f9;
7
+ border-radius: 8px;
8
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
 
 
 
 
 
 
 
 
 
 
9
  }
10
 
11
  input, textarea {
12
  width: 100%;
13
+ padding: 8px;
14
+ margin: 5px 0 15px;
15
  border: 1px solid #ccc;
16
+ border-radius: 4px;
 
17
  }
18
 
19
  button {
20
+ padding: 10px 20px;
21
+ background-color: #4CAF50;
 
22
  color: white;
23
  border: none;
24
+ border-radius: 4px;
 
 
25
  cursor: pointer;
26
  }
27
 
28
  button:hover {
29
+ background-color: #45a049;
 
 
 
 
 
 
 
30
  }