Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
@@ -1,28 +1,59 @@
|
|
1 |
body {
|
2 |
-
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
}
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
body {
|
2 |
+
font-family: Arial, sans-serif;
|
3 |
+
background-color: #f4f4f9;
|
4 |
+
margin: 0;
|
5 |
+
padding: 20px;
|
6 |
+
}
|
7 |
+
|
8 |
+
.container {
|
9 |
+
max-width: 400px;
|
10 |
+
margin: auto;
|
11 |
+
background: white;
|
12 |
+
padding: 20px;
|
13 |
+
border-radius: 10px;
|
14 |
+
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
|
15 |
+
}
|
16 |
+
|
17 |
+
h1, h2 {
|
18 |
+
text-align: center;
|
19 |
+
color: #333;
|
20 |
+
}
|
21 |
+
|
22 |
+
form {
|
23 |
+
margin-bottom: 20px;
|
24 |
+
}
|
25 |
+
|
26 |
+
label {
|
27 |
+
display: block;
|
28 |
+
margin-bottom: 5px;
|
29 |
+
font-size: 14px;
|
30 |
+
}
|
31 |
+
|
32 |
+
input {
|
33 |
+
width: 100%;
|
34 |
+
padding: 10px;
|
35 |
+
margin-bottom: 10px;
|
36 |
+
border: 1px solid #ccc;
|
37 |
+
border-radius: 4px;
|
38 |
+
}
|
39 |
+
|
40 |
+
button {
|
41 |
+
width: 100%;
|
42 |
+
padding: 10px;
|
43 |
+
background-color: #007BFF;
|
44 |
+
color: white;
|
45 |
+
border: none;
|
46 |
+
border-radius: 4px;
|
47 |
+
cursor: pointer;
|
48 |
+
}
|
49 |
+
|
50 |
+
button:hover {
|
51 |
+
background-color: #0056b3;
|
52 |
+
}
|
53 |
+
|
54 |
+
#message {
|
55 |
+
text-align: center;
|
56 |
+
color: red;
|
57 |
+
font-weight: bold;
|
58 |
+
}
|
59 |
+
|