madeorsk.com/less/_faketerm.less

21 lines
171 B
Text

.faketerm
{
&::before
{
content: "$ ";
}
&::after
{
content: "_";
animation: blink 1.5s step-end infinite;
}
}
@keyframes blink
{
50%
{
opacity: 0;
}
}