Update light_mode_chatter_owl.css
Browse files- light_mode_chatter_owl.css +70 -1
light_mode_chatter_owl.css
CHANGED
|
@@ -106,9 +106,78 @@ h1, h2 {
|
|
| 106 |
padding: 16px;
|
| 107 |
}
|
| 108 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 109 |
#main-column {
|
| 110 |
overflow-y: auto;
|
| 111 |
-
max-height:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 112 |
}
|
| 113 |
|
| 114 |
@keyframes float {
|
|
|
|
| 106 |
padding: 16px;
|
| 107 |
}
|
| 108 |
|
| 109 |
+
/* TOP CONTROL BAR (for language, goal, focus) */
|
| 110 |
+
.top-control-row .gr-column {
|
| 111 |
+
min-width: 160px;
|
| 112 |
+
margin-right: 16px;
|
| 113 |
+
}
|
| 114 |
+
|
| 115 |
+
.top-control-row {
|
| 116 |
+
display: flex;
|
| 117 |
+
flex-wrap: wrap;
|
| 118 |
+
align-items: flex-start;
|
| 119 |
+
gap: 12px;
|
| 120 |
+
margin-bottom: 20px;
|
| 121 |
+
}
|
| 122 |
+
|
| 123 |
+
/* AUDIO BOXES SIDE-BY-SIDE */
|
| 124 |
+
.audio-row {
|
| 125 |
+
display: flex;
|
| 126 |
+
gap: 20px;
|
| 127 |
+
flex-wrap: wrap;
|
| 128 |
+
}
|
| 129 |
+
|
| 130 |
+
.audio-row .gr-audio {
|
| 131 |
+
flex: 1;
|
| 132 |
+
min-width: 300px;
|
| 133 |
+
}
|
| 134 |
+
|
| 135 |
+
/* CLEANER TEXTBOX WRAPPING */
|
| 136 |
+
.text-columns {
|
| 137 |
+
display: flex;
|
| 138 |
+
flex-wrap: wrap;
|
| 139 |
+
gap: 20px;
|
| 140 |
+
}
|
| 141 |
+
|
| 142 |
+
.text-columns .gr-textbox {
|
| 143 |
+
flex: 1;
|
| 144 |
+
min-width: 300px;
|
| 145 |
+
}
|
| 146 |
+
|
| 147 |
+
/* PLACING MODULE CARD STYLES */
|
| 148 |
+
.gr-module-card {
|
| 149 |
+
background-color: var(--card-bg);
|
| 150 |
+
border-radius: var(--border-radius);
|
| 151 |
+
box-shadow: var(--shadow);
|
| 152 |
+
padding: 20px;
|
| 153 |
+
margin-bottom: 24px;
|
| 154 |
+
}
|
| 155 |
+
|
| 156 |
+
/* CONSISTENT WIDTH & SPACING */
|
| 157 |
#main-column {
|
| 158 |
overflow-y: auto;
|
| 159 |
+
max-height: 85vh;
|
| 160 |
+
padding-right: 8px;
|
| 161 |
+
}
|
| 162 |
+
|
| 163 |
+
|
| 164 |
+
/* Make sure charts and plots don’t overflow */
|
| 165 |
+
.gr-plot, .gr-plot canvas {
|
| 166 |
+
width: 100% !important;
|
| 167 |
+
height: auto !important;
|
| 168 |
+
}
|
| 169 |
+
|
| 170 |
+
/* Optional: tighter header spacing */
|
| 171 |
+
#header h2 {
|
| 172 |
+
margin-bottom: 0.5em;
|
| 173 |
+
}
|
| 174 |
+
|
| 175 |
+
/* Optional: lighter shadow feel for cards */
|
| 176 |
+
.gr-box {
|
| 177 |
+
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
|
| 178 |
+
border-radius: 10px;
|
| 179 |
+
padding: 16px;
|
| 180 |
+
margin-bottom: 20px;
|
| 181 |
}
|
| 182 |
|
| 183 |
@keyframes float {
|