Persano commited on
Commit
d35d570
·
verified ·
1 Parent(s): f01f154

Create static/styles.css

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