cryogenic22 commited on
Commit
f8f58a8
·
verified ·
1 Parent(s): 2b474dd

Create styles.py

Browse files
Files changed (1) hide show
  1. styles.py +39 -0
styles.py ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # styles.py
2
+ main_styles = """
3
+ <style>
4
+ /* Progress Bar */
5
+ .progress-container {
6
+ width: 100%;
7
+ background: #f0f0f0;
8
+ border-radius: 8px;
9
+ margin: 20px 0;
10
+ }
11
+
12
+ .progress-bar {
13
+ height: 24px;
14
+ background: linear-gradient(90deg, #4caf50, #81c784);
15
+ border-radius: 8px;
16
+ text-align: center;
17
+ line-height: 24px;
18
+ color: white;
19
+ transition: width 0.5s ease;
20
+ }
21
+
22
+ /* Report Sections */
23
+ .exec-summary {
24
+ background: white;
25
+ padding: 25px;
26
+ border-radius: 15px;
27
+ margin-bottom: 30px;
28
+ box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
29
+ }
30
+
31
+ .detailed-section {
32
+ background: white;
33
+ padding: 30px;
34
+ border-radius: 15px;
35
+ margin: 20px 0;
36
+ box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
37
+ }
38
+ </style>
39
+ """