Spaces:
Running
Running
Rename style.css to styles.css
Browse files- style.css → styles.css +35 -20
style.css → styles.css
RENAMED
@@ -1,59 +1,74 @@
|
|
1 |
body {
|
2 |
font-family: Arial, sans-serif;
|
3 |
-
background-color: #
|
4 |
margin: 0;
|
5 |
padding: 0;
|
|
|
|
|
|
|
|
|
6 |
}
|
7 |
|
8 |
.container {
|
9 |
-
max-width: 600px;
|
10 |
-
margin: 100px auto;
|
11 |
-
padding: 20px;
|
12 |
-
background-color: #fff;
|
13 |
-
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
14 |
text-align: center;
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
}
|
16 |
|
17 |
h1 {
|
|
|
|
|
18 |
color: #333;
|
19 |
}
|
20 |
|
21 |
-
|
22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
padding: 10px;
|
24 |
-
margin:
|
25 |
-
border: 1px solid #
|
26 |
-
border-radius:
|
27 |
font-size: 16px;
|
28 |
}
|
29 |
|
30 |
button {
|
31 |
-
padding: 10px
|
32 |
-
font-size: 16px;
|
33 |
-
color: #fff;
|
34 |
background-color: #007bff;
|
|
|
35 |
border: none;
|
36 |
-
border-radius:
|
|
|
37 |
cursor: pointer;
|
38 |
-
transition: background-color 0.3s ease;
|
39 |
}
|
40 |
|
41 |
button:hover {
|
42 |
background-color: #0056b3;
|
43 |
}
|
44 |
|
45 |
-
#
|
46 |
margin-top: 20px;
|
47 |
-
color: #f00;
|
48 |
}
|
49 |
|
50 |
-
|
51 |
-
|
52 |
}
|
53 |
|
54 |
a {
|
55 |
color: #007bff;
|
56 |
text-decoration: none;
|
|
|
57 |
}
|
58 |
|
59 |
a:hover {
|
|
|
1 |
body {
|
2 |
font-family: Arial, sans-serif;
|
3 |
+
background-color: #f9f9f9;
|
4 |
margin: 0;
|
5 |
padding: 0;
|
6 |
+
display: flex;
|
7 |
+
justify-content: center;
|
8 |
+
align-items: center;
|
9 |
+
height: 100vh;
|
10 |
}
|
11 |
|
12 |
.container {
|
|
|
|
|
|
|
|
|
|
|
13 |
text-align: center;
|
14 |
+
background: #fff;
|
15 |
+
padding: 30px;
|
16 |
+
border-radius: 10px;
|
17 |
+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
18 |
+
width: 90%;
|
19 |
+
max-width: 400px;
|
20 |
}
|
21 |
|
22 |
h1 {
|
23 |
+
margin-bottom: 20px;
|
24 |
+
font-size: 24px;
|
25 |
color: #333;
|
26 |
}
|
27 |
|
28 |
+
p {
|
29 |
+
margin-bottom: 20px;
|
30 |
+
color: #666;
|
31 |
+
}
|
32 |
+
|
33 |
+
form {
|
34 |
+
display: flex;
|
35 |
+
flex-direction: column;
|
36 |
+
}
|
37 |
+
|
38 |
+
input {
|
39 |
padding: 10px;
|
40 |
+
margin-bottom: 10px;
|
41 |
+
border: 1px solid #ddd;
|
42 |
+
border-radius: 5px;
|
43 |
font-size: 16px;
|
44 |
}
|
45 |
|
46 |
button {
|
47 |
+
padding: 10px;
|
|
|
|
|
48 |
background-color: #007bff;
|
49 |
+
color: #fff;
|
50 |
border: none;
|
51 |
+
border-radius: 5px;
|
52 |
+
font-size: 16px;
|
53 |
cursor: pointer;
|
|
|
54 |
}
|
55 |
|
56 |
button:hover {
|
57 |
background-color: #0056b3;
|
58 |
}
|
59 |
|
60 |
+
#result {
|
61 |
margin-top: 20px;
|
|
|
62 |
}
|
63 |
|
64 |
+
.hidden {
|
65 |
+
display: none;
|
66 |
}
|
67 |
|
68 |
a {
|
69 |
color: #007bff;
|
70 |
text-decoration: none;
|
71 |
+
font-size: 16px;
|
72 |
}
|
73 |
|
74 |
a:hover {
|