Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -14,12 +14,18 @@ def main():
|
|
14 |
resized_logo = logo.resize((50, 50)) # Resize the logo to 50x50 pixels
|
15 |
st.image(resized_logo)
|
16 |
|
17 |
-
# Display the text in the second column, vertically centered
|
18 |
with col2:
|
19 |
st.markdown(
|
20 |
"""
|
21 |
-
<div style="
|
22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
23 |
</div>
|
24 |
""",
|
25 |
unsafe_allow_html=True,
|
|
|
14 |
resized_logo = logo.resize((50, 50)) # Resize the logo to 50x50 pixels
|
15 |
st.image(resized_logo)
|
16 |
|
17 |
+
# Display the text in the second column, vertically centered, with custom font and size
|
18 |
with col2:
|
19 |
st.markdown(
|
20 |
"""
|
21 |
+
<div style="
|
22 |
+
display: flex;
|
23 |
+
align-items: center;
|
24 |
+
height: 50px;
|
25 |
+
font-family: 'Inter', sans-serif;
|
26 |
+
font-size: 36px;
|
27 |
+
font-weight: bold;">
|
28 |
+
AI Energy Score
|
29 |
</div>
|
30 |
""",
|
31 |
unsafe_allow_html=True,
|