Skip to content

Commit 17adf16

Browse files
author
maurux01
committed
1 parent d12d02d commit 17adf16

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

styles.css

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,4 +185,46 @@ button:hover {
185185
border-radius: 5px;
186186
width: 100%;
187187
box-sizing: border-box;
188+
}
189+
190+
.text-content {
191+
font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
192+
line-height: 1.6;
193+
letter-spacing: 0.3px;
194+
}
195+
196+
.text-english {
197+
color: #a8d8ea;
198+
font-weight: 500;
199+
}
200+
201+
.text-spanish {
202+
color: #aa96da;
203+
font-weight: 500;
204+
}
205+
206+
.generated-text {
207+
padding: 15px;
208+
margin: 10px 0;
209+
background-color: #2d3440;
210+
border-left: 4px solid #66a5ad;
211+
border-radius: 0 8px 8px 0;
212+
transition: all 0.3s ease;
213+
}
214+
215+
.generated-text:hover {
216+
background-color: #333b4d;
217+
transform: translateX(5px);
218+
}
219+
220+
.typing-area::placeholder {
221+
color: #a0aec0;
222+
opacity: 0.8;
223+
font-style: italic;
224+
transition: all 0.3s ease;
225+
}
226+
227+
.typing-area:focus::placeholder {
228+
opacity: 0.5;
229+
transform: translateX(5px);
188230
}

0 commit comments

Comments
 (0)