JeCabrera commited on
Commit
43692f8
·
verified ·
1 Parent(s): 50d1b2d

Update styles/main.css

Browse files
Files changed (1) hide show
  1. styles/main.css +93 -93
styles/main.css CHANGED
@@ -1,94 +1,94 @@
1
- /* Main container styling */
2
- .block-container {
3
- padding-top: 1rem;
4
- padding-bottom: 5rem;
5
- }
6
-
7
- /* Title spacing */
8
- h1 {
9
- margin-top: -2rem;
10
- padding-top: 0.5rem;
11
- }
12
-
13
- /* Subtitle spacing */
14
- h4 {
15
- margin-top: 0.5rem;
16
- padding-top: 0rem;
17
- }
18
-
19
- /* Custom button styling */
20
- /* Estilo personalizado para el botón de generar */
21
- [data-testid="stButton"] > button {
22
- background: linear-gradient(90deg, #FFD700, #FFA500) !important;
23
- color: #333 !important;
24
- padding: 8px 15px !important; /* Relleno reducido */
25
- border-radius: 8px !important;
26
- border: none !important;
27
- font-weight: bold !important;
28
- width: 100% !important;
29
- text-align: center !important;
30
- cursor: pointer !important;
31
- transition: all 0.3s ease !important;
32
- box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
33
- margin-top: 10px !important; /* Margen superior reducido */
34
- margin-bottom: 10px !important; /* Margen inferior reducido */
35
- }
36
-
37
- [data-testid="stButton"] > button:hover {
38
- background: linear-gradient(90deg, #FFA500, #FFD700) !important;
39
- box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15) !important;
40
- transform: translateY(-2px) !important;
41
- }
42
-
43
- [data-testid="stButton"] > button:active {
44
- transform: translateY(1px) !important;
45
- box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
46
- }
47
-
48
- /* Contenedor de resultados */
49
- .results-container {
50
- border: 1px solid #000000;
51
- padding: 15px;
52
- border-radius: 8px;
53
- background-color: #ffffff;
54
- margin-top: 10px;
55
- }
56
-
57
- /* Estilos adicionales al final del archivo CSS existente */
58
-
59
- .webinar-names {
60
- font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
61
- line-height: 1.8;
62
- font-size: 1.1em;
63
- background-color: #f9f9f9;
64
- padding: 20px;
65
- border-radius: 8px;
66
- border-left: 4px solid #4CAF50;
67
- white-space: pre-wrap;
68
- display: block !important;
69
- visibility: visible !important;
70
- }
71
-
72
- .webinar-script {
73
- max-height: 70vh;
74
- overflow-y: auto;
75
- padding: 15px;
76
- background-color: #f9f9f9;
77
- border-radius: 8px;
78
- border-left: 4px solid #4CAF50;
79
- white-space: pre-wrap;
80
- font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
81
- line-height: 1.6;
82
- display: block !important;
83
- visibility: visible !important;
84
- }
85
-
86
- .webinar-script h1, .webinar-script h2, .webinar-script h3 {
87
- color: #2E7D32;
88
- margin-top: 20px;
89
- display: block !important;
90
- }
91
-
92
- .webinar-script ul, .webinar-script ol {
93
- padding-left: 25px;
94
  }
 
1
+ /* Main container styling */
2
+ .block-container {
3
+ padding-top: 1rem;
4
+ padding-bottom: 5rem;
5
+ }
6
+
7
+ /* Title spacing */
8
+ h1 {
9
+ margin-top: -2rem;
10
+ padding-top: 0.5rem;
11
+ }
12
+
13
+ /* Subtitle spacing */
14
+ h4 {
15
+ margin-top: 0.5rem;
16
+ padding-top: 0rem;
17
+ }
18
+
19
+ /* Custom button styling */
20
+ /* Estilo personalizado para el botón de generar */
21
+ [data-testid="stButton"] > button {
22
+ background: linear-gradient(90deg, #FFD700, #FFA500) !important;
23
+ color: #333 !important;
24
+ padding: 8px 15px !important; /* Relleno reducido */
25
+ border-radius: 8px !important;
26
+ border: none !important;
27
+ font-weight: bold !important;
28
+ width: 100% !important;
29
+ text-align: center !important;
30
+ cursor: pointer !important;
31
+ transition: all 0.3s ease !important;
32
+ box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
33
+ margin-top: 10px !important; /* Margen superior reducido */
34
+ margin-bottom: 10px !important; /* Margen inferior reducido */
35
+ }
36
+
37
+ [data-testid="stButton"] > button:hover {
38
+ background: linear-gradient(90deg, #FFA500, #FFD700) !important;
39
+ box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15) !important;
40
+ transform: translateY(-2px) !important;
41
+ }
42
+
43
+ [data-testid="stButton"] > button:active {
44
+ transform: translateY(1px) !important;
45
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
46
+ }
47
+
48
+ /* Contenedor de resultados */
49
+ .results-container {
50
+ border: 1px solid #000000;
51
+ padding: 15px;
52
+ border-radius: 8px;
53
+ background-color: #ffffff;
54
+ margin-top: 10px;
55
+ }
56
+
57
+ /* Estilos adicionales al final del archivo CSS existente */
58
+
59
+ .webinar-names {
60
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
61
+ line-height: 1.8;
62
+ font-size: 1.1em;
63
+ background-color: #f9f9f9;
64
+ padding: 20px;
65
+ border-radius: 8px;
66
+ border-left: 4px solid #4CAF50;
67
+ white-space: pre-wrap;
68
+ display: block !important;
69
+ visibility: visible !important;
70
+ }
71
+
72
+ .webinar-script {
73
+ max-height: 70vh;
74
+ overflow-y: auto;
75
+ padding: 15px;
76
+ background-color: #f9f9f9;
77
+ border-radius: 8px;
78
+ border-left: 4px solid #4CAF50;
79
+ white-space: pre-wrap;
80
+ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
81
+ line-height: 1.6;
82
+ display: block !important;
83
+ visibility: visible !important;
84
+ }
85
+
86
+ .webinar-script h1, .webinar-script h2, .webinar-script h3 {
87
+ color: #2E7D32;
88
+ margin-top: 20px;
89
+ display: block !important;
90
+ }
91
+
92
+ .webinar-script ul, .webinar-script ol {
93
+ padding-left: 25px;
94
  }