Spaces:
Running
Running
Commit
·
86637fc
1
Parent(s):
a10c4ff
Updating header
Browse files- src/styles/components.py +7 -8
src/styles/components.py
CHANGED
@@ -12,18 +12,16 @@ def get_container_styles():
|
|
12 |
"""
|
13 |
return f"""
|
14 |
.title-container {{
|
15 |
-
padding:
|
16 |
text-align: center;
|
17 |
-
background: {dark_theme['gradient']};
|
18 |
-
border-radius: 12px;
|
19 |
color: white;
|
20 |
-
margin-bottom:
|
21 |
}}
|
22 |
|
23 |
.title {{
|
24 |
-
font-size:
|
25 |
font-weight: 700;
|
26 |
-
margin-bottom:
|
27 |
color: {dark_theme['title_color']};
|
28 |
}}
|
29 |
|
@@ -45,9 +43,10 @@ def get_links_bar_styles():
|
|
45 |
return f"""
|
46 |
.links-bar {{
|
47 |
text-align: center;
|
48 |
-
padding:
|
49 |
-
margin-bottom:
|
50 |
font-size: 14px;
|
|
|
51 |
}}
|
52 |
|
53 |
.link-item {{
|
|
|
12 |
"""
|
13 |
return f"""
|
14 |
.title-container {{
|
15 |
+
padding: 0.75rem 0 1.5rem 0;
|
16 |
text-align: center;
|
|
|
|
|
17 |
color: white;
|
18 |
+
margin-bottom: 0.5rem;
|
19 |
}}
|
20 |
|
21 |
.title {{
|
22 |
+
font-size: 64px;
|
23 |
font-weight: 700;
|
24 |
+
margin-bottom: 15px;
|
25 |
color: {dark_theme['title_color']};
|
26 |
}}
|
27 |
|
|
|
43 |
return f"""
|
44 |
.links-bar {{
|
45 |
text-align: center;
|
46 |
+
padding: 0 0 15px 0;
|
47 |
+
margin-bottom: 25px;
|
48 |
font-size: 14px;
|
49 |
+
border-bottom: 1px solid {dark_theme['border']};
|
50 |
}}
|
51 |
|
52 |
.link-item {{
|