converter/src/app/text-input-field/text-input-field.component....

45 lines
819 B
SCSS
Raw Normal View History

2024-01-28 02:05:01 +01:00
:host {
display: block;
border: none;
margin: 0 0 1em 0;
padding: 0 1em 0 0;
position: relative;
2024-01-28 02:05:01 +01:00
&:after {
top: 100%;
left: 50%;
2024-01-28 02:05:01 +01:00
border: 1em solid transparent;
border-top-color: #eee;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
margin-left: -1em;
2024-01-28 02:05:01 +01:00
transition: border-top-color ease-in-out 200ms;
}
2024-01-28 02:05:01 +01:00
&:has(>textarea:focus, >textarea:hover):after {
border-top-color: #fff;
}
}
2024-01-28 02:05:01 +01:00
textarea {
background-color: #eee;
border: none;
2024-01-28 02:05:01 +01:00
color: #111;
font-family: "Liberation Mono", monospace;
height: 10em;
margin: 0;
padding: 0.5em;
resize: vertical;
width: 100%;
2024-01-28 02:05:01 +01:00
&:focus, &:hover {
background-color: #fff;
color: #000;
}
2024-01-28 02:05:01 +01:00
transition: background-color ease-in-out 200ms, color ease-in-out 200ms;
}