Persano commited on
Commit
e01f4ca
·
verified ·
1 Parent(s): e983873

Update static/styles.css

Browse files
Files changed (1) hide show
  1. static/styles.css +26 -13
static/styles.css CHANGED
@@ -1,28 +1,41 @@
1
  body {
2
  font-family: Arial, sans-serif;
3
- background-color: #f8f9fa;
 
4
  color: #333;
5
- padding: 40px;
6
  }
7
 
8
- .container {
9
- max-width: 800px;
10
- margin: auto;
11
- background: white;
12
- padding: 30px;
13
- border-radius: 10px;
14
- box-shadow: 0 4px 12px rgba(0,0,0,0.1);
 
 
 
 
 
 
 
 
15
  }
16
 
17
  button {
18
- background-color: #007bff;
 
 
19
  color: white;
20
- padding: 10px 20px;
21
  border: none;
22
  border-radius: 5px;
23
  cursor: pointer;
24
  }
25
 
26
- button:hover {
27
- background-color: #0056b3;
 
 
 
28
  }
 
 
1
  body {
2
  font-family: Arial, sans-serif;
3
+ background: #f0f4f8;
4
+ padding: 20px;
5
  color: #333;
 
6
  }
7
 
8
+ h1 {
9
+ color: #004080;
10
+ }
11
+
12
+ label {
13
+ display: block;
14
+ margin-top: 10px;
15
+ }
16
+
17
+ input, textarea {
18
+ width: 100%;
19
+ padding: 8px;
20
+ margin-top: 5px;
21
+ border-radius: 5px;
22
+ border: 1px solid #ccc;
23
  }
24
 
25
  button {
26
+ margin-top: 15px;
27
+ padding: 10px 15px;
28
+ background-color: #0070cc;
29
  color: white;
 
30
  border: none;
31
  border-radius: 5px;
32
  cursor: pointer;
33
  }
34
 
35
+ a {
36
+ display: inline-block;
37
+ margin-top: 10px;
38
+ color: #0070cc;
39
+ text-decoration: none;
40
  }
41
+