Persano commited on
Commit
bf4aeea
·
verified ·
1 Parent(s): 497c0b1

Create stile.css

Browse files
Files changed (1) hide show
  1. static/stile.css +58 -0
static/stile.css ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ }