Learning_Agent / styles.py
cryogenic22's picture
Create styles.py
f8f58a8 verified
raw
history blame
997 Bytes
# styles.py
main_styles = """
<style>
/* Progress Bar */
.progress-container {
width: 100%;
background: #f0f0f0;
border-radius: 8px;
margin: 20px 0;
}
.progress-bar {
height: 24px;
background: linear-gradient(90deg, #4caf50, #81c784);
border-radius: 8px;
text-align: center;
line-height: 24px;
color: white;
transition: width 0.5s ease;
}
/* Report Sections */
.exec-summary {
background: white;
padding: 25px;
border-radius: 15px;
margin-bottom: 30px;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.detailed-section {
background: white;
padding: 30px;
border-radius: 15px;
margin: 20px 0;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
</style>
"""