Spaces:
No application file
No application file
Update static/css/style.css
Browse files- static/css/style.css +17 -12
static/css/style.css
CHANGED
@@ -1,27 +1,32 @@
|
|
1 |
body {
|
2 |
font-family: Arial, sans-serif;
|
3 |
-
background-color: #
|
4 |
-
padding:
|
5 |
}
|
6 |
-
|
7 |
.container {
|
8 |
max-width: 800px;
|
9 |
margin: auto;
|
10 |
background: white;
|
11 |
-
padding:
|
12 |
border-radius: 10px;
|
13 |
-
box-shadow: 0 4px
|
14 |
}
|
15 |
-
|
16 |
h1, h2 {
|
17 |
-
color: #
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
}
|
19 |
-
|
20 |
button {
|
21 |
-
background-color: #
|
22 |
color: white;
|
23 |
-
padding: 10px 15px;
|
24 |
-
border: none;
|
25 |
-
border-radius: 5px;
|
26 |
cursor: pointer;
|
27 |
}
|
|
|
|
|
|
|
|
1 |
body {
|
2 |
font-family: Arial, sans-serif;
|
3 |
+
background-color: #f0f4f8;
|
4 |
+
padding: 30px;
|
5 |
}
|
|
|
6 |
.container {
|
7 |
max-width: 800px;
|
8 |
margin: auto;
|
9 |
background: white;
|
10 |
+
padding: 20px;
|
11 |
border-radius: 10px;
|
12 |
+
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
|
13 |
}
|
|
|
14 |
h1, h2 {
|
15 |
+
color: #004080;
|
16 |
+
}
|
17 |
+
input, select, textarea, button {
|
18 |
+
width: 100%;
|
19 |
+
padding: 8px;
|
20 |
+
margin-top: 8px;
|
21 |
+
margin-bottom: 15px;
|
22 |
+
border-radius: 5px;
|
23 |
+
border: 1px solid #ccc;
|
24 |
}
|
|
|
25 |
button {
|
26 |
+
background-color: #0070cc;
|
27 |
color: white;
|
|
|
|
|
|
|
28 |
cursor: pointer;
|
29 |
}
|
30 |
+
button:hover {
|
31 |
+
background-color: #005bb5;
|
32 |
+
}
|