Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -25,7 +25,7 @@ body {
|
|
25 |
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
|
26 |
}
|
27 |
.header {
|
28 |
-
background: #
|
29 |
border-bottom: 1px solid #e5e5e5;
|
30 |
padding: 1.5rem 2rem;
|
31 |
display: flex;
|
@@ -34,9 +34,9 @@ body {
|
|
34 |
margin-bottom: 2rem;
|
35 |
}
|
36 |
.logo {
|
37 |
-
width:
|
38 |
height: 45px;
|
39 |
-
margin-right:
|
40 |
transition: transform 0.3s ease;
|
41 |
}
|
42 |
.logo:hover {
|
@@ -53,7 +53,7 @@ body {
|
|
53 |
padding: 0 2rem;
|
54 |
}
|
55 |
.main-content {
|
56 |
-
background: #
|
57 |
border-radius: 12px;
|
58 |
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
59 |
margin-bottom: 2rem;
|
@@ -70,19 +70,19 @@ body {
|
|
70 |
position: absolute;
|
71 |
top: 0;
|
72 |
left: 0;
|
73 |
-
width:
|
74 |
-
height:
|
75 |
border: none;
|
76 |
}
|
77 |
.nav-grid {
|
78 |
display: grid;
|
79 |
-
grid-template-columns: repeat(auto-fit, minmax(
|
80 |
gap: 1.5rem;
|
81 |
margin: 2rem 0;
|
82 |
}
|
83 |
.nav-card {
|
84 |
background: #ffffff;
|
85 |
-
border:
|
86 |
border-radius: 10px;
|
87 |
padding: 1.5rem;
|
88 |
transition: all 0.3s ease;
|
|
|
25 |
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
|
26 |
}
|
27 |
.header {
|
28 |
+
background: #00000;
|
29 |
border-bottom: 1px solid #e5e5e5;
|
30 |
padding: 1.5rem 2rem;
|
31 |
display: flex;
|
|
|
34 |
margin-bottom: 2rem;
|
35 |
}
|
36 |
.logo {
|
37 |
+
width: 100px;
|
38 |
height: 45px;
|
39 |
+
margin-right: 0px;
|
40 |
transition: transform 0.3s ease;
|
41 |
}
|
42 |
.logo:hover {
|
|
|
53 |
padding: 0 2rem;
|
54 |
}
|
55 |
.main-content {
|
56 |
+
background: #00000;
|
57 |
border-radius: 12px;
|
58 |
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
59 |
margin-bottom: 2rem;
|
|
|
70 |
position: absolute;
|
71 |
top: 0;
|
72 |
left: 0;
|
73 |
+
width: 1000px;
|
74 |
+
height: 1000px;
|
75 |
border: none;
|
76 |
}
|
77 |
.nav-grid {
|
78 |
display: grid;
|
79 |
+
grid-template-columns: repeat(auto-fit, minmax(1000px, 1fr));
|
80 |
gap: 1.5rem;
|
81 |
margin: 2rem 0;
|
82 |
}
|
83 |
.nav-card {
|
84 |
background: #ffffff;
|
85 |
+
border: 10px solid #e5e5e5;
|
86 |
border-radius: 10px;
|
87 |
padding: 1.5rem;
|
88 |
transition: all 0.3s ease;
|