Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
@@ -2,6 +2,9 @@ body {
|
|
2 |
padding: 2rem;
|
3 |
font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
|
4 |
text-align: center;
|
|
|
|
|
|
|
5 |
}
|
6 |
|
7 |
h1 {
|
@@ -16,8 +19,34 @@ h1 {
|
|
16 |
margin: auto; /* Centers the form */
|
17 |
padding: 20px; /* Optional: for some spacing inside the form */
|
18 |
box-sizing: border-box;
|
|
|
|
|
|
|
|
|
19 |
}
|
20 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
p {
|
22 |
color: rgb(107, 114, 128);
|
23 |
font-size: 15px;
|
@@ -33,6 +62,21 @@ p {
|
|
33 |
border-radius: 16px;
|
34 |
}
|
35 |
|
36 |
-
|
37 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
}
|
|
|
|
|
|
|
|
2 |
padding: 2rem;
|
3 |
font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
|
4 |
text-align: center;
|
5 |
+
background-color: #f7f7f7;
|
6 |
+
margin: 0;
|
7 |
+
padding: 20px;
|
8 |
}
|
9 |
|
10 |
h1 {
|
|
|
19 |
margin: auto; /* Centers the form */
|
20 |
padding: 20px; /* Optional: for some spacing inside the form */
|
21 |
box-sizing: border-box;
|
22 |
+
background: white;
|
23 |
+
border-radius: 8px;
|
24 |
+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
25 |
+
margin: 40px auto;
|
26 |
}
|
27 |
|
28 |
+
/* Style for form fields */
|
29 |
+
#hf-form input[type="password"],
|
30 |
+
#hf-form input[type="submit"] {
|
31 |
+
width: calc(100% - 20px);
|
32 |
+
padding: 10px;
|
33 |
+
margin: 10px 0;
|
34 |
+
border: 1px solid #ddd;
|
35 |
+
border-radius: 4px;
|
36 |
+
box-sizing: border-box;
|
37 |
+
}
|
38 |
+
|
39 |
+
/* Style for the submit button */
|
40 |
+
#hf-form input[type="submit"] {
|
41 |
+
color: white;
|
42 |
+
background-color: #007BFF;
|
43 |
+
cursor: pointer;
|
44 |
+
border: none;
|
45 |
+
}
|
46 |
+
|
47 |
+
#hf-form input[type="submit"]:hover {
|
48 |
+
background-color: #0056b3;
|
49 |
+
}
|
50 |
p {
|
51 |
color: rgb(107, 114, 128);
|
52 |
font-size: 15px;
|
|
|
62 |
border-radius: 16px;
|
63 |
}
|
64 |
|
65 |
+
/* Card style */
|
66 |
+
.card {
|
67 |
+
background: white;
|
68 |
+
margin-bottom: 20px;
|
69 |
+
padding: 20px;
|
70 |
+
border-radius: 8px;
|
71 |
+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
|
72 |
+
}
|
73 |
+
|
74 |
+
/* Style for the label */
|
75 |
+
label {
|
76 |
+
text-align: left;
|
77 |
+
display: block;
|
78 |
+
margin: 0 0 5px 0;
|
79 |
}
|
80 |
+
|
81 |
+
|
82 |
+
|