Persano commited on
Commit
da1db7e
·
verified ·
1 Parent(s): 37c820c

Create static/css/style.css

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