Spaces:
Building
Building
Update static/styles.css
Browse files- static/styles.css +7 -5
static/styles.css
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
/* General Reset */
|
2 |
* {
|
3 |
margin: 0;
|
4 |
-
padding: 0;
|
5 |
box-sizing: border-box;
|
6 |
}
|
7 |
|
@@ -11,19 +11,21 @@ body {
|
|
11 |
color: #333;
|
12 |
margin: 0;
|
13 |
display: flex;
|
14 |
-
justify-content: center;
|
15 |
-
align-items: flex-start;
|
16 |
min-height: 100vh;
|
|
|
17 |
}
|
18 |
-
|
19 |
.container {
|
20 |
display: flex;
|
21 |
flex-direction: column;
|
22 |
align-items: center; /* Center horizontally */
|
|
|
23 |
width: 100%;
|
24 |
max-width: 1000px;
|
25 |
padding: 20px;
|
26 |
-
|
|
|
27 |
}
|
28 |
|
29 |
/* Title */
|
|
|
1 |
/* General Reset */
|
2 |
* {
|
3 |
margin: 0;
|
4 |
+
padding: 10px 0;
|
5 |
box-sizing: border-box;
|
6 |
}
|
7 |
|
|
|
11 |
color: #333;
|
12 |
margin: 0;
|
13 |
display: flex;
|
14 |
+
justify-content: center; /* Center horizontally */
|
15 |
+
align-items: flex-start; /* Align to the top */
|
16 |
min-height: 100vh;
|
17 |
+
overflow-y: auto; /* Allow scrolling when content overflows */
|
18 |
}
|
|
|
19 |
.container {
|
20 |
display: flex;
|
21 |
flex-direction: column;
|
22 |
align-items: center; /* Center horizontally */
|
23 |
+
justify-content: flex-start; /* Align to the top */
|
24 |
width: 100%;
|
25 |
max-width: 1000px;
|
26 |
padding: 20px;
|
27 |
+
/* margin: 20px 20px; */ /* Add vertical margin */
|
28 |
+
box-sizing: border-box;
|
29 |
}
|
30 |
|
31 |
/* Title */
|