frontpage/styles/REPL/REPLInput.module.css

57 lines
893 B
CSS
Raw Normal View History

2021-12-14 23:08:18 +01:00
.wrapper > input, .wrapper > span {
2021-12-16 01:03:54 +01:00
padding: .125rem 0;
2021-12-14 23:08:18 +01:00
font-size: 1.25rem;
2021-12-16 01:03:54 +01:00
font-family: "CascadiaCode", monospace;
display: flex;
flex-direction: row;
flex-wrap: nowrap;
color: var(--repl-color);
2021-12-14 23:08:18 +01:00
}
.wrapper {
position: relative;
2021-12-16 01:03:54 +01:00
flex-grow: 2;
display: block;
}
.wrapperwrapper {
display: flex;
width: 100%;
flex-direction: row;
flex-wrap: nowrap;
}
.inputstart {
padding: .125rem 0;
font-size: 1.25rem;
font-family: "CascadiaCode", monospace;
2021-12-14 23:08:18 +01:00
}
.in, .in:focus {
border: 0;
outline-width: 0;
2021-12-16 01:03:54 +01:00
background: transparent;
2021-12-14 23:08:18 +01:00
}
.completionWrapper {
position: absolute;
pointer-events: none;
left: 0;
top: 0;
width: min-content;
}
.completionWrapper span {
padding: 0;
margin: 0;
display: inline-block;
}
.typed {
opacity: 0;
}
.completion {
2021-12-16 01:03:54 +01:00
color: var(--repl-color-hint);
2021-12-14 23:08:18 +01:00
}