Spaces:
Running
Running
ss
Browse files
style.css
CHANGED
@@ -8,7 +8,7 @@ body {
|
|
8 |
justify-content: center;
|
9 |
min-height: 100vh;
|
10 |
}
|
11 |
-
|
12 |
.header {
|
13 |
background: linear-gradient(to right, #ffdb58, #ffaf00);
|
14 |
color: #fff;
|
@@ -19,8 +19,36 @@ body {
|
|
19 |
top: 0;
|
20 |
height:60px;
|
21 |
z-index: 1000;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
}
|
23 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
|
25 |
.container {
|
26 |
text-align: center;
|
|
|
8 |
justify-content: center;
|
9 |
min-height: 100vh;
|
10 |
}
|
11 |
+
/*
|
12 |
.header {
|
13 |
background: linear-gradient(to right, #ffdb58, #ffaf00);
|
14 |
color: #fff;
|
|
|
19 |
top: 0;
|
20 |
height:60px;
|
21 |
z-index: 1000;
|
22 |
+
}*/
|
23 |
+
/* ... (unchanged styles) ... */
|
24 |
+
|
25 |
+
.header {
|
26 |
+
background: linear-gradient(to right, #ffdb58, #ffaf00);
|
27 |
+
color: #fff;
|
28 |
+
padding: 5px;
|
29 |
+
text-align: center;
|
30 |
+
width: 100%;
|
31 |
+
position: fixed;
|
32 |
+
top: 0;
|
33 |
+
height: 60px;
|
34 |
+
z-index: 1000;
|
35 |
+
display: flex;
|
36 |
+
justify-content: space-between; /* Add space between logo and navbar */
|
37 |
+
align-items: center;
|
38 |
+
}
|
39 |
+
|
40 |
+
.logo {
|
41 |
+
height: 50px; /* Set the height of the logo */
|
42 |
+
margin-left: 10px; /* Adjust the margin for spacing */
|
43 |
}
|
44 |
|
45 |
+
.navbar h1 {
|
46 |
+
margin: 0; /* Remove default margin for h1 inside navbar */
|
47 |
+
}
|
48 |
+
|
49 |
+
/* ... (unchanged styles) ... */
|
50 |
+
|
51 |
+
|
52 |
|
53 |
.container {
|
54 |
text-align: center;
|