Spaces:
Running
Running
Update style.css
Browse files
style.css
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
body {
|
2 |
padding: 2rem;
|
3 |
font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
|
|
|
4 |
}
|
5 |
|
6 |
h1 {
|
@@ -8,6 +9,15 @@ h1 {
|
|
8 |
margin-top: 0;
|
9 |
}
|
10 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
p {
|
12 |
color: rgb(107, 114, 128);
|
13 |
font-size: 15px;
|
|
|
1 |
body {
|
2 |
padding: 2rem;
|
3 |
font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
|
4 |
+
text-align: center;
|
5 |
}
|
6 |
|
7 |
h1 {
|
|
|
9 |
margin-top: 0;
|
10 |
}
|
11 |
|
12 |
+
/* Add styles for centering the form */
|
13 |
+
#hf-form {
|
14 |
+
width: 100%;
|
15 |
+
max-width: 400px; /* Adjust this value as per your design needs */
|
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;
|